@proteinjs/server 3.4.1 → 3.5.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.
- package/CHANGELOG.md +11 -0
- package/dist/src/routes/reactApp.js +1 -1
- package/package.json +2 -2
- package/src/routes/reactApp.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.5.0](https://github.com/proteinjs/server/compare/@proteinjs/server@3.4.1...@proteinjs/server@3.5.0) (2026-08-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* white canvas — light meta theme-color tracks the new white ground ([537fc84](https://github.com/proteinjs/server/commit/537fc8486e981c13ccd1c82744ebd5cadfc97f3e)), closes [#202020](https://github.com/proteinjs/server/issues/202020)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.4.1](https://github.com/proteinjs/server/compare/@proteinjs/server@3.4.0...@proteinjs/server@3.4.1) (2026-08-15)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -48,7 +48,7 @@ var DevClientBuild_1 = require("../DevClientBuild");
|
|
|
48
48
|
// Browser-chrome ground colors mirrored from @n3xah/util-ui Theme.tsx getTheme()
|
|
49
49
|
// (lightPalette/darkPalette `background.default`) — proteinjs cannot import n3xah,
|
|
50
50
|
// so the hex values are hard-coded here and must track that file.
|
|
51
|
-
var THEME_COLOR_LIGHT = '#
|
|
51
|
+
var THEME_COLOR_LIGHT = '#FFFFFF';
|
|
52
52
|
var THEME_COLOR_DARK = '#202020';
|
|
53
53
|
var createReactApp = function (serverConfig) {
|
|
54
54
|
return {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proteinjs/server",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "A server impl",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
},
|
|
65
65
|
"main": "./dist/generated/index.js",
|
|
66
66
|
"types": "./dist/generated/index.d.ts",
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "bb60860dcd811c715d32281557cdaf2fa1753911"
|
|
68
68
|
}
|
package/src/routes/reactApp.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { DevClientBuild } from '../DevClientBuild';
|
|
|
7
7
|
// Browser-chrome ground colors mirrored from @n3xah/util-ui Theme.tsx getTheme()
|
|
8
8
|
// (lightPalette/darkPalette `background.default`) — proteinjs cannot import n3xah,
|
|
9
9
|
// so the hex values are hard-coded here and must track that file.
|
|
10
|
-
const THEME_COLOR_LIGHT = '#
|
|
10
|
+
const THEME_COLOR_LIGHT = '#FFFFFF';
|
|
11
11
|
const THEME_COLOR_DARK = '#202020';
|
|
12
12
|
|
|
13
13
|
export const createReactApp = (serverConfig: ServerConfig) => {
|