@bnsights/bbsf-admin-portal 1.0.38 → 1.0.39
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 +4 -0
- package/{bnsights-bbsf-admin-portal-1.0.38.tgz → bnsights-bbsf-admin-portal-1.0.39.tgz} +0 -0
- package/bundles/bnsights-bbsf-admin-portal.umd.js +20 -20
- package/bundles/bnsights-bbsf-admin-portal.umd.js.map +1 -1
- package/esm2015/lib/Pages/localizations/localizations.component.js +2 -2
- package/esm2015/lib/Pages/lookups/lookup/lookup.component.js +2 -2
- package/esm2015/lib/Pages/notifications/templates/templates.component.js +3 -3
- package/esm2015/lib/Pages/providers/provider/provider.component.js +3 -3
- package/esm2015/lib/Pages/users/users.component.js +5 -5
- package/fesm2015/bnsights-bbsf-admin-portal.js +20 -20
- package/fesm2015/bnsights-bbsf-admin-portal.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -6,6 +6,10 @@ For more info please visit [BBSF documentation](https://bnsightsprojects.visuals
|
|
|
6
6
|
|
|
7
7
|
# Change Log
|
|
8
8
|
|
|
9
|
+
## 1.0.39 / 23-6-2022
|
|
10
|
+
===================
|
|
11
|
+
* Fix Clear filter in localizations,lookup,templates, provider and users screens
|
|
12
|
+
|
|
9
13
|
## 1.0.38 / 14-6-2022
|
|
10
14
|
===================
|
|
11
15
|
* Update controls library
|
|
Binary file
|
|
@@ -4353,7 +4353,7 @@
|
|
|
4353
4353
|
this.filteredLocalizationPagingResult = this.localizationPagingResult;
|
|
4354
4354
|
};
|
|
4355
4355
|
LocalizationsComponent.prototype.resetFilters = function () {
|
|
4356
|
-
this.localizationForm.controls["ResourceSet"].setValue(
|
|
4356
|
+
this.localizationForm.controls["ResourceSet"].setValue(null);
|
|
4357
4357
|
this.localizationForm.controls["searchTextBox"].setValue(null);
|
|
4358
4358
|
var element = this.pagingElement;
|
|
4359
4359
|
element.ReinitializePaging();
|
|
@@ -6827,8 +6827,8 @@
|
|
|
6827
6827
|
this.utilityService.stopBlockUI();
|
|
6828
6828
|
};
|
|
6829
6829
|
TemplatesComponent.prototype.resetFilters = function () {
|
|
6830
|
-
this.TemplateForm.controls["Category"].setValue(
|
|
6831
|
-
this.TemplateForm.controls["Type"].setValue(
|
|
6830
|
+
this.TemplateForm.controls["Category"].setValue(null);
|
|
6831
|
+
this.TemplateForm.controls["Type"].setValue(null);
|
|
6832
6832
|
this.TemplateForm.controls["searchTextBox"].setValue(null);
|
|
6833
6833
|
var element = this.pagingElement;
|
|
6834
6834
|
element.ReinitializePaging();
|
|
@@ -8141,7 +8141,7 @@
|
|
|
8141
8141
|
};
|
|
8142
8142
|
//Filter functions
|
|
8143
8143
|
LookupComponent.prototype.resetFilters = function () {
|
|
8144
|
-
this.lookupForm.controls["Type"].setValue(
|
|
8144
|
+
this.lookupForm.controls["Type"].setValue(null);
|
|
8145
8145
|
this.lookupForm.controls["searchTextBox"].setValue(null);
|
|
8146
8146
|
var element = this.pagingElement;
|
|
8147
8147
|
element.ReinitializePaging();
|
|
@@ -17870,8 +17870,8 @@
|
|
|
17870
17870
|
this.utilityService.stopBlockUI();
|
|
17871
17871
|
};
|
|
17872
17872
|
ProviderComponent.prototype.resetFilters = function () {
|
|
17873
|
-
this.ProviderForm.controls["providerTypesFilterOption"].setValue(
|
|
17874
|
-
this.ProviderForm.controls["sortingFilterOption"].setValue(
|
|
17873
|
+
this.ProviderForm.controls["providerTypesFilterOption"].setValue(null);
|
|
17874
|
+
this.ProviderForm.controls["sortingFilterOption"].setValue(null);
|
|
17875
17875
|
this.ProviderForm.controls["searchTextBox"].setValue(null);
|
|
17876
17876
|
var element = this.pagingElement;
|
|
17877
17877
|
element.ReinitializePaging();
|
|
@@ -18646,10 +18646,10 @@
|
|
|
18646
18646
|
this.utilityService.stopBlockUI();
|
|
18647
18647
|
};
|
|
18648
18648
|
UsersComponent.prototype.resetFilters = function () {
|
|
18649
|
-
this.UsersForm.controls["permissionsets"].setValue(
|
|
18650
|
-
this.UsersForm.controls["accountstatus"].setValue(
|
|
18651
|
-
this.UsersForm.controls["lockedstatus"].setValue(
|
|
18652
|
-
this.UsersForm.controls["departments"].setValue(
|
|
18649
|
+
this.UsersForm.controls["permissionsets"].setValue(null);
|
|
18650
|
+
this.UsersForm.controls["accountstatus"].setValue(null);
|
|
18651
|
+
this.UsersForm.controls["lockedstatus"].setValue(null);
|
|
18652
|
+
this.UsersForm.controls["departments"].setValue(null);
|
|
18653
18653
|
this.UsersForm.controls["searchTextBox"].setValue(null);
|
|
18654
18654
|
var element = this.pagingElement;
|
|
18655
18655
|
element.ReinitializePaging();
|
|
@@ -22507,10 +22507,10 @@
|
|
|
22507
22507
|
this.utilityService.stopBlockUI();
|
|
22508
22508
|
};
|
|
22509
22509
|
UsersComponent.prototype.resetFilters = function () {
|
|
22510
|
-
this.UsersForm.controls["permissionsets"].setValue(
|
|
22511
|
-
this.UsersForm.controls["accountstatus"].setValue(
|
|
22512
|
-
this.UsersForm.controls["lockedstatus"].setValue(
|
|
22513
|
-
this.UsersForm.controls["departments"].setValue(
|
|
22510
|
+
this.UsersForm.controls["permissionsets"].setValue(null);
|
|
22511
|
+
this.UsersForm.controls["accountstatus"].setValue(null);
|
|
22512
|
+
this.UsersForm.controls["lockedstatus"].setValue(null);
|
|
22513
|
+
this.UsersForm.controls["departments"].setValue(null);
|
|
22514
22514
|
this.UsersForm.controls["searchTextBox"].setValue(null);
|
|
22515
22515
|
var element = this.pagingElement;
|
|
22516
22516
|
element.ReinitializePaging();
|
|
@@ -23930,7 +23930,7 @@
|
|
|
23930
23930
|
this.filteredLocalizationPagingResult = this.localizationPagingResult;
|
|
23931
23931
|
};
|
|
23932
23932
|
LocalizationsComponent.prototype.resetFilters = function () {
|
|
23933
|
-
this.localizationForm.controls["ResourceSet"].setValue(
|
|
23933
|
+
this.localizationForm.controls["ResourceSet"].setValue(null);
|
|
23934
23934
|
this.localizationForm.controls["searchTextBox"].setValue(null);
|
|
23935
23935
|
var element = this.pagingElement;
|
|
23936
23936
|
element.ReinitializePaging();
|
|
@@ -26576,8 +26576,8 @@
|
|
|
26576
26576
|
this.utilityService.stopBlockUI();
|
|
26577
26577
|
};
|
|
26578
26578
|
TemplatesComponent.prototype.resetFilters = function () {
|
|
26579
|
-
this.TemplateForm.controls["Category"].setValue(
|
|
26580
|
-
this.TemplateForm.controls["Type"].setValue(
|
|
26579
|
+
this.TemplateForm.controls["Category"].setValue(null);
|
|
26580
|
+
this.TemplateForm.controls["Type"].setValue(null);
|
|
26581
26581
|
this.TemplateForm.controls["searchTextBox"].setValue(null);
|
|
26582
26582
|
var element = this.pagingElement;
|
|
26583
26583
|
element.ReinitializePaging();
|
|
@@ -27890,7 +27890,7 @@
|
|
|
27890
27890
|
};
|
|
27891
27891
|
//Filter functions
|
|
27892
27892
|
LookupComponent.prototype.resetFilters = function () {
|
|
27893
|
-
this.lookupForm.controls["Type"].setValue(
|
|
27893
|
+
this.lookupForm.controls["Type"].setValue(null);
|
|
27894
27894
|
this.lookupForm.controls["searchTextBox"].setValue(null);
|
|
27895
27895
|
var element = this.pagingElement;
|
|
27896
27896
|
element.ReinitializePaging();
|
|
@@ -37420,8 +37420,8 @@
|
|
|
37420
37420
|
this.utilityService.stopBlockUI();
|
|
37421
37421
|
};
|
|
37422
37422
|
ProviderComponent.prototype.resetFilters = function () {
|
|
37423
|
-
this.ProviderForm.controls["providerTypesFilterOption"].setValue(
|
|
37424
|
-
this.ProviderForm.controls["sortingFilterOption"].setValue(
|
|
37423
|
+
this.ProviderForm.controls["providerTypesFilterOption"].setValue(null);
|
|
37424
|
+
this.ProviderForm.controls["sortingFilterOption"].setValue(null);
|
|
37425
37425
|
this.ProviderForm.controls["searchTextBox"].setValue(null);
|
|
37426
37426
|
var element = this.pagingElement;
|
|
37427
37427
|
element.ReinitializePaging();
|