complexqa_frontend_core 1.17.8 → 1.17.10
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/publish/app_configuration/table/sections/test_account.js +2 -2
- package/publish/app_configuration/table/sections/test_run.js +2 -2
- package/publish/app_configuration/table/sections/test_run_result.js +3 -3
- package/publish/app_configuration/table/table_base_config.js +3 -3
- package/publish/types/family_elements/typeBug.js +2 -2
- package/publish/types/family_elements/typeTask.js +2 -2
- package/publish/types/family_elements/typeTeam.js +1 -1
- package/publish/types/family_elements/typeTeamMember.js +1 -1
- package/publish/types/family_elements/typeTestCase.js +1 -1
- package/publish/types/family_elements/typeTestRun.js +1 -1
- package/publish/types/family_elements/typeTestRunResult.js +1 -1
package/package.json
CHANGED
|
@@ -14,8 +14,8 @@ function build_test_account_listing_columns(locale)
|
|
|
14
14
|
createColumn(model, locale, 'login', { width: '480', is_editable: true, is_required: true }),
|
|
15
15
|
createColumn(model, locale, 'password', { width: '480', is_editable: true }),
|
|
16
16
|
createColumn(model, locale, 'test_account_description', { width: '480', is_editable: true }),
|
|
17
|
-
createColumn(model, locale, 'created_at', { width: '
|
|
18
|
-
createColumn(model, locale, 'updated_at', { width: '
|
|
17
|
+
createColumn(model, locale, 'created_at', { width: '170' }),
|
|
18
|
+
createColumn(model, locale, 'updated_at', { width: '170' }),
|
|
19
19
|
createGoToColumn(model, locale),
|
|
20
20
|
];
|
|
21
21
|
}
|
|
@@ -26,8 +26,8 @@ function build_test_run_listing_columns(locale, { include_select = true } = {})
|
|
|
26
26
|
}));
|
|
27
27
|
columns.push(createColumn(model, locale, 'assigned_to', { width: '220', is_editable: true, is_required: true }));
|
|
28
28
|
columns.push(createColumn(model, locale, 'test_run_status', { width: '150', is_editable: true, is_required: true }));
|
|
29
|
-
columns.push(createColumn(model, locale, 'created_at', { width: '
|
|
30
|
-
columns.push(createColumn(model, locale, 'completed_at', { width: '
|
|
29
|
+
columns.push(createColumn(model, locale, 'created_at', { width: '170', is_required: true }));
|
|
30
|
+
columns.push(createColumn(model, locale, 'completed_at', { width: '170', is_required: true }));
|
|
31
31
|
columns.push(createGoToColumn(model, locale));
|
|
32
32
|
|
|
33
33
|
return columns;
|
|
@@ -22,9 +22,9 @@ function build_test_run_result_listing_columns(locale, { include_select = true }
|
|
|
22
22
|
is_required : true,
|
|
23
23
|
}));
|
|
24
24
|
columns.push(createColumn(model, locale, 'assigned_to', { width: '220', is_editable: true, is_required: true }));
|
|
25
|
-
columns.push(createColumn(model, locale, 'created_at', { width: '
|
|
26
|
-
columns.push(createColumn(model, locale, 'updated_at', { width: '
|
|
27
|
-
columns.push(createColumn(model, locale, 'completed_at', { width: '
|
|
25
|
+
columns.push(createColumn(model, locale, 'created_at', { width: '170', is_required: true }));
|
|
26
|
+
columns.push(createColumn(model, locale, 'updated_at', { width: '170', is_required: true }));
|
|
27
|
+
columns.push(createColumn(model, locale, 'completed_at', { width: '170', is_required: true }));
|
|
28
28
|
columns.push(createColumn(model, locale, 'test_result_status', { width: '150', is_editable: true, is_required: true }));
|
|
29
29
|
columns.push(createGoToColumn(model, locale));
|
|
30
30
|
|
|
@@ -114,12 +114,12 @@ export class TableBaseConfig
|
|
|
114
114
|
// sideBar (Columns/Filters Tool Panel) — только ag-grid Enterprise.
|
|
115
115
|
// В Community: columnMenu + floating filters (см. defaultColDef.filter).
|
|
116
116
|
suppressMenuHide : true,
|
|
117
|
-
columnMenu : '
|
|
117
|
+
columnMenu : 'legacy',
|
|
118
118
|
columnHoverHighlight : false,
|
|
119
119
|
enableBrowserTooltips : false,
|
|
120
120
|
rowSelection : 'multiple',
|
|
121
|
-
rowMultiSelectWithClick : false,
|
|
122
|
-
suppressRowClickSelection: true,
|
|
121
|
+
//rowMultiSelectWithClick : false,
|
|
122
|
+
//suppressRowClickSelection: true,
|
|
123
123
|
//enableRangeSelection : true,
|
|
124
124
|
/*headerHeight : '44',
|
|
125
125
|
rowHeight : '44',*/
|
|
@@ -98,8 +98,8 @@ export class typeBug extends familyTestDocumentation
|
|
|
98
98
|
bug_severity: 'string | enum | require', // BLOCKER, CRITICAL, MAJOR, MINOR, TRIVIAL (ADO/Bugzilla)
|
|
99
99
|
|
|
100
100
|
// --- people ---
|
|
101
|
-
reporter_id: 'integer | require', // кто нашёл / создал
|
|
102
|
-
assigned_to: 'integer | optional', // кто исправляет
|
|
101
|
+
reporter_id: 'integer | typeUser | require', // кто нашёл / создал
|
|
102
|
+
assigned_to: 'integer | typeUser | optional', // кто исправляет
|
|
103
103
|
|
|
104
104
|
// --- TMS links ---
|
|
105
105
|
// move into another type
|
|
@@ -25,8 +25,8 @@ export class typeTask extends familyGeneralElement
|
|
|
25
25
|
structure_scheme = {
|
|
26
26
|
task_id : 'integer | require',
|
|
27
27
|
team_id : 'integer | require',
|
|
28
|
-
task_performer_id : 'integer | require',
|
|
29
|
-
task_initiator_id : 'integer | require',
|
|
28
|
+
task_performer_id : 'integer | typeUser | require',
|
|
29
|
+
task_initiator_id : 'integer | typeUser | require',
|
|
30
30
|
task_type : 'string | enum | require',
|
|
31
31
|
task_status : 'string | enum | require',
|
|
32
32
|
project_id : 'integer | require',
|
|
@@ -33,7 +33,7 @@ export class typeTeam extends familyGeneralElement
|
|
|
33
33
|
team_name : 'string | unique | require',
|
|
34
34
|
team_slug : 'string | unique | require',
|
|
35
35
|
team_price_id : 'integer | require',
|
|
36
|
-
team_root_user_id: 'integer | require',
|
|
36
|
+
team_root_user_id: 'integer | typeUser | require',
|
|
37
37
|
created_at : 'timestamp | require',
|
|
38
38
|
updated_at : 'timestamp | optional',
|
|
39
39
|
};
|
|
@@ -26,7 +26,7 @@ export class typeTeamMember extends familyGeneralElement
|
|
|
26
26
|
first_name : 'string | optional',
|
|
27
27
|
last_name : 'string | optional',
|
|
28
28
|
team_id : 'integer | require',
|
|
29
|
-
user_id : 'integer | require',
|
|
29
|
+
user_id : 'integer | typeUser | require',
|
|
30
30
|
team_member_status: 'string | enum | require',
|
|
31
31
|
member_role : 'string | enum | require',
|
|
32
32
|
created_at : 'timestamp | require',
|
|
@@ -41,7 +41,7 @@ export class typeTestCase extends familyTestDocumentation
|
|
|
41
41
|
test_suite_id : 'integer | optional',
|
|
42
42
|
project_id : 'integer | require',
|
|
43
43
|
team_id : 'integer | require',
|
|
44
|
-
assigned_to : 'integer | optional',
|
|
44
|
+
assigned_to : 'integer | typeUser | optional',
|
|
45
45
|
functional_id : 'integer | optional',
|
|
46
46
|
test_case_status : 'string | enum | require',
|
|
47
47
|
test_case_title : 'string | optional',
|
|
@@ -36,7 +36,7 @@ export class typeTestRun extends familyTestDocumentation
|
|
|
36
36
|
project_id : 'integer | require',
|
|
37
37
|
team_id : 'integer | require',
|
|
38
38
|
test_run_description: 'string | StringHtml | optional',
|
|
39
|
-
assigned_to : 'integer | optional',
|
|
39
|
+
assigned_to : 'integer | typeUser | optional',
|
|
40
40
|
test_case_ids : 'array | optional',
|
|
41
41
|
test_run_status : 'string | enum | require',
|
|
42
42
|
created_at : 'timestamp | require',
|
|
@@ -33,7 +33,7 @@ export class typeTestRunResult extends familyTestDocumentation
|
|
|
33
33
|
test_case_id : 'integer | require',
|
|
34
34
|
test_run_id : 'integer | require',
|
|
35
35
|
test_result_status: 'string | enum | require',
|
|
36
|
-
assigned_to : 'integer | optional',
|
|
36
|
+
assigned_to : 'integer | typeUser | optional',
|
|
37
37
|
project_id : 'integer | require',
|
|
38
38
|
//test_run_result_to_execute: 'time | optional',
|
|
39
39
|
//reference_defects_ids : 'array | reference | optional',
|