@ttahub/common 1.4.0 → 1.4.1
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/index.js +9 -1
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
|
+
## 1.4.0
|
|
25
|
+
Add SUPPORT_TYPE
|
|
26
|
+
|
|
24
27
|
### 1.1.9/1.2.0
|
|
25
28
|
(Sorry for the multiple versions) Update the name of the const COLLABORATOR_TRAINING_REPORTS to POC_TRAINING_REPORTS
|
|
26
29
|
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -256,4 +256,12 @@ const ALERT_SIZES = {
|
|
|
256
256
|
SLIM: 'slim',
|
|
257
257
|
LARGE: 'large'
|
|
258
258
|
};
|
|
259
|
-
exports.ALERT_SIZES = ALERT_SIZES;
|
|
259
|
+
exports.ALERT_SIZES = ALERT_SIZES;
|
|
260
|
+
|
|
261
|
+
const SUPPORT_TYPES = [
|
|
262
|
+
'Introducing',
|
|
263
|
+
'Planning',
|
|
264
|
+
'Implementing',
|
|
265
|
+
'Maintaining',
|
|
266
|
+
];
|
|
267
|
+
exports.SUPPORT_TYPES = SUPPORT_TYPES;
|