neo.mjs 9.10.3 → 9.10.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/ServiceWorker.mjs
CHANGED
package/apps/portal/index.html
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
<title>Neo.mjs</title>
|
7
|
-
<meta name="description" content="Neo.mjs
|
7
|
+
<meta name="description" content="Solve your toughest UI performance challenges with Neo.mjs: a multi-threaded JavaScript framework for extreme real-time web applications, complex dashboards, and unmatched developer productivity.">
|
8
8
|
<meta name="robots" content="index, follow">
|
9
9
|
<script type="application/ld+json">
|
10
10
|
{
|
@@ -16,7 +16,7 @@
|
|
16
16
|
"@type": "Organization",
|
17
17
|
"name": "Neo.mjs"
|
18
18
|
},
|
19
|
-
"datePublished": "2025-06-
|
19
|
+
"datePublished": "2025-06-06",
|
20
20
|
"publisher": {
|
21
21
|
"@type": "Organization",
|
22
22
|
"name": "Neo.mjs"
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name" : "neo.mjs",
|
3
|
-
"version" : "9.10.
|
3
|
+
"version" : "9.10.4",
|
4
4
|
"description" : "The webworkers driven UI framework",
|
5
5
|
"type" : "module",
|
6
6
|
"repository" : {
|
@@ -66,11 +66,11 @@
|
|
66
66
|
"postcss" : "^8.5.4",
|
67
67
|
"sass" : "^1.89.1",
|
68
68
|
"siesta-lite" : "5.5.2",
|
69
|
-
"terser" : "^5.
|
69
|
+
"terser" : "^5.41.0",
|
70
70
|
"url" : "^0.11.4",
|
71
71
|
"webpack" : "^5.99.9",
|
72
72
|
"webpack-cli" : "^6.0.1",
|
73
|
-
"webpack-dev-server" : "^5.2.
|
73
|
+
"webpack-dev-server" : "^5.2.2",
|
74
74
|
"webpack-hook-plugin" : "^1.0.7",
|
75
75
|
"webpack-node-externals" : "^3.0.0"
|
76
76
|
},
|
package/src/DefaultConfig.mjs
CHANGED
@@ -264,12 +264,12 @@ const DefaultConfig = {
|
|
264
264
|
useVdomWorker: true,
|
265
265
|
/**
|
266
266
|
* buildScripts/injectPackageVersion.mjs will update this value
|
267
|
-
* @default '9.10.
|
267
|
+
* @default '9.10.4'
|
268
268
|
* @memberOf! module:Neo
|
269
269
|
* @name config.version
|
270
270
|
* @type String
|
271
271
|
*/
|
272
|
-
version: '9.10.
|
272
|
+
version: '9.10.4'
|
273
273
|
};
|
274
274
|
|
275
275
|
Object.assign(DefaultConfig, {
|
@@ -57,12 +57,12 @@ class AnimatedCurrency extends AnimatedChange {
|
|
57
57
|
* @param {Number|String} data.value
|
58
58
|
* @returns {*}
|
59
59
|
*/
|
60
|
-
cellRenderer({value}) {
|
60
|
+
cellRenderer({column, value}) {
|
61
61
|
if (value === null || value === undefined) {
|
62
62
|
return ''
|
63
63
|
}
|
64
64
|
|
65
|
-
return
|
65
|
+
return column.formatter.format(value)
|
66
66
|
}
|
67
67
|
|
68
68
|
/**
|