@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 +3 -0
- package/package.json +1 -1
- package/src/constants.js +29 -0
package/README.md
CHANGED
package/package.json
CHANGED
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
|
+
|