complexqa_frontend_core 1.10.3 → 1.10.5

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.10.3",
3
+ "version": "1.10.5",
4
4
  "description": "core of web ",
5
5
  "type": "module",
6
6
  "exports": {
@@ -443,6 +443,11 @@ export class familyGeneralElement
443
443
  element = this;
444
444
  }
445
445
 
446
+ if (!window.confirm("Submit delete"))
447
+ {
448
+ return false;
449
+ }
450
+
446
451
  let payload = {};
447
452
 
448
453
  payload[this.get_primary_key()] = element[this.get_primary_key()];
@@ -75,4 +75,14 @@ export class typeTestRun extends familyTestDocumentation
75
75
 
76
76
  return this;
77
77
  }
78
+
79
+
80
+ /**
81
+ *
82
+ * @version v.0.1 (17/03/2026)
83
+ */
84
+ get_element_name()
85
+ {
86
+ return this.test_run_name;
87
+ }
78
88
  }