@bnsights/bbsf-admin-portal 1.0.43 → 1.0.44
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 +5 -0
- package/bnsights-bbsf-admin-portal-1.0.44.tgz +0 -0
- package/bundles/bnsights-bbsf-admin-portal.umd.js +2 -2
- package/bundles/bnsights-bbsf-admin-portal.umd.js.map +1 -1
- package/esm2015/lib/Pages/shared/stylesbundle.service.js +3 -3
- package/fesm2015/bnsights-bbsf-admin-portal.js +2 -2
- package/fesm2015/bnsights-bbsf-admin-portal.js.map +1 -1
- package/package.json +3 -3
- package/bnsights-bbsf-admin-portal-1.0.43.tgz +0 -0
package/README.md
CHANGED
|
@@ -6,6 +6,11 @@ For more info please visit [BBSF documentation](https://bnsightsprojects.visuals
|
|
|
6
6
|
|
|
7
7
|
# Change Log
|
|
8
8
|
|
|
9
|
+
## 1.0.44 / 4-8-2022
|
|
10
|
+
===================
|
|
11
|
+
* Update controls version
|
|
12
|
+
* Update utilities version
|
|
13
|
+
|
|
9
14
|
## 1.0.43 / 28-7-2022
|
|
10
15
|
===================
|
|
11
16
|
* Update controls version
|
|
Binary file
|
|
@@ -24752,12 +24752,12 @@
|
|
|
24752
24752
|
StylesBundleService.prototype.loadThemes = function (lang) {
|
|
24753
24753
|
if (lang == "ar") {
|
|
24754
24754
|
this.loadStyleBundle('BBSF-Bundle-RTL.css');
|
|
24755
|
-
document.querySelector('html').setAttribute("lang", "ar");
|
|
24755
|
+
document.querySelector('html').setAttribute("b-lang", "ar"); //use b-lang instead of lang to fix firefox number inputs in Arabic locale
|
|
24756
24756
|
document.querySelector('html').setAttribute("dir", "rtl");
|
|
24757
24757
|
}
|
|
24758
24758
|
else {
|
|
24759
24759
|
this.loadStyleBundle('BBSF-Bundle.css');
|
|
24760
|
-
document.querySelector('html').setAttribute("lang", "en");
|
|
24760
|
+
document.querySelector('html').setAttribute("b-lang", "en");
|
|
24761
24761
|
document.querySelector('html').setAttribute("dir", "ltr");
|
|
24762
24762
|
}
|
|
24763
24763
|
};
|