@bnsights/bbsf-admin-portal 1.0.41 → 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 CHANGED
@@ -6,6 +6,20 @@ 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
+
14
+ ## 1.0.43 / 28-7-2022
15
+ ===================
16
+ * Update controls version
17
+ * Update utilities version
18
+
19
+ ## 1.0.42 / 24-7-2022
20
+ ===================
21
+ * Update controls version
22
+
9
23
  ## 1.0.41 / 5-7-2022
10
24
  ===================
11
25
  * Update controls version
@@ -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
  };