@bnsights/bbsf-admin-portal 1.0.46 → 1.0.49
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 +12 -0
- package/bnsights-bbsf-admin-portal-1.0.49.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.46.tgz +0 -0
|
@@ -10250,7 +10250,7 @@ class ConfigurationComponent$1 {
|
|
|
10250
10250
|
this.ConfigurationId = configurationId;
|
|
10251
10251
|
this.resetConfigurationFlags();
|
|
10252
10252
|
this.ConfigurationsService.getEditConfigurationData(configurationId).subscribe((result) => {
|
|
10253
|
-
var _a, _b, _c, _d, _e, _f;
|
|
10253
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
10254
10254
|
let resultObj = result;
|
|
10255
10255
|
//Edit model
|
|
10256
10256
|
let configuration = resultObj.model;
|
|
@@ -10270,9 +10270,9 @@ class ConfigurationComponent$1 {
|
|
|
10270
10270
|
this.EditConfigurationFormOptions.ServiceSubmitFunction = this.getEditConfigurationFunction;
|
|
10271
10271
|
this.EditConfigurationFormOptions.PagingReference = this.pagingElement;
|
|
10272
10272
|
this.EditConfigurationFormOptions.PagingActionMode = PagingActionMode.Update;
|
|
10273
|
-
this.ConfigurationValueTypeID_GUID = configuration.valueTypeID_GUID.toLowerCase();
|
|
10273
|
+
this.ConfigurationValueTypeID_GUID = (_a = configuration.valueTypeID_GUID) === null || _a === void 0 ? void 0 : _a.toLowerCase();
|
|
10274
10274
|
this.EditConfigurationScopeID_GUID = configuration.scopeID_GUID.toLowerCase();
|
|
10275
|
-
this.EditConfigurationDDLSourceID_GUID = (
|
|
10275
|
+
this.EditConfigurationDDLSourceID_GUID = (_b = configuration.valueSourceID_GUID) === null || _b === void 0 ? void 0 : _b.toLowerCase();
|
|
10276
10276
|
this.configuration = configuration;
|
|
10277
10277
|
this.EditKey = new TextBoxOptions();
|
|
10278
10278
|
this.EditKey.Name = "Key";
|
|
@@ -10331,7 +10331,7 @@ class ConfigurationComponent$1 {
|
|
|
10331
10331
|
this.EditLookup.SingleSelection = true;
|
|
10332
10332
|
this.EditLookup.AllowSearchFilter = true;
|
|
10333
10333
|
this.EditLookup.IsRequired = true;
|
|
10334
|
-
this.EditLookup.SelectedItems = (
|
|
10334
|
+
this.EditLookup.SelectedItems = (_c = configuration.selectedLookupID_GUID) === null || _c === void 0 ? void 0 : _c.toLowerCase();
|
|
10335
10335
|
this.EditLookupValue = new DropdownOptions();
|
|
10336
10336
|
this.EditLookupValue.Name = "EditLookupValue";
|
|
10337
10337
|
this.EditLookupValue.LabelKey = "Value";
|
|
@@ -10339,7 +10339,7 @@ class ConfigurationComponent$1 {
|
|
|
10339
10339
|
this.EditLookupValue.SingleSelection = true;
|
|
10340
10340
|
this.EditLookupValue.AllowSearchFilter = true;
|
|
10341
10341
|
this.EditLookupValue.IsRequired = true;
|
|
10342
|
-
this.EditLookupValue.SelectedItems = (
|
|
10342
|
+
this.EditLookupValue.SelectedItems = (_d = configuration.value) === null || _d === void 0 ? void 0 : _d.toLowerCase();
|
|
10343
10343
|
this.EditLookupDefaultValue = new DropdownOptions();
|
|
10344
10344
|
this.EditLookupDefaultValue.Name = "EditLookupDefaultValue";
|
|
10345
10345
|
this.EditLookupDefaultValue.LabelKey = "DefaultValue";
|
|
@@ -10347,7 +10347,7 @@ class ConfigurationComponent$1 {
|
|
|
10347
10347
|
this.EditLookupDefaultValue.SingleSelection = true;
|
|
10348
10348
|
this.EditLookupDefaultValue.AllowSearchFilter = true;
|
|
10349
10349
|
this.EditLookupDefaultValue.IsRequired = true;
|
|
10350
|
-
this.EditLookupDefaultValue.SelectedItems = (
|
|
10350
|
+
this.EditLookupDefaultValue.SelectedItems = (_e = configuration.defaultValue) === null || _e === void 0 ? void 0 : _e.toLowerCase();
|
|
10351
10351
|
break;
|
|
10352
10352
|
case ConfigurationDDLSource$1.Function:
|
|
10353
10353
|
this.EditFunctionSourcePath = new TextBoxOptions();
|
|
@@ -10402,7 +10402,7 @@ class ConfigurationComponent$1 {
|
|
|
10402
10402
|
this.EditPermissionSet.SingleSelection = true;
|
|
10403
10403
|
this.EditPermissionSet.AllowSearchFilter = true;
|
|
10404
10404
|
this.EditPermissionSet.IsRequired = true;
|
|
10405
|
-
this.EditPermissionSet.SelectedItems = (
|
|
10405
|
+
this.EditPermissionSet.SelectedItems = (_f = configuration.permissionSetID_GUID) === null || _f === void 0 ? void 0 : _f.toLowerCase();
|
|
10406
10406
|
break;
|
|
10407
10407
|
case Scope$1.User:
|
|
10408
10408
|
this.ShowUsersList = true;
|
|
@@ -10414,7 +10414,7 @@ class ConfigurationComponent$1 {
|
|
|
10414
10414
|
this.EditUser.SingleSelection = true;
|
|
10415
10415
|
this.EditUser.AllowSearchFilter = true;
|
|
10416
10416
|
this.EditUser.IsRequired = true;
|
|
10417
|
-
this.EditUser.SelectedItems = (
|
|
10417
|
+
this.EditUser.SelectedItems = (_g = configuration.userID_GUID) === null || _g === void 0 ? void 0 : _g.toLowerCase();
|
|
10418
10418
|
break;
|
|
10419
10419
|
default:
|
|
10420
10420
|
break;
|
|
@@ -28811,7 +28811,7 @@ class ConfigurationComponent {
|
|
|
28811
28811
|
this.ConfigurationId = configurationId;
|
|
28812
28812
|
this.resetConfigurationFlags();
|
|
28813
28813
|
this.ConfigurationsService.getEditConfigurationData(configurationId).subscribe((result) => {
|
|
28814
|
-
var _a, _b, _c, _d, _e, _f;
|
|
28814
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
28815
28815
|
let resultObj = result;
|
|
28816
28816
|
//Edit model
|
|
28817
28817
|
let configuration = resultObj.model;
|
|
@@ -28831,9 +28831,9 @@ class ConfigurationComponent {
|
|
|
28831
28831
|
this.EditConfigurationFormOptions.ServiceSubmitFunction = this.getEditConfigurationFunction;
|
|
28832
28832
|
this.EditConfigurationFormOptions.PagingReference = this.pagingElement;
|
|
28833
28833
|
this.EditConfigurationFormOptions.PagingActionMode = PagingActionMode.Update;
|
|
28834
|
-
this.ConfigurationValueTypeID_GUID = configuration.valueTypeID_GUID.toLowerCase();
|
|
28834
|
+
this.ConfigurationValueTypeID_GUID = (_a = configuration.valueTypeID_GUID) === null || _a === void 0 ? void 0 : _a.toLowerCase();
|
|
28835
28835
|
this.EditConfigurationScopeID_GUID = configuration.scopeID_GUID.toLowerCase();
|
|
28836
|
-
this.EditConfigurationDDLSourceID_GUID = (
|
|
28836
|
+
this.EditConfigurationDDLSourceID_GUID = (_b = configuration.valueSourceID_GUID) === null || _b === void 0 ? void 0 : _b.toLowerCase();
|
|
28837
28837
|
this.configuration = configuration;
|
|
28838
28838
|
this.EditKey = new TextBoxOptions();
|
|
28839
28839
|
this.EditKey.Name = "Key";
|
|
@@ -28892,7 +28892,7 @@ class ConfigurationComponent {
|
|
|
28892
28892
|
this.EditLookup.SingleSelection = true;
|
|
28893
28893
|
this.EditLookup.AllowSearchFilter = true;
|
|
28894
28894
|
this.EditLookup.IsRequired = true;
|
|
28895
|
-
this.EditLookup.SelectedItems = (
|
|
28895
|
+
this.EditLookup.SelectedItems = (_c = configuration.selectedLookupID_GUID) === null || _c === void 0 ? void 0 : _c.toLowerCase();
|
|
28896
28896
|
this.EditLookupValue = new DropdownOptions();
|
|
28897
28897
|
this.EditLookupValue.Name = "EditLookupValue";
|
|
28898
28898
|
this.EditLookupValue.LabelKey = "Value";
|
|
@@ -28900,7 +28900,7 @@ class ConfigurationComponent {
|
|
|
28900
28900
|
this.EditLookupValue.SingleSelection = true;
|
|
28901
28901
|
this.EditLookupValue.AllowSearchFilter = true;
|
|
28902
28902
|
this.EditLookupValue.IsRequired = true;
|
|
28903
|
-
this.EditLookupValue.SelectedItems = (
|
|
28903
|
+
this.EditLookupValue.SelectedItems = (_d = configuration.value) === null || _d === void 0 ? void 0 : _d.toLowerCase();
|
|
28904
28904
|
this.EditLookupDefaultValue = new DropdownOptions();
|
|
28905
28905
|
this.EditLookupDefaultValue.Name = "EditLookupDefaultValue";
|
|
28906
28906
|
this.EditLookupDefaultValue.LabelKey = "DefaultValue";
|
|
@@ -28908,7 +28908,7 @@ class ConfigurationComponent {
|
|
|
28908
28908
|
this.EditLookupDefaultValue.SingleSelection = true;
|
|
28909
28909
|
this.EditLookupDefaultValue.AllowSearchFilter = true;
|
|
28910
28910
|
this.EditLookupDefaultValue.IsRequired = true;
|
|
28911
|
-
this.EditLookupDefaultValue.SelectedItems = (
|
|
28911
|
+
this.EditLookupDefaultValue.SelectedItems = (_e = configuration.defaultValue) === null || _e === void 0 ? void 0 : _e.toLowerCase();
|
|
28912
28912
|
break;
|
|
28913
28913
|
case ConfigurationDDLSource.Function:
|
|
28914
28914
|
this.EditFunctionSourcePath = new TextBoxOptions();
|
|
@@ -28963,7 +28963,7 @@ class ConfigurationComponent {
|
|
|
28963
28963
|
this.EditPermissionSet.SingleSelection = true;
|
|
28964
28964
|
this.EditPermissionSet.AllowSearchFilter = true;
|
|
28965
28965
|
this.EditPermissionSet.IsRequired = true;
|
|
28966
|
-
this.EditPermissionSet.SelectedItems = (
|
|
28966
|
+
this.EditPermissionSet.SelectedItems = (_f = configuration.permissionSetID_GUID) === null || _f === void 0 ? void 0 : _f.toLowerCase();
|
|
28967
28967
|
break;
|
|
28968
28968
|
case Scope.User:
|
|
28969
28969
|
this.ShowUsersList = true;
|
|
@@ -28975,7 +28975,7 @@ class ConfigurationComponent {
|
|
|
28975
28975
|
this.EditUser.SingleSelection = true;
|
|
28976
28976
|
this.EditUser.AllowSearchFilter = true;
|
|
28977
28977
|
this.EditUser.IsRequired = true;
|
|
28978
|
-
this.EditUser.SelectedItems = (
|
|
28978
|
+
this.EditUser.SelectedItems = (_g = configuration.userID_GUID) === null || _g === void 0 ? void 0 : _g.toLowerCase();
|
|
28979
28979
|
break;
|
|
28980
28980
|
default:
|
|
28981
28981
|
break;
|