@lynx-js/web-core-server-canary 0.19.4 → 0.19.5-canary-20260107-b41d54ae
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 -9
- package/dist/131.js +1389 -0
- package/dist/27.js +5 -7
- package/dist/index.js +1 -1505
- package/dist/legacy-wasm-chunk.js +3 -6
- package/dist/rslib-runtime.js +155 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @lynx-js/web-core-server
|
|
2
2
|
|
|
3
|
+
## 0.19.5-canary-20260107110030-b41d54aead52f891fcd04b7dad57f7ddf400e5d9
|
|
4
|
+
|
|
3
5
|
## 0.19.4
|
|
4
6
|
|
|
5
7
|
## 0.19.3
|
|
@@ -141,25 +143,25 @@
|
|
|
141
143
|
lynxView.initI18nResources = [
|
|
142
144
|
{
|
|
143
145
|
options: {
|
|
144
|
-
locale:
|
|
145
|
-
channel:
|
|
146
|
-
fallback_url:
|
|
146
|
+
locale: "en",
|
|
147
|
+
channel: "1",
|
|
148
|
+
fallback_url: "",
|
|
147
149
|
},
|
|
148
150
|
resource: {
|
|
149
|
-
hello:
|
|
150
|
-
lynx:
|
|
151
|
+
hello: "hello",
|
|
152
|
+
lynx: "lynx web platform1",
|
|
151
153
|
},
|
|
152
154
|
},
|
|
153
155
|
];
|
|
154
|
-
lynxView.addEventListener(
|
|
156
|
+
lynxView.addEventListener("i18nResourceMissed", (e) => {
|
|
155
157
|
console.log(e);
|
|
156
158
|
});
|
|
157
159
|
|
|
158
160
|
// mts
|
|
159
161
|
_I18nResourceTranslation({
|
|
160
|
-
locale:
|
|
161
|
-
channel:
|
|
162
|
-
fallback_url:
|
|
162
|
+
locale: "en",
|
|
163
|
+
channel: "1",
|
|
164
|
+
fallback_url: "",
|
|
163
165
|
});
|
|
164
166
|
```
|
|
165
167
|
|