Skip to content

Commit f6e601c

Browse files
committed
v10.5.3
1 parent 61f3742 commit f6e601c

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

.github/RELEASE_NOTES/v10.5.3.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Neo.mjs v10.5.3 Release Notes
2+
3+
## Bug Fixes
4+
5+
- **grid.Container**: Corrected the calculation for the `aria-rowcount` attribute. The count was previously `store.count + 2`, and has been adjusted to `store.count + 1` to accurately reflect the number of data rows plus the single header row, improving accessibility for screen readers.

ServiceWorker.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class ServiceWorker extends ServiceBase {
2020
*/
2121
singleton: true,
2222
/**
23-
* @member {String} version='10.5.2'
23+
* @member {String} version='10.5.3'
2424
*/
25-
version: '10.5.2'
25+
version: '10.5.3'
2626
}
2727

2828
/**

apps/portal/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@type": "Organization",
1717
"name": "Neo.mjs"
1818
},
19-
"datePublished": "2025-08-14",
19+
"datePublished": "2025-08-15",
2020
"publisher": {
2121
"@type": "Organization",
2222
"name": "Neo.mjs"

apps/portal/view/home/FooterContainer.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class FooterContainer extends Container {
108108
}, {
109109
module: Component,
110110
cls : ['neo-version'],
111-
text : 'v10.5.2'
111+
text : 'v10.5.3'
112112
}]
113113
}],
114114
/**

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neo.mjs",
3-
"version": "10.5.2",
3+
"version": "10.5.3",
44
"description": "Neo.mjs: The multi-threaded UI framework for building ultra-fast, desktop-like web applications with uncompromised responsiveness, inherent security, and a transpilation-free dev mode.",
55
"type": "module",
66
"repository": {

src/DefaultConfig.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,12 +299,12 @@ const DefaultConfig = {
299299
useVdomWorker: true,
300300
/**
301301
* buildScripts/injectPackageVersion.mjs will update this value
302-
* @default '10.5.2'
302+
* @default '10.5.3'
303303
* @memberOf! module:Neo
304304
* @name config.version
305305
* @type String
306306
*/
307-
version: '10.5.2'
307+
version: '10.5.3'
308308
};
309309

310310
Object.assign(DefaultConfig, {

0 commit comments

Comments
 (0)