neo.mjs 6.37.0 → 6.38.0

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.
@@ -20,9 +20,9 @@ class ServiceWorker extends ServiceBase {
20
20
  */
21
21
  singleton: true,
22
22
  /**
23
- * @member {String} version='6.37.0'
23
+ * @member {String} version='6.38.0'
24
24
  */
25
- version: '6.37.0'
25
+ version: '6.38.0'
26
26
  }
27
27
 
28
28
  /**
@@ -20,9 +20,9 @@ class ServiceWorker extends ServiceBase {
20
20
  */
21
21
  singleton: true,
22
22
  /**
23
- * @member {String} version='6.37.0'
23
+ * @member {String} version='6.38.0'
24
24
  */
25
- version: '6.37.0'
25
+ version: '6.38.0'
26
26
  }
27
27
 
28
28
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "6.37.0",
3
+ "version": "6.38.0",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -23,7 +23,9 @@ On its own, a Browser will just use ***one*** core per tab / window.
23
23
 
24
24
  Meaning: your Angular or React apps look like this:
25
25
 
26
- ![Current State of Apps](https://raw.githubusercontent.com/neomjs/pages/main/resources_pub/images/apps-today.png)
26
+ <p style="overflow-x: auto;">
27
+ <img alt="Current State of Apps" src="https://raw.githubusercontent.com/neomjs/pages/main/resources_pub/images/apps-today.png">
28
+ </p>
27
29
 
28
30
  The more JavaScript tasks are running inside your app, the slower it will get.
29
31
  The worst scenario is a complete UI freeze where your one core is at 100%
@@ -79,7 +81,9 @@ In case you are not familiar with what an "actor" means, definitely read it firs
79
81
  To resolve this performance bottleneck, we want to get main threads as idle as possible, so that they can fully focus on
80
82
  rendering / dynamically manipulating the DOM:
81
83
 
82
- ![App Worker Concept](https://raw.githubusercontent.com/neomjs/pages/main/resources_pub/images/app-worker.png)
84
+ <p style="overflow-x: auto;">
85
+ <img alt="App Worker Concept" src="https://raw.githubusercontent.com/neomjs/pages/main/resources_pub/images/app-worker.png">
86
+ </p>
83
87
 
84
88
  The worst case that could happen now is that your app worker will slow down and this core runs at 100%. However,
85
89
  this will not affect your UI (rendering thread → main).
@@ -9,7 +9,8 @@
9
9
  width : -webkit-fill-available;
10
10
 
11
11
  @media (max-width: 600px) {
12
- padding: 1rem 1rem 0;
12
+ overflow-x: hidden;
13
+ padding : 1rem 1rem 0;
13
14
  }
14
15
 
15
16
  a {
@@ -260,12 +260,12 @@ const DefaultConfig = {
260
260
  useVdomWorker: true,
261
261
  /**
262
262
  * buildScripts/injectPackageVersion.mjs will update this value
263
- * @default '6.37.0'
263
+ * @default '6.38.0'
264
264
  * @memberOf! module:Neo
265
265
  * @name config.version
266
266
  * @type String
267
267
  */
268
- version: '6.37.0'
268
+ version: '6.38.0'
269
269
  };
270
270
 
271
271
  Object.assign(DefaultConfig, {