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.
- package/apps/ServiceWorker.mjs +2 -2
- package/apps/portal/view/home/parts/Colors.mjs +1 -0
- package/apps/portal/view/home/parts/Features.mjs +56 -8
- package/apps/portal/view/home/parts/Helix.mjs +1 -0
- package/apps/portal/view/home/parts/How.mjs +1 -0
- package/examples/ServiceWorker.mjs +2 -2
- package/package.json +1 -1
- package/resources/scss/src/apps/portal/home/ContentBox.scss +4 -1
- package/resources/scss/src/apps/portal/home/parts/BaseContainer.scss +7 -0
- package/resources/scss/src/apps/portal/home/parts/Features.scss +3 -1
- package/resources/scss/src/apps/portal/learn/PageContainer.scss +6 -0
- package/src/DefaultConfig.mjs +2 -2
package/apps/ServiceWorker.mjs
CHANGED
@@ -25,23 +25,71 @@ class Features extends BaseContainer {
|
|
25
25
|
*/
|
26
26
|
items: [{
|
27
27
|
module: ContentBox,
|
28
|
-
header: '
|
28
|
+
header: 'Multi-Window Apps',
|
29
29
|
route : '#/learn/WhyNeo-Quick',
|
30
30
|
|
31
31
|
content: [
|
32
|
-
'
|
33
|
-
'
|
34
|
-
'
|
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: '
|
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
|
-
'
|
43
|
-
'
|
44
|
-
'
|
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
|
}
|
package/package.json
CHANGED
@@ -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
|
}
|
package/src/DefaultConfig.mjs
CHANGED
@@ -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.
|
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.
|
268
|
+
version: '6.19.4'
|
269
269
|
};
|
270
270
|
|
271
271
|
Object.assign(DefaultConfig, {
|