@cdc/dashboard 4.24.10 → 4.24.12-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.
Files changed (58) hide show
  1. package/dist/cdcdashboard.js +51165 -49100
  2. package/examples/ed-visits-county-file.json +141 -357
  3. package/examples/private/DEV-10120.json +1294 -0
  4. package/examples/private/DEV-9199.json +606 -0
  5. package/examples/private/DEV-9644.json +20092 -0
  6. package/examples/private/DEV-9684.json +2135 -0
  7. package/examples/private/DEV-9989.json +229 -0
  8. package/examples/private/art-dashboard.json +18174 -0
  9. package/examples/private/art-scratch.json +2406 -0
  10. package/examples/private/dashboard-config-ehdi.json +29915 -0
  11. package/examples/private/dashboard-margins.js +15 -0
  12. package/examples/private/dataset.json +1452 -0
  13. package/examples/private/ehdi-data.json +29502 -0
  14. package/examples/private/gaza-issue.json +1214 -0
  15. package/examples/private/workforce.json +2041 -0
  16. package/package.json +9 -9
  17. package/src/CdcDashboard.tsx +43 -29
  18. package/src/CdcDashboardComponent.tsx +91 -52
  19. package/src/DashboardContext.tsx +2 -0
  20. package/src/_stories/Dashboard.stories.tsx +8 -0
  21. package/src/_stories/_mock/api-filter-error.json +55 -0
  22. package/src/_stories/_mock/group-pivot-filter.json +10 -5
  23. package/src/components/CollapsibleVisualizationRow.tsx +8 -2
  24. package/src/components/DashboardFilters/DashboardFilters.tsx +121 -58
  25. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +3 -1
  26. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +54 -50
  27. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +13 -7
  28. package/src/components/DashboardFilters/_stories/DashboardFilters.stories.tsx +21 -0
  29. package/src/components/DashboardFilters/dashboardfilter.styles.css +27 -0
  30. package/src/components/Grid.tsx +1 -1
  31. package/src/components/Header/Header.tsx +71 -10
  32. package/src/components/Header/index.scss +0 -5
  33. package/src/components/MultiConfigTabs/MultiConfigTabs.tsx +28 -6
  34. package/src/components/MultiConfigTabs/MultiTabs.tsx +2 -0
  35. package/src/components/MultiConfigTabs/multiconfigtabs.styles.css +4 -11
  36. package/src/components/Row.tsx +59 -13
  37. package/src/components/VisualizationRow.tsx +30 -22
  38. package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +0 -1
  39. package/src/components/Widget.tsx +23 -1
  40. package/src/data/initial-state.js +2 -1
  41. package/src/helpers/addValuesToDashboardFilters.ts +4 -2
  42. package/src/helpers/apiFilterHelpers.ts +55 -20
  43. package/src/helpers/changeFilterActive.ts +3 -0
  44. package/src/helpers/filterData.ts +1 -1
  45. package/src/helpers/getVizRowColumnLocator.ts +1 -0
  46. package/src/helpers/loadAPIFilters.ts +32 -10
  47. package/src/helpers/reloadURLHelpers.ts +9 -2
  48. package/src/helpers/shouldLoadAllFilters.ts +30 -0
  49. package/src/helpers/tests/apiFilterHelpers.test.ts +85 -4
  50. package/src/helpers/tests/loadAPIFiltersWrapper.test.ts +10 -4
  51. package/src/helpers/tests/reloadURLHelpers.test.ts +11 -5
  52. package/src/helpers/tests/shouldLoadAllFilters.test.ts +117 -0
  53. package/src/scss/editor-panel.scss +0 -3
  54. package/src/scss/grid.scss +22 -23
  55. package/src/scss/main.scss +0 -27
  56. package/src/store/dashboard.reducer.ts +9 -2
  57. package/src/store/errorMessage/errorMessage.actions.ts +7 -0
  58. package/src/store/errorMessage/errorMessage.reducer.ts +24 -0
@@ -7,66 +7,12 @@
7
7
  "type": "urlfilter",
8
8
  "columnName": "geography",
9
9
  "showDropdown": true,
10
- "usedBy": ["chart1701791122773", "filtered-text1701791173259", "filtered-text1701791674571", "filtered-text1701791683990"],
11
- "values": [
12
- "United States",
13
- "Alabama",
14
- "Alaska",
15
- "Arizona",
16
- "Arkansas",
17
- "California",
18
- "Colorado",
19
- "Commonwealth of the Northern Mariana Islands",
20
- "Connecticut",
21
- "Delaware",
22
- "District of Columbia",
23
- "Florida",
24
- "Georgia",
25
- "Hawaii",
26
- "Idaho",
27
- "Illinois",
28
- "Indiana",
29
- "Iowa",
30
- "Kansas",
31
- "Kentucky",
32
- "Louisiana",
33
- "Maine",
34
- "Maryland",
35
- "Massachusetts",
36
- "Michigan",
37
- "Minnesota",
38
- "Mississippi",
39
- "Missouri",
40
- "Montana",
41
- "Nebraska",
42
- "Nevada",
43
- "New Hampshire",
44
- "New Jersey",
45
- "New Mexico",
46
- "New York",
47
- "New York City",
48
- "North Carolina",
49
- "North Dakota",
50
- "Ohio",
51
- "Oklahoma",
52
- "Oregon",
53
- "Pennsylvania",
54
- "Puerto Rico",
55
- "Rhode Island",
56
- "South Carolina",
57
- "South Dakota",
58
- "Tennessee",
59
- "Texas",
60
- "Utah",
61
- "Vermont",
62
- "Virgin Islands",
63
- "Virginia",
64
- "Washington",
65
- "West Virginia",
66
- "Wisconsin",
67
- "Wyoming"
10
+ "usedBy": [
11
+ "chart1701791122773",
12
+ "filtered-text1701791173259",
13
+ "filtered-text1701791674571",
14
+ "filtered-text1701791683990"
68
15
  ],
69
- "active": "United States",
70
16
  "tier": 1,
71
17
  "datasetKey": "resp-data.json",
72
18
  "filterBy": "File Name",
@@ -74,9 +20,7 @@
74
20
  "apiFilter": {
75
21
  "apiEndpoint": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NSSP%20Subsets/NSSPGeographyReference.json",
76
22
  "valueSelector": "geography",
77
- "textSelector": "geography",
78
- "defaultValue": "United States",
79
- "autoLoad": true
23
+ "textSelector": "geography"
80
24
  },
81
25
  "whitespaceReplacement": "Remove Spaces"
82
26
  },
@@ -85,86 +29,45 @@
85
29
  "type": "datafilter",
86
30
  "columnName": "county",
87
31
  "showDropdown": true,
88
- "usedBy": ["chart1701791122773", "filtered-text1701791173259", "filtered-text1701791674571", "filtered-text1701791683990", "filter-dropdowns1701792379133", "filtered-text1701888972205", "filtered-text1701888980655"],
32
+ "usedBy": [
33
+ "chart1701791122773",
34
+ "filtered-text1701791173259",
35
+ "filtered-text1701791674571",
36
+ "filtered-text1701791683990",
37
+ "filter-dropdowns1701792379133",
38
+ "filtered-text1701888972205",
39
+ "filtered-text1701888980655"
40
+ ],
89
41
  "values": ["All"],
90
- "active": "All",
91
- "tier": 2,
42
+ "tier": 1,
92
43
  "parents": ["State"]
93
44
  }
94
45
  ]
95
46
  },
96
47
  "rows": [
97
- [
98
- {
99
- "width": 12,
100
- "widget": "filter-dropdowns1701792379133"
101
- },
102
- {
103
- "equalHeight": false
104
- },
105
- {},
106
- {}
107
- ],
108
- [
109
- {
110
- "width": 6,
111
- "widget": "filtered-text1701888972205"
112
- },
113
- {
114
- "equalHeight": false,
115
- "width": 6,
116
- "widget": "filtered-text1701888980655"
117
- },
118
- {
119
- "width": null
120
- },
121
- {
122
- "width": null
123
- }
124
- ],
125
- [
126
- {
127
- "width": 12,
128
- "widget": "chart1701791122773"
129
- },
130
- {
131
- "equalHeight": false
132
- },
133
- {},
134
- {}
135
- ],
136
- [
137
- {
138
- "width": 4,
139
- "widget": "filtered-text1701791173259"
140
- },
141
- {
142
- "equalHeight": false,
143
- "width": 4,
144
- "widget": "filtered-text1701791674571"
145
- },
146
- {
147
- "width": 4,
148
- "widget": "filtered-text1701791683990"
149
- },
150
- {
151
- "width": null
152
- }
153
- ]
48
+ { "columns": [{ "width": 12, "widget": "filter-dropdowns1701792379133" }, { "equalHeight": false }, {}, {}] },
49
+ {
50
+ "columns": [
51
+ { "width": 6, "widget": "filtered-text1701888972205" },
52
+ { "equalHeight": false, "width": 6, "widget": "filtered-text1701888980655" },
53
+ { "width": null },
54
+ { "width": null }
55
+ ]
56
+ },
57
+ { "columns": [{ "width": 12, "widget": "chart1701791122773" }, { "equalHeight": false }, {}, {}] }
154
58
  ],
155
59
  "visualizations": {
156
60
  "chart1701791122773": {
61
+ "annotations": [],
157
62
  "type": "chart",
158
63
  "debugSvg": false,
159
- "chartMessage": {
160
- "noData": "No Data Available"
161
- },
64
+ "chartMessage": { "noData": "No Data Available" },
162
65
  "title": "",
163
66
  "showTitle": false,
164
67
  "showDownloadMediaButton": false,
165
68
  "theme": "theme-blue",
166
69
  "animate": false,
167
- "fontSize": "small",
70
+ "fontSize": "medium",
168
71
  "lineDatapointStyle": "hover",
169
72
  "lineDatapointColor": "Same as Line",
170
73
  "barHasBorder": "false",
@@ -172,24 +75,27 @@
172
75
  "lollipopShape": "circle",
173
76
  "lollipopColorStyle": "two-tone",
174
77
  "visualizationSubType": "regular",
175
- "barStyle": "",
78
+ "barStyle": "flat",
176
79
  "roundingStyle": "standard",
177
80
  "tipRounding": "top",
178
- "isResponsiveTicks": true,
81
+ "isResponsiveTicks": false,
179
82
  "general": {
180
- "showDownloadButton": false
181
- },
182
- "padding": {
183
- "left": 5,
184
- "right": 5
185
- },
186
- "suppressedData": [],
83
+ "annotationDropdownText": "Annotations",
84
+ "showDownloadButton": false,
85
+ "showMissingDataLabel": true,
86
+ "showSuppressedSymbol": true,
87
+ "showZeroValueData": true,
88
+ "hideNullValue": true,
89
+ "showZeroValueDataLabel": true
90
+ },
91
+ "padding": { "left": 5, "right": 5 },
92
+ "preliminaryData": [],
187
93
  "yAxis": {
188
- "hideAxis": false,
94
+ "hideAxis": true,
189
95
  "displayNumbersOnBar": false,
190
96
  "hideLabel": false,
191
- "hideTicks": false,
192
- "size": "55",
97
+ "hideTicks": true,
98
+ "size": "20",
193
99
  "gridLines": true,
194
100
  "enablePadding": true,
195
101
  "min": "",
@@ -204,11 +110,16 @@
204
110
  "rightAxisLabelColor": "#333",
205
111
  "rightAxisTickLabelColor": "#333",
206
112
  "rightAxisTickColor": "#333",
207
- "numTicks": "10",
113
+ "numTicks": "5",
208
114
  "axisPadding": 0,
115
+ "scalePadding": "20",
209
116
  "tickRotation": 0,
210
117
  "anchors": [],
211
- "label": "Percent of Emergency Department Visits"
118
+ "shoMissingDataLabel": true,
119
+ "showMissingDataLine": true,
120
+ "categories": [],
121
+ "label": "",
122
+ "maxValue": 6.446000000000001
212
123
  },
213
124
  "boxplot": {
214
125
  "plots": [],
@@ -218,10 +129,7 @@
218
129
  "boxWidthPercentage": 40,
219
130
  "plotOutlierValues": false,
220
131
  "plotNonOutlierValues": true,
221
- "legend": {
222
- "showHowToReadText": false,
223
- "howToReadText": ""
224
- },
132
+ "legend": { "showHowToReadText": false, "howToReadText": "" },
225
133
  "labels": {
226
134
  "q1": "Lower Quartile",
227
135
  "q2": "q2",
@@ -240,43 +148,42 @@
240
148
  "upperBounds": "Upper Bounds"
241
149
  }
242
150
  },
243
- "topAxis": {
244
- "hasLine": false
245
- },
151
+ "topAxis": { "hasLine": false },
246
152
  "isLegendValue": false,
247
153
  "barThickness": 0.35,
248
154
  "barHeight": 25,
249
155
  "barSpace": 15,
250
- "heights": {
251
- "vertical": "350",
252
- "horizontal": 750
253
- },
156
+ "heights": { "vertical": "250", "horizontal": 750, "mobileVertical": "150" },
254
157
  "xAxis": {
255
158
  "sortDates": false,
256
159
  "anchors": [],
257
- "type": "date",
160
+ "type": "date-time",
258
161
  "showTargetLabel": true,
259
162
  "targetLabel": "Target",
260
163
  "hideAxis": false,
261
164
  "hideLabel": false,
262
165
  "hideTicks": false,
263
- "size": "95",
166
+ "size": "0",
264
167
  "tickRotation": 0,
265
168
  "min": "",
266
169
  "max": "",
267
170
  "labelColor": "#333",
268
171
  "tickLabelColor": "#333",
269
172
  "tickColor": "#333",
270
- "numTicks": "15",
271
- "labelOffset": 65,
173
+ "numTicks": "6",
174
+ "labelOffset": 0,
272
175
  "axisPadding": 0,
273
176
  "target": 0,
274
- "maxTickRotation": "45",
177
+ "maxTickRotation": "0",
178
+ "padding": "0",
179
+ "showYearsOnce": true,
275
180
  "dataKey": "week_end",
276
181
  "dateParseFormat": "%Y-%m-%d",
277
- "dateDisplayFormat": "%m/%d/%Y",
278
- "label": "Week Ending",
279
- "tickWidthMax": 81
182
+ "dateDisplayFormat": "%b. %Y",
183
+ "label": "",
184
+ "tickWidthMax": 40,
185
+ "axisBBox": 25.360000610351562,
186
+ "viewportNumTicks": { "xxs": "" }
280
187
  },
281
188
  "table": {
282
189
  "label": "Data Table",
@@ -286,9 +193,13 @@
286
193
  "caption": "",
287
194
  "showDownloadUrl": false,
288
195
  "showDataTableLink": true,
196
+ "showDownloadLinkBelow": true,
289
197
  "indexLabel": "Week Ending",
290
- "download": false,
198
+ "download": true,
291
199
  "showVertical": true,
200
+ "dateDisplayFormat": "",
201
+ "showMissingDataLabel": true,
202
+ "showSuppressedSymbol": true,
292
203
  "show": true
293
204
  },
294
205
  "orientation": "vertical",
@@ -297,47 +208,45 @@
297
208
  "legend": {
298
209
  "hide": false,
299
210
  "behavior": "isolate",
211
+ "axisAlign": true,
300
212
  "singleRow": true,
301
213
  "colorCode": "",
302
214
  "reverseLabelOrder": false,
303
- "description": "Select a virus to add or remove it from the graphic",
215
+ "description": "",
304
216
  "dynamicLegend": false,
305
217
  "dynamicLegendDefaultText": "Show All",
306
218
  "dynamicLegendItemLimit": 5,
307
219
  "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
308
220
  "dynamicLegendChartMessage": "Select Options from the Legend",
221
+ "label": "Respiratory Virus",
309
222
  "lineMode": false,
310
223
  "verticalSorted": false,
311
224
  "highlightOnHover": false,
225
+ "hideSuppressedLabels": false,
226
+ "hideSuppressionLink": false,
227
+ "seriesHighlight": [],
228
+ "style": "circles",
229
+ "subStyle": "linear blocks",
230
+ "tickRotation": "",
231
+ "hideBorder": { "side": false, "topBottom": true },
312
232
  "position": "bottom"
313
233
  },
314
- "brush": {
315
- "height": 25,
316
- "active": false,
317
- "pattern_id": "brush_pattern",
318
- "accent_color": "#ddd"
319
- },
320
- "exclusions": {
321
- "active": false,
322
- "keys": [],
323
- "dateEnd": "2023-12-16"
324
- },
234
+ "brush": { "height": 25, "active": false, "pattern_id": "brush_pattern", "accent_color": "#ddd" },
235
+ "exclusions": { "active": false, "keys": [], "dateEnd": "2023-12-16" },
325
236
  "palette": "qualitative-bold",
326
237
  "isPaletteReversed": false,
327
- "twoColor": {
328
- "palette": "monochrome-1",
329
- "isPaletteReversed": false
330
- },
238
+ "twoColor": { "palette": "monochrome-1", "isPaletteReversed": false },
331
239
  "labels": false,
332
240
  "dataFormat": {
333
241
  "commas": false,
334
242
  "prefix": "",
335
- "suffix": "%",
243
+ "suffix": "% of emergency department visits",
336
244
  "abbreviated": true,
337
245
  "bottomSuffix": "",
338
246
  "bottomPrefix": "",
339
247
  "bottomAbbreviated": false,
340
- "roundTo": "1"
248
+ "roundTo": "1",
249
+ "onlyShowTopPrefixSuffix": true
341
250
  },
342
251
  "confidenceKeys": {},
343
252
  "visual": {
@@ -351,194 +260,81 @@
351
260
  "filterBehavior": "Filter Change",
352
261
  "highlightedBarValues": [],
353
262
  "series": [
354
- {
355
- "dataKey": "percent_visits_combined",
356
- "name": "Combined",
357
- "type": "Line",
358
- "axis": "Left",
359
- "tooltip": true
360
- },
361
- {
362
- "dataKey": "percent_visits_covid",
363
- "name": "COVID-19",
364
- "type": "Line",
365
- "axis": "Left",
366
- "tooltip": true
367
- },
368
- {
369
- "dataKey": "percent_visits_influenza",
370
- "name": "Influenza",
371
- "type": "Line",
372
- "axis": "Left",
373
- "tooltip": true
374
- },
375
- {
376
- "dataKey": "percent_visits_rsv",
377
- "name": "RSV",
378
- "type": "Line",
379
- "axis": "Left",
380
- "tooltip": true
381
- }
263
+ { "dataKey": "percent_visits_covid", "name": "COVID-19", "type": "Line", "axis": "Left", "tooltip": true },
264
+ { "dataKey": "percent_visits_influenza", "name": "Influenza", "type": "Line", "axis": "Left", "tooltip": true },
265
+ { "dataKey": "percent_visits_rsv", "name": "RSV", "type": "Line", "axis": "Left", "tooltip": true }
382
266
  ],
383
- "tooltips": {
384
- "opacity": 90,
385
- "singleSeries": false
386
- },
267
+ "tooltips": { "opacity": 90, "singleSeries": false, "dateDisplayFormat": "%B %-d, %Y" },
387
268
  "forestPlot": {
388
269
  "startAt": 0,
389
- "colors": {
390
- "line": "",
391
- "shape": ""
392
- },
393
- "lineOfNoEffect": {
394
- "show": true
395
- },
270
+ "colors": { "line": "", "shape": "" },
271
+ "lineOfNoEffect": { "show": true },
396
272
  "type": "",
397
- "pooledResult": {
398
- "diamondHeight": 5,
399
- "column": ""
400
- },
273
+ "pooledResult": { "diamondHeight": 5, "column": "" },
401
274
  "estimateField": "",
402
275
  "estimateRadius": "",
403
276
  "shape": "",
404
277
  "rowHeight": 20,
405
- "description": {
406
- "show": true,
407
- "text": "description",
408
- "location": 0
409
- },
410
- "result": {
411
- "show": true,
412
- "text": "result",
413
- "location": 100
414
- },
415
- "radius": {
416
- "min": 1,
417
- "max": 8,
418
- "scalingColumn": ""
419
- },
420
- "regression": {
421
- "lower": 0,
422
- "upper": 0,
423
- "estimateField": 0
424
- },
278
+ "description": { "show": true, "text": "description", "location": 0 },
279
+ "result": { "show": true, "text": "result", "location": 100 },
280
+ "radius": { "min": 1, "max": 8, "scalingColumn": "" },
281
+ "regression": { "lower": 0, "upper": 0, "estimateField": 0 },
425
282
  "leftWidthOffset": 0,
426
283
  "rightWidthOffset": 0,
427
284
  "showZeroLine": false,
428
- "hideDateCategoryCol": false,
429
285
  "leftLabel": "",
430
286
  "rightLabel": "",
287
+ "hideDateCategoryCol": false,
431
288
  "width": "auto",
432
289
  "lowerCiField": "",
433
290
  "upperCiField": ""
434
291
  },
435
- "area": {
436
- "isStacked": false
292
+ "area": { "isStacked": false },
293
+ "sankey": {
294
+ "title": { "defaultColor": "black" },
295
+ "iterations": 1,
296
+ "rxValue": 0.9,
297
+ "overallSize": { "width": 900, "height": 700 },
298
+ "margin": { "margin_y": 25, "margin_x": 0 },
299
+ "nodeSize": { "nodeWidth": 26, "nodeHeight": 40 },
300
+ "nodePadding": 55,
301
+ "nodeFontColor": "black",
302
+ "nodeColor": { "default": "#ff8500", "inactive": "#808080" },
303
+ "linkColor": { "default": "#ffc900", "inactive": "#D3D3D3" },
304
+ "opacity": {
305
+ "nodeOpacityDefault": 1,
306
+ "nodeOpacityInactive": 0.1,
307
+ "LinkOpacityDefault": 1,
308
+ "LinkOpacityInactive": 0.1
309
+ },
310
+ "storyNodeFontColor": "#006778",
311
+ "storyNodeText": [],
312
+ "nodeValueStyle": { "textBefore": "(", "textAfter": ")" },
313
+ "data": []
437
314
  },
315
+ "suppressedData": [],
438
316
  "showChartBrush": false,
439
317
  "datasets": {},
440
318
  "visualizationType": "Line",
441
319
  "dataKey": "resp-data.json",
442
- "customColors": ["#000000", "#f06f19", "#0a58d6", "#890664", "#89bf13", "#94036f", "#87b6f9", "#867a77", "#000000"],
443
- "dataFileName": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined.json",
320
+ "customColors": ["#f06f19", "#0a58d6", "#890664", "#89bf13", "#94036f", "#87b6f9", "#867a77", "#000000"],
321
+ "dataFileName": "/wcms/vizdata/Respitory_Viruses/EmergencyDepartmentVisitCombined.json",
444
322
  "dataFileSourceType": "url",
445
323
  "validated": 4.23,
446
324
  "dynamicMarginTop": 0,
447
- "description": "<div class=\"text-left\">Data presented through: <span class=\"date_max_1\"></span>; Data as of: <span class=\"date_min_1\"></span></div><a href=\"https://data.cdc.gov/Public-Health-Surveillance/2023-Respiratory-Virus-Response-NSSP-Emergency-Dep/rdmq-nq56\">Dataset on data.cdc.gov</a> | <a href=\"https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NSSPSubState.json\">Link to Dataset</a>",
325
+ "description": "<div class=\"text-left\">Data last updated on <span data-timestamp=\"EmergencyDepartmentVisitCombined:Data_as_of\"></span> and presented through <span data-timestamp=\"EmergencyDepartmentVisitCombined:Data_Presented_Through\"></span>. <a href=\"https://data.cdc.gov/Public-Health-Surveillance/2023-Respiratory-Virus-Response-NSSP-Emergency-Dep/rdmq-nq56\">View this dataset</a> on data.cdc.gov.</div>",
448
326
  "uid": "chart1701791122773",
449
- "dataDescription": {
450
- "horizontal": false,
451
- "series": false
452
- },
453
- "editing": false
454
- },
455
- "filtered-text1701791173259": {
456
- "title": "COVID-19",
457
- "type": "filtered-text",
458
- "theme": "theme-blue",
459
- "fontSize": "small",
460
- "shadow": false,
461
- "filters": [],
462
- "visual": {
463
- "hideBackgroundColor": false,
464
- "background": false,
465
- "roundedBorders": false,
466
- "accent": false,
467
- "border": false,
468
- "borderColorTheme": false
469
- },
470
- "openModal": false,
471
- "uid": "filtered-text1701791173259",
472
- "visualizationType": "filtered-text",
473
- "dataDescription": {
474
- "horizontal": false,
475
- "series": false
476
- },
477
- "dataKey": "resp-data.json",
478
- "editing": false,
479
- "validated": 4.23,
480
- "textColumn": "ed_trends_covid"
481
- },
482
- "filtered-text1701791674571": {
483
- "title": "Influenza Change",
484
- "type": "filtered-text",
485
- "theme": "theme-blue",
486
- "fontSize": "small",
487
- "shadow": false,
488
- "filters": [],
489
- "visual": {
490
- "hideBackgroundColor": false,
491
- "background": false,
492
- "roundedBorders": false,
493
- "accent": false,
494
- "border": false,
495
- "borderColorTheme": false
496
- },
497
- "openModal": false,
498
- "uid": "filtered-text1701791674571",
499
- "visualizationType": "filtered-text",
500
- "dataKey": "resp-data.json",
501
- "dataDescription": {
502
- "horizontal": false,
503
- "series": false
504
- },
505
- "editing": false,
506
- "validated": 4.23,
507
- "textColumn": "ed_trends_influenza"
508
- },
509
- "filtered-text1701791683990": {
510
- "title": "RSV Change",
511
- "type": "filtered-text",
512
- "theme": "theme-blue",
513
- "fontSize": "small",
514
- "shadow": false,
515
- "filters": [],
516
- "visual": {
517
- "hideBackgroundColor": false,
518
- "background": false,
519
- "roundedBorders": false,
520
- "accent": false,
521
- "border": false,
522
- "borderColorTheme": false
523
- },
524
- "openModal": false,
525
- "uid": "filtered-text1701791683990",
526
- "visualizationType": "filtered-text",
527
- "dataKey": "resp-data.json",
528
- "dataDescription": {
529
- "horizontal": false,
530
- "series": false
531
- },
532
- "editing": false,
533
- "validated": 4.23,
534
- "textColumn": "ed_trends_rsv"
327
+ "dataDescription": { "horizontal": false, "series": false },
328
+ "version": "4.24.10"
535
329
  },
536
330
  "filter-dropdowns1701792379133": {
537
331
  "newViz": true,
538
332
  "openModal": false,
539
333
  "uid": "filter-dropdowns1701792379133",
540
- "type": "filter-dropdowns",
541
- "visualizationType": "filter-dropdowns"
334
+ "type": "dashboardFilters",
335
+ "visualizationType": "dashboardFilters",
336
+ "sharedFilterIndexes": [0, 1],
337
+ "filterBehavior": "Filter Change"
542
338
  },
543
339
  "filtered-text1701888972205": {
544
340
  "title": "",
@@ -559,19 +355,16 @@
559
355
  "uid": "filtered-text1701888972205",
560
356
  "visualizationType": "filtered-text",
561
357
  "dataKey": "resp-data.json",
562
- "dataDescription": {
563
- "horizontal": false,
564
- "series": false
565
- },
566
- "editing": false,
358
+ "dataDescription": { "horizontal": false, "series": false },
567
359
  "validated": 4.23,
568
- "textColumn": "county_state"
360
+ "textColumn": "county_state",
361
+ "version": "4.24.7"
569
362
  },
570
363
  "filtered-text1701888980655": {
571
364
  "title": "Counties included in this area",
572
365
  "type": "filtered-text",
573
366
  "theme": "theme-blue",
574
- "fontSize": "small",
367
+ "fontSize": "medium",
575
368
  "shadow": false,
576
369
  "filters": [],
577
370
  "visual": {
@@ -586,21 +379,13 @@
586
379
  "uid": "filtered-text1701888980655",
587
380
  "visualizationType": "filtered-text",
588
381
  "dataKey": "resp-data.json",
589
- "dataDescription": {
590
- "horizontal": false,
591
- "series": false
592
- },
593
- "editing": false,
382
+ "dataDescription": { "horizontal": false, "series": false },
594
383
  "validated": 4.23,
595
- "textColumn": "hsa_counties"
384
+ "textColumn": "hsa_counties",
385
+ "version": "4.24.7"
596
386
  }
597
387
  },
598
- "table": {
599
- "label": "Data Table",
600
- "show": false,
601
- "showDownloadUrl": false,
602
- "showVertical": true
603
- },
388
+ "table": { "label": "Data Table", "show": false, "showDownloadUrl": false, "showVertical": true },
604
389
  "datasets": {
605
390
  "resp-data.json": {
606
391
  "dataFileSize": 1159724,
@@ -608,11 +393,10 @@
608
393
  "dataFileSourceType": "file",
609
394
  "dataFileFormat": "JSON",
610
395
  "preview": true,
611
- "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NSSP%20Subsets/NSSPSubStateUnitedStates.json",
612
- "runtimeDataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NSSP%20Subsets/NSSPSubStateUnitedStates.json"
396
+ "dataUrl": "https://www.cdc.gov/wcms/vizdata/Respitory_Viruses/NSSP%20Subsets/NSSPSubStateUnitedStates.json"
613
397
  }
614
398
  },
615
399
  "type": "dashboard",
616
400
  "uuid": 1701888964970,
617
- "runtime": {}
401
+ "version": "4.24.10"
618
402
  }