@bbn/bbn 1.0.357 → 1.0.358

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/dist/fn/init.js CHANGED
@@ -89,7 +89,7 @@ export default function init(cfg, force) {
89
89
  addColors(bbn.var.colors);
90
90
  }
91
91
  if (bbn.env.lang && undefined !== dayjs) {
92
- import('dayjs/locale/fr.js').then(function () {
92
+ import('dayjs/locale/' + bbn.env.lang + '.js').then(function () {
93
93
  dayjs.locale(bbn.env.lang);
94
94
  });
95
95
  }
@@ -102,7 +102,6 @@ export default function init(cfg, force) {
102
102
  }
103
103
  });
104
104
  document.addEventListener("focusin", function (e) {
105
- bbn.fn.log("FOCUS IN", e);
106
105
  if (e.target instanceof HTMLElement &&
107
106
  !e.target.classList.contains("bbn-no")) {
108
107
  bbn.env.focused = e.target;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "1.0.357",
3
+ "version": "1.0.358",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",