@bbn/bbn 1.0.154 → 1.0.155

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/env.d.ts CHANGED
@@ -12,6 +12,7 @@ declare const env: {
12
12
  focused: boolean;
13
13
  last_focus: number;
14
14
  sleep: boolean;
15
+ theme: string;
15
16
  /**
16
17
  * @var bbn.env.loaders Object where the props are MD5 of data and url while the values are the requests,
17
18
  * for preventing the same call to be made at the same time
package/dist/env.js CHANGED
@@ -21,6 +21,7 @@ var env = {
21
21
  last_focus: (new Date()).getTime(),
22
22
  /* Sleep mode (tab or window unfocused */
23
23
  sleep: false,
24
+ theme: 'dark',
24
25
  /**
25
26
  * @var bbn.env.loaders Object where the props are MD5 of data and url while the values are the requests,
26
27
  * for preventing the same call to be made at the same time
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbn/bbn",
3
- "version": "1.0.154",
3
+ "version": "1.0.155",
4
4
  "description": "Javascript toolkit",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",