complexqa_frontend_core 1.16.1 → 1.16.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.16.1",
3
+ "version": "1.16.2",
4
4
  "description": "core of web ",
5
5
  "type": "module",
6
6
  "exports": {
package/publish/index.js CHANGED
@@ -16,7 +16,7 @@ export { typeTestRunResult } from './types/family_elements/typeTestRunResult.js'
16
16
  export { typeTestAccount } from './types/family_elements/typeTestAccount.js'
17
17
  export {typeBug} from './types/family_elements/typeBug.js';
18
18
 
19
- export { familyContext } from './types/core/0_familyContext.js';
19
+ export { familyContext } from './types/core/1_familyContext.js';
20
20
  export { typeBrowserContext } from './types/family_context/typeBrowserContext.js';
21
21
  export { typeOsContext } from './types/family_context/typeOsContext.js';
22
22
  export { typeScreenResolutionContext } from './types/family_context/typeScreenResolutionContext.js';
@@ -106,8 +106,8 @@ export class typeTestCase extends familyTestDocumentation
106
106
 
107
107
  status_color = {
108
108
  PENDING : '#C4B040',
109
- IN_PROGRESS: '#009688',
110
- COMPLETED : '#FD9A4F',
109
+ IN_PROGRESS: '#FD9A4F',
110
+ COMPLETED : '#009688',
111
111
  CLOSED : '#E0E0E0',
112
112
  };
113
113
 
@@ -104,8 +104,8 @@ export class typeTestRun extends familyTestDocumentation
104
104
 
105
105
  status_color = {
106
106
  PENDING : '#C4B040',
107
- IN_PROGRESS: '#009688',
108
- COMPLETED : '#FD9A4F',
107
+ IN_PROGRESS: '#FD9A4F',
108
+ COMPLETED : '#009688',
109
109
  CLOSED : '#E0E0E0',
110
110
  };
111
111