@ttahub/common 2.2.14 → 2.2.16
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/package.json +1 -1
- package/src/constants.js +8 -1
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -130,6 +130,13 @@ const TRAINING_REPORT_STATUSES = {
|
|
|
130
130
|
};
|
|
131
131
|
exports.TRAINING_REPORT_STATUSES = TRAINING_REPORT_STATUSES;
|
|
132
132
|
|
|
133
|
+
const NAVIGATOR_PAGE_STATUSES = {
|
|
134
|
+
NOT_STARTED: 'Not started',
|
|
135
|
+
IN_PROGRESS: 'In progress',
|
|
136
|
+
COMPLETE: 'Complete',
|
|
137
|
+
};
|
|
138
|
+
exports.NAVIGATOR_PAGE_STATUSES = NAVIGATOR_PAGE_STATUSES;
|
|
139
|
+
|
|
133
140
|
const TRAINING_REPORT_STATUSES_URL_PARAMS = {
|
|
134
141
|
'not-started': TRAINING_REPORT_STATUSES.NOT_STARTED,
|
|
135
142
|
'in-progress': TRAINING_REPORT_STATUSES.IN_PROGRESS,
|
|
@@ -452,4 +459,4 @@ const TOTAL_HOURS_AND_RECIPIENT_GRAPH_TRACE_IDS = {
|
|
|
452
459
|
];
|
|
453
460
|
|
|
454
461
|
exports.COLLAB_REPORT_PARTICIPANTS = COLLAB_REPORT_PARTICIPANTS;
|
|
455
|
-
|
|
462
|
+
|