@bnsights/bbsf-admin-portal 1.0.68 → 1.0.69

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/README.md CHANGED
@@ -5,30 +5,35 @@ BBSF Admin Portal package is part of BBSF 3 packages. It hosts all the angular m
5
5
  For more info please visit [BBSF documentation](https://bnsightsprojects.visualstudio.com/BBSF%203/_wiki/wikis/BBSF-3.wiki/65/BBSF-Documentation)
6
6
 
7
7
  # Change Log
8
- ## 1.0.68 / 11-1-2022
8
+ ## 1.0.69 / 18-1-2023
9
+ ===================
10
+ * Fix Delete survey on language change
11
+ * Update Controls
12
+
13
+ ## 1.0.68 / 11-1-2023
9
14
  ===================
10
15
  * Update controls version
11
16
  * Solve Survey Bugs
12
17
 
13
- ## 1.0.67 / 11-1-2022
18
+ ## 1.0.67 / 11-1-2023
14
19
  ===================
15
20
  * Update controls version
16
21
 
17
- ## 1.0.66 / 11-1-2022
22
+ ## 1.0.66 / 11-1-2023
18
23
  ===================
19
24
  * Update controls version
20
25
 
21
- ## 1.0.63 / 9-1-2022
26
+ ## 1.0.63 / 9-1-2023
22
27
  ===================
23
28
  * Update controls version
24
29
  * Solve add user issue
25
30
 
26
- ## 1.0.62 / 5-1-2022
31
+ ## 1.0.62 / 5-1-2023
27
32
  ===================
28
33
  * Update controls version
29
34
  * Update Utilities version
30
35
 
31
- ## 1.0.61 / 3-1-2022
36
+ ## 1.0.61 / 3-1-2023
32
37
  ===================
33
38
  * Update controls version
34
39
  * Update Utilities version
@@ -26066,20 +26066,19 @@
26066
26066
  return _this;
26067
26067
  }
26068
26068
  DeleteSurveyComponent.prototype.ngOnInit = function () {
26069
+ this.deleteConfirmationOptions = new i6.ConfirmationModalOptions();
26070
+ this.deleteConfirmationOptions.ServiceSubmitFunction = this.delete;
26071
+ this.deleteConfirmationOptions.OnSuccessHandler = this.onSuccessHandler ? this.onSuccessHandler : this.onSuccessDeleteHandler;
26072
+ this.deleteConfirmationOptions.DisableSuccessNotification = true;
26073
+ this.deleteConfirmationOptions.ConfirmationBody = this.l('ContinueConfirmationMessage');
26069
26074
  };
26070
26075
  DeleteSurveyComponent.prototype.showDeleteModal = function (id) {
26071
26076
  var _this = this;
26072
- debugger;
26073
26077
  this.startBlockUI();
26074
26078
  var paramArray = [];
26075
26079
  paramArray.push(id);
26076
- this.deleteConfirmationOptions = new i6.ConfirmationModalOptions();
26077
- this.deleteConfirmationOptions.ServiceSubmitFunction = this.delete;
26078
26080
  this.deleteConfirmationOptions.ServiceSubmitModel = paramArray;
26079
26081
  this.deleteConfirmationOptions.PagingReference = this.pagingElement;
26080
- this.deleteConfirmationOptions.OnSuccessHandler = this.onSuccessHandler ? this.onSuccessHandler : this.onSuccessDeleteHandler;
26081
- this.deleteConfirmationOptions.DisableSuccessNotification = true;
26082
- this.deleteConfirmationOptions.ConfirmationBody = this.l('ContinueConfirmationMessage');
26083
26082
  setTimeout(function () {
26084
26083
  _this.deleteConfirmationModalControl.showModal();
26085
26084
  _this.stopBlockUI();