neo.mjs 6.19.3 → 6.19.4

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.19.3'
23
+ * @member {String} version='6.19.4'
24
24
  */
25
- version: '6.19.3'
25
+ version: '6.19.4'
26
26
  }
27
27
 
28
28
  /**
@@ -24,6 +24,7 @@ class Colors extends BaseContainer {
24
24
  */
25
25
  items: [{
26
26
  ntype : 'container',
27
+ cls : ['portal-content-text'],
27
28
  flex : '1',
28
29
  style : {padding: '2rem'},
29
30
  layout: {ntype: 'vbox', align: 'center', pack: 'center'},
@@ -25,23 +25,71 @@ class Features extends BaseContainer {
25
25
  */
26
26
  items: [{
27
27
  module: ContentBox,
28
- header: 'Next-Generation Runtime',
28
+ header: 'Multi-Window Apps',
29
29
  route : '#/learn/WhyNeo-Quick',
30
30
 
31
31
  content: [
32
- 'Multi-threaded',
33
- 'Elegant state management',
34
- 'Simple and powerful debugging'
32
+ 'No need for a Native Shell (e.g. Electron)',
33
+ 'Sharing Data across Windows',
34
+ 'Sharing State across Windows',
35
+ 'Moving Components across Windows while keeping the same JS instances'
35
36
  ]
36
37
  }, {
37
38
  module: ContentBox,
38
- header: 'Extreme Speed',
39
+ header: 'Multi-threading',
40
+ route : '#/learn/WhyNeo-Quick',
41
+
42
+ content: [
43
+ 'Following the OMT (Off the Main-Thread) paradigm',
44
+ 'Your Apps & the Framework live within an Application Worker',
45
+ 'Non-blocking, no-freeze, user interaction responses, even for heavy data i/o, processing, and intensive, complex screen updating',
46
+ 'Additional Workers for OffscreenCanvas, Data, Delta-Updates & Tasks',
47
+ 'A ServiceWorker connected to the App Worker for predictive Caching'
48
+ ]
49
+ }, {
50
+ module: ContentBox,
51
+ header: 'Modern JavaScript directly in your Browser',
52
+ route : '#/learn/WhyNeo-Quick',
53
+
54
+ content: [
55
+ 'The Dev-Mode runs without the need for Transpilations or Compilations',
56
+ 'Using the latest ECMAScript Features, as soon as the Browser Support is there',
57
+ 'Simple and powerful Debugging',
58
+ 'Reduced Development Costs'
59
+ ]
60
+ }, {
61
+ module: ContentBox,
62
+ header: 'Powerful Component-Library',
63
+ route : '#/learn/WhyNeo-Quick',
64
+
65
+ content: [
66
+ 'Declarative Component-Trees',
67
+ 'High Order Components',
68
+ 'Many out-of-the-box Components, including nested lazy-loaded forms',
69
+ 'Multiple themes, which can get nested'
70
+ ]
71
+ }, {
72
+ module: ContentBox,
73
+ header: 'Elegant State Management',
74
+ route : '#/learn/WhyNeo-Speed',
75
+
76
+ content: [
77
+ 'Multiple communicating State-Providers',
78
+ 'Observable',
79
+ 'Supporting different architectures like MVVM without enforcing them'
80
+ ]
81
+ }, {
82
+ module: ContentBox,
83
+ header: 'Core Features',
39
84
  route : '#/learn/WhyNeo-Speed',
40
85
 
41
86
  content: [
42
- 'Multi-threaded',
43
- 'Over 40,000 delta updates per second',
44
- 'Item 3'
87
+ 'RPC Layer (cross-realm, including Backends)',
88
+ 'Extensibility',
89
+ 'Scalability',
90
+ 'Class Config System',
91
+ 'Drag & Drop',
92
+ 'Mixins, Plugins & Main-Thread Addons'
45
93
  ]
46
94
  }]
47
95
  }
@@ -24,6 +24,7 @@ class Helix extends BaseContainer {
24
24
  */
25
25
  items: [{
26
26
  ntype : 'container',
27
+ cls : ['portal-content-text'],
27
28
  flex : '1',
28
29
  style : {padding: '2rem'},
29
30
  layout: {ntype: 'vbox', align: 'center', pack: 'center'},
@@ -23,6 +23,7 @@ class How extends BaseContainer {
23
23
  */
24
24
  items: [{
25
25
  ntype : 'container',
26
+ cls : ['portal-content-text'],
26
27
  flex : '1',
27
28
  style : {padding: '2rem'},
28
29
  layout: {ntype: 'vbox', align: 'center', pack: 'center'},
@@ -20,9 +20,9 @@ class ServiceWorker extends ServiceBase {
20
20
  */
21
21
  singleton: true,
22
22
  /**
23
- * @member {String} version='6.19.3'
23
+ * @member {String} version='6.19.4'
24
24
  */
25
- version: '6.19.3'
25
+ version: '6.19.4'
26
26
  }
27
27
 
28
28
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "6.19.3",
3
+ "version": "6.19.4",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -2,7 +2,6 @@
2
2
  border : 1px solid darkgray;
3
3
  cursor : pointer;
4
4
  color : #000;
5
- height : 200px;
6
5
  margin-top : 2em;
7
6
  padding : 0 1em 1em 1em;
8
7
  text-decoration: none;
@@ -23,4 +22,8 @@
23
22
  .portal-content-box-header {
24
23
 
25
24
  }
25
+
26
+ @media (max-width: 600px) {
27
+ margin-right: 0;
28
+ }
26
29
  }
@@ -53,4 +53,11 @@
53
53
  .page-live-preview {
54
54
  margin: 0;
55
55
  }
56
+
57
+ .portal-content-text {
58
+ @media (max-width: 600px) {
59
+ justify-content: start;
60
+ overflow-y : auto;
61
+ }
62
+ }
56
63
  }
@@ -1,3 +1,5 @@
1
1
  .portal-home-features {
2
- padding: 3em;
2
+ padding : 3em;
3
+ overflow-y : auto;
4
+ place-content: start;
3
5
  }
@@ -16,6 +16,12 @@
16
16
  .neo-button-text, .neo-button-glyph {
17
17
  padding-top: 16px;
18
18
  }
19
+
20
+ .neo-button-text {
21
+ overflow : hidden;
22
+ text-overflow: ellipsis;
23
+ word-break : break-word;
24
+ }
19
25
  }
20
26
 
21
27
  .content-bottom-toolbar-previous:before {
@@ -260,12 +260,12 @@ const DefaultConfig = {
260
260
  useVdomWorker: true,
261
261
  /**
262
262
  * buildScripts/injectPackageVersion.mjs will update this value
263
- * @default '6.19.3'
263
+ * @default '6.19.4'
264
264
  * @memberOf! module:Neo
265
265
  * @name config.version
266
266
  * @type String
267
267
  */
268
- version: '6.19.3'
268
+ version: '6.19.4'
269
269
  };
270
270
 
271
271
  Object.assign(DefaultConfig, {