@bnsights/bbsf-admin-portal 1.0.47 → 1.0.50
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/bnsights-bbsf-admin-portal-1.0.50.tgz +0 -0
- package/bundles/bnsights-bbsf-admin-portal.umd.js +18 -18
- package/bundles/bnsights-bbsf-admin-portal.umd.js.map +1 -1
- package/esm2015/lib/Pages/configurations/configuration/configuration.component.js +9 -9
- package/fesm2015/bnsights-bbsf-admin-portal.js +16 -16
- package/fesm2015/bnsights-bbsf-admin-portal.js.map +1 -1
- package/package.json +4 -4
- package/bnsights-bbsf-admin-portal-1.0.47.tgz +0 -0
|
Binary file
|
|
@@ -10694,7 +10694,7 @@
|
|
|
10694
10694
|
ConfigurationComponent.prototype.ngOnInit = function () {
|
|
10695
10695
|
return __awaiter(this, void 0, void 0, function () {
|
|
10696
10696
|
var _this = this;
|
|
10697
|
-
return __generator(this, function (
|
|
10697
|
+
return __generator(this, function (_h) {
|
|
10698
10698
|
this.ShowPageContent = true;
|
|
10699
10699
|
//Page header (breadcrumb and title)
|
|
10700
10700
|
PageInfoService.PageTitle = this.utilityService.getResourceValue("Configuration");
|
|
@@ -11003,7 +11003,7 @@
|
|
|
11003
11003
|
this.ConfigurationId = configurationId;
|
|
11004
11004
|
this.resetConfigurationFlags();
|
|
11005
11005
|
this.ConfigurationsService.getEditConfigurationData(configurationId).subscribe(function (result) {
|
|
11006
|
-
var _a, _b, _c, _d, _e, _f;
|
|
11006
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
11007
11007
|
var resultObj = result;
|
|
11008
11008
|
//Edit model
|
|
11009
11009
|
var configuration = resultObj.model;
|
|
@@ -11023,9 +11023,9 @@
|
|
|
11023
11023
|
_this.EditConfigurationFormOptions.ServiceSubmitFunction = _this.getEditConfigurationFunction;
|
|
11024
11024
|
_this.EditConfigurationFormOptions.PagingReference = _this.pagingElement;
|
|
11025
11025
|
_this.EditConfigurationFormOptions.PagingActionMode = i6.PagingActionMode.Update;
|
|
11026
|
-
_this.ConfigurationValueTypeID_GUID = configuration.valueTypeID_GUID.toLowerCase();
|
|
11026
|
+
_this.ConfigurationValueTypeID_GUID = (_a = configuration.valueTypeID_GUID) === null || _a === void 0 ? void 0 : _a.toLowerCase();
|
|
11027
11027
|
_this.EditConfigurationScopeID_GUID = configuration.scopeID_GUID.toLowerCase();
|
|
11028
|
-
_this.EditConfigurationDDLSourceID_GUID = (
|
|
11028
|
+
_this.EditConfigurationDDLSourceID_GUID = (_b = configuration.valueSourceID_GUID) === null || _b === void 0 ? void 0 : _b.toLowerCase();
|
|
11029
11029
|
_this.configuration = configuration;
|
|
11030
11030
|
_this.EditKey = new i6.TextBoxOptions();
|
|
11031
11031
|
_this.EditKey.Name = "Key";
|
|
@@ -11084,7 +11084,7 @@
|
|
|
11084
11084
|
_this.EditLookup.SingleSelection = true;
|
|
11085
11085
|
_this.EditLookup.AllowSearchFilter = true;
|
|
11086
11086
|
_this.EditLookup.IsRequired = true;
|
|
11087
|
-
_this.EditLookup.SelectedItems = (
|
|
11087
|
+
_this.EditLookup.SelectedItems = (_c = configuration.selectedLookupID_GUID) === null || _c === void 0 ? void 0 : _c.toLowerCase();
|
|
11088
11088
|
_this.EditLookupValue = new i6.DropdownOptions();
|
|
11089
11089
|
_this.EditLookupValue.Name = "EditLookupValue";
|
|
11090
11090
|
_this.EditLookupValue.LabelKey = "Value";
|
|
@@ -11092,7 +11092,7 @@
|
|
|
11092
11092
|
_this.EditLookupValue.SingleSelection = true;
|
|
11093
11093
|
_this.EditLookupValue.AllowSearchFilter = true;
|
|
11094
11094
|
_this.EditLookupValue.IsRequired = true;
|
|
11095
|
-
_this.EditLookupValue.SelectedItems = (
|
|
11095
|
+
_this.EditLookupValue.SelectedItems = (_d = configuration.value) === null || _d === void 0 ? void 0 : _d.toLowerCase();
|
|
11096
11096
|
_this.EditLookupDefaultValue = new i6.DropdownOptions();
|
|
11097
11097
|
_this.EditLookupDefaultValue.Name = "EditLookupDefaultValue";
|
|
11098
11098
|
_this.EditLookupDefaultValue.LabelKey = "DefaultValue";
|
|
@@ -11100,7 +11100,7 @@
|
|
|
11100
11100
|
_this.EditLookupDefaultValue.SingleSelection = true;
|
|
11101
11101
|
_this.EditLookupDefaultValue.AllowSearchFilter = true;
|
|
11102
11102
|
_this.EditLookupDefaultValue.IsRequired = true;
|
|
11103
|
-
_this.EditLookupDefaultValue.SelectedItems = (
|
|
11103
|
+
_this.EditLookupDefaultValue.SelectedItems = (_e = configuration.defaultValue) === null || _e === void 0 ? void 0 : _e.toLowerCase();
|
|
11104
11104
|
break;
|
|
11105
11105
|
case ConfigurationDDLSource$1.Function:
|
|
11106
11106
|
_this.EditFunctionSourcePath = new i6.TextBoxOptions();
|
|
@@ -11155,7 +11155,7 @@
|
|
|
11155
11155
|
_this.EditPermissionSet.SingleSelection = true;
|
|
11156
11156
|
_this.EditPermissionSet.AllowSearchFilter = true;
|
|
11157
11157
|
_this.EditPermissionSet.IsRequired = true;
|
|
11158
|
-
_this.EditPermissionSet.SelectedItems = (
|
|
11158
|
+
_this.EditPermissionSet.SelectedItems = (_f = configuration.permissionSetID_GUID) === null || _f === void 0 ? void 0 : _f.toLowerCase();
|
|
11159
11159
|
break;
|
|
11160
11160
|
case Scope$1.User:
|
|
11161
11161
|
_this.ShowUsersList = true;
|
|
@@ -11167,7 +11167,7 @@
|
|
|
11167
11167
|
_this.EditUser.SingleSelection = true;
|
|
11168
11168
|
_this.EditUser.AllowSearchFilter = true;
|
|
11169
11169
|
_this.EditUser.IsRequired = true;
|
|
11170
|
-
_this.EditUser.SelectedItems = (
|
|
11170
|
+
_this.EditUser.SelectedItems = (_g = configuration.userID_GUID) === null || _g === void 0 ? void 0 : _g.toLowerCase();
|
|
11171
11171
|
break;
|
|
11172
11172
|
default:
|
|
11173
11173
|
break;
|
|
@@ -30177,7 +30177,7 @@
|
|
|
30177
30177
|
ConfigurationComponent.prototype.ngOnInit = function () {
|
|
30178
30178
|
return __awaiter(this, void 0, void 0, function () {
|
|
30179
30179
|
var _this = this;
|
|
30180
|
-
return __generator(this, function (
|
|
30180
|
+
return __generator(this, function (_h) {
|
|
30181
30181
|
this.ShowPageContent = true;
|
|
30182
30182
|
//Page header (breadcrumb and title)
|
|
30183
30183
|
PageInfoService.PageTitle = this.utilityService.getResourceValue("Configuration");
|
|
@@ -30486,7 +30486,7 @@
|
|
|
30486
30486
|
this.ConfigurationId = configurationId;
|
|
30487
30487
|
this.resetConfigurationFlags();
|
|
30488
30488
|
this.ConfigurationsService.getEditConfigurationData(configurationId).subscribe(function (result) {
|
|
30489
|
-
var _a, _b, _c, _d, _e, _f;
|
|
30489
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
30490
30490
|
var resultObj = result;
|
|
30491
30491
|
//Edit model
|
|
30492
30492
|
var configuration = resultObj.model;
|
|
@@ -30506,9 +30506,9 @@
|
|
|
30506
30506
|
_this.EditConfigurationFormOptions.ServiceSubmitFunction = _this.getEditConfigurationFunction;
|
|
30507
30507
|
_this.EditConfigurationFormOptions.PagingReference = _this.pagingElement;
|
|
30508
30508
|
_this.EditConfigurationFormOptions.PagingActionMode = i6.PagingActionMode.Update;
|
|
30509
|
-
_this.ConfigurationValueTypeID_GUID = configuration.valueTypeID_GUID.toLowerCase();
|
|
30509
|
+
_this.ConfigurationValueTypeID_GUID = (_a = configuration.valueTypeID_GUID) === null || _a === void 0 ? void 0 : _a.toLowerCase();
|
|
30510
30510
|
_this.EditConfigurationScopeID_GUID = configuration.scopeID_GUID.toLowerCase();
|
|
30511
|
-
_this.EditConfigurationDDLSourceID_GUID = (
|
|
30511
|
+
_this.EditConfigurationDDLSourceID_GUID = (_b = configuration.valueSourceID_GUID) === null || _b === void 0 ? void 0 : _b.toLowerCase();
|
|
30512
30512
|
_this.configuration = configuration;
|
|
30513
30513
|
_this.EditKey = new i6.TextBoxOptions();
|
|
30514
30514
|
_this.EditKey.Name = "Key";
|
|
@@ -30567,7 +30567,7 @@
|
|
|
30567
30567
|
_this.EditLookup.SingleSelection = true;
|
|
30568
30568
|
_this.EditLookup.AllowSearchFilter = true;
|
|
30569
30569
|
_this.EditLookup.IsRequired = true;
|
|
30570
|
-
_this.EditLookup.SelectedItems = (
|
|
30570
|
+
_this.EditLookup.SelectedItems = (_c = configuration.selectedLookupID_GUID) === null || _c === void 0 ? void 0 : _c.toLowerCase();
|
|
30571
30571
|
_this.EditLookupValue = new i6.DropdownOptions();
|
|
30572
30572
|
_this.EditLookupValue.Name = "EditLookupValue";
|
|
30573
30573
|
_this.EditLookupValue.LabelKey = "Value";
|
|
@@ -30575,7 +30575,7 @@
|
|
|
30575
30575
|
_this.EditLookupValue.SingleSelection = true;
|
|
30576
30576
|
_this.EditLookupValue.AllowSearchFilter = true;
|
|
30577
30577
|
_this.EditLookupValue.IsRequired = true;
|
|
30578
|
-
_this.EditLookupValue.SelectedItems = (
|
|
30578
|
+
_this.EditLookupValue.SelectedItems = (_d = configuration.value) === null || _d === void 0 ? void 0 : _d.toLowerCase();
|
|
30579
30579
|
_this.EditLookupDefaultValue = new i6.DropdownOptions();
|
|
30580
30580
|
_this.EditLookupDefaultValue.Name = "EditLookupDefaultValue";
|
|
30581
30581
|
_this.EditLookupDefaultValue.LabelKey = "DefaultValue";
|
|
@@ -30583,7 +30583,7 @@
|
|
|
30583
30583
|
_this.EditLookupDefaultValue.SingleSelection = true;
|
|
30584
30584
|
_this.EditLookupDefaultValue.AllowSearchFilter = true;
|
|
30585
30585
|
_this.EditLookupDefaultValue.IsRequired = true;
|
|
30586
|
-
_this.EditLookupDefaultValue.SelectedItems = (
|
|
30586
|
+
_this.EditLookupDefaultValue.SelectedItems = (_e = configuration.defaultValue) === null || _e === void 0 ? void 0 : _e.toLowerCase();
|
|
30587
30587
|
break;
|
|
30588
30588
|
case ConfigurationDDLSource.Function:
|
|
30589
30589
|
_this.EditFunctionSourcePath = new i6.TextBoxOptions();
|
|
@@ -30638,7 +30638,7 @@
|
|
|
30638
30638
|
_this.EditPermissionSet.SingleSelection = true;
|
|
30639
30639
|
_this.EditPermissionSet.AllowSearchFilter = true;
|
|
30640
30640
|
_this.EditPermissionSet.IsRequired = true;
|
|
30641
|
-
_this.EditPermissionSet.SelectedItems = (
|
|
30641
|
+
_this.EditPermissionSet.SelectedItems = (_f = configuration.permissionSetID_GUID) === null || _f === void 0 ? void 0 : _f.toLowerCase();
|
|
30642
30642
|
break;
|
|
30643
30643
|
case Scope.User:
|
|
30644
30644
|
_this.ShowUsersList = true;
|
|
@@ -30650,7 +30650,7 @@
|
|
|
30650
30650
|
_this.EditUser.SingleSelection = true;
|
|
30651
30651
|
_this.EditUser.AllowSearchFilter = true;
|
|
30652
30652
|
_this.EditUser.IsRequired = true;
|
|
30653
|
-
_this.EditUser.SelectedItems = (
|
|
30653
|
+
_this.EditUser.SelectedItems = (_g = configuration.userID_GUID) === null || _g === void 0 ? void 0 : _g.toLowerCase();
|
|
30654
30654
|
break;
|
|
30655
30655
|
default:
|
|
30656
30656
|
break;
|