complexqa_frontend_core 1.0.5 → 1.0.6
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,4 +1,5 @@
|
|
|
1
1
|
|
|
2
|
+
|
|
2
3
|
/**
|
|
3
4
|
* Прототип идеи, пока не уверен, что именно так надо
|
|
4
5
|
*
|
|
@@ -1460,6 +1461,7 @@ export class familyGeneralElement
|
|
|
1460
1461
|
|
|
1461
1462
|
is_editable_attribute(attribute) {}
|
|
1462
1463
|
|
|
1464
|
+
|
|
1463
1465
|
/**
|
|
1464
1466
|
*
|
|
1465
1467
|
* @version v.0.1 (26/05/2024)
|
|
@@ -1471,6 +1473,17 @@ export class familyGeneralElement
|
|
|
1471
1473
|
return attribute_name;
|
|
1472
1474
|
}
|
|
1473
1475
|
|
|
1476
|
+
/***********************************************/
|
|
1477
|
+
|
|
1478
|
+
/**
|
|
1479
|
+
* Возвращаем "имя", то есть значение атрибута, который является именем
|
|
1480
|
+
*
|
|
1481
|
+
* @version v.0.1 (05/06/2025)
|
|
1482
|
+
*/
|
|
1483
|
+
get_element_name()
|
|
1484
|
+
{
|
|
1485
|
+
alert('Error #205-001 Not implemented method');
|
|
1486
|
+
}
|
|
1474
1487
|
|
|
1475
1488
|
/***********************************************/
|
|
1476
1489
|
/***********************************************/
|
|
@@ -1903,6 +1916,20 @@ export class typeProject extends familyGeneralElement
|
|
|
1903
1916
|
}
|
|
1904
1917
|
|
|
1905
1918
|
|
|
1919
|
+
/******************************************************************************************/
|
|
1920
|
+
|
|
1921
|
+
|
|
1922
|
+
/**
|
|
1923
|
+
*
|
|
1924
|
+
* @version v.0.1 (05/06/2025)
|
|
1925
|
+
*
|
|
1926
|
+
* @returns {string}
|
|
1927
|
+
*/
|
|
1928
|
+
get_element_name()
|
|
1929
|
+
{
|
|
1930
|
+
return this.project_name;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1906
1933
|
/******************************************************************************************/
|
|
1907
1934
|
/*********************************** general **********************************************/
|
|
1908
1935
|
/******************************************************************************************/
|
|
@@ -2591,6 +2618,18 @@ export class typeTestCase extends familyGeneralElement
|
|
|
2591
2618
|
|
|
2592
2619
|
/******************************************************************************************/
|
|
2593
2620
|
|
|
2621
|
+
/**
|
|
2622
|
+
*
|
|
2623
|
+
* @version v.0.1 (05/06/2025)
|
|
2624
|
+
*
|
|
2625
|
+
* @returns {string}
|
|
2626
|
+
*/
|
|
2627
|
+
get_element_name()
|
|
2628
|
+
{
|
|
2629
|
+
return this.test_case_title;
|
|
2630
|
+
}
|
|
2631
|
+
|
|
2632
|
+
|
|
2594
2633
|
/**
|
|
2595
2634
|
*
|
|
2596
2635
|
* @param {familyGeneralElement|object} payload
|