complexqa_frontend_core 1.13.1 → 1.13.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complexqa_frontend_core",
3
- "version": "1.13.1",
3
+ "version": "1.13.2",
4
4
  "description": "core of web ",
5
5
  "type": "module",
6
6
  "exports": {
@@ -51,9 +51,8 @@ export class typeProject extends familyGeneralElement
51
51
  };
52
52
 
53
53
  status_color = {
54
- OPEN : '#3AADA0',
55
- CLOSED : '#9E9E9E',
56
- //PLANNED: '#C4B040',
54
+ OPEN : '#009688',
55
+ CLOSED : '#E0E0E0',
57
56
  };
58
57
 
59
58
 
@@ -102,11 +102,17 @@ export class typeTestRun extends familyTestDocumentation
102
102
  },
103
103
  };
104
104
 
105
-
105
+ status_color = {
106
+ PENDING : '#C4B040',
107
+ IN_PROGRESS: '#009688',
108
+ COMPLETED : '#FD9A4F',
109
+ CLOSED : '#E0E0E0',
110
+ };
106
111
 
107
112
 
108
113
  /******************************************************************************************/
109
114
  /******************************************************************************************/
115
+
110
116
  /******************************************************************************************/
111
117
 
112
118
  /**
@@ -50,10 +50,10 @@ export class typeTestRunResult extends familyTestDocumentation
50
50
  status_color = {
51
51
  PENDING: '#C4B040',
52
52
  PASSED : '#009688',
53
- FAILED : '#C4B040',
54
- SKIPPED: '#C4B040',
55
- BLOCKED: '#C4B040',
56
- RETEST : '#C4B040',
53
+ FAILED : '#E66565',
54
+ SKIPPED: '#FD9A4F',
55
+ BLOCKED: '#E0E0E0',
56
+ RETEST : '#4D92FA',
57
57
  };
58
58
 
59
59
  /**