@ttahub/common 2.2.11 → 2.2.14

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/README.md CHANGED
@@ -21,6 +21,9 @@ Note: On Windows you will need to use `yarn add @ttahub/common@1.x.0` to update
21
21
 
22
22
  ## Versions
23
23
 
24
+ # 2.2.14
25
+ Added two new topics.
26
+
24
27
  # 2.2.11
25
28
  Remove duplicate goal close reason.
26
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "2.2.11",
3
+ "version": "2.2.14",
4
4
  "description": "The purpose of this package is to reduce code duplication between the frontend and backend projects.",
5
5
  "main": "src/index.js",
6
6
  "author": "",
package/src/constants.js CHANGED
@@ -55,7 +55,9 @@ const TOPICS = [
55
55
  'Data and Evaluation',
56
56
  'Disabilities Services',
57
57
  'ERSEA',
58
+ 'Emergency Preparedness, Response, and Recovery (EPRR)',
58
59
  'Environmental Health and Safety / EPRR',
60
+ 'Environmental Health and Safety',
59
61
  'Facilities',
60
62
  'Family Support Services',
61
63
  'Fatherhood / Male Caregiving',
@@ -424,3 +426,30 @@ const TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS = {
424
426
  BOTH: 'both',
425
427
  };
426
428
  exports.TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS = TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS;
429
+
430
+
431
+ const COLLAB_REPORT_PARTICIPANTS = [
432
+ "Child Care and Development Fund",
433
+ "Child care licensing",
434
+ "Child Care Training and Technical Assistance Network",
435
+ "DOE/State PreK",
436
+ "Head Start Collaboration Office",
437
+ "Head Start Recipients",
438
+ "Health department/WIC",
439
+ "Office of Child Care",
440
+ "Quality Rating and Improvement System",
441
+ "State and territory adminstrators",
442
+ "Regional HSA",
443
+ "Regional Office staff",
444
+ "State HSA",
445
+ "State environmental health and safety systems",
446
+ "State family engagement systems",
447
+ "State health and welness systems",
448
+ "State homelessness agency/McKinney Vento liason",
449
+ "State Professional development system",
450
+ "TTA staff",
451
+ "Other",
452
+ ];
453
+
454
+ exports.COLLAB_REPORT_PARTICIPANTS = COLLAB_REPORT_PARTICIPANTS;
455
+