@lynx-js/web-core-server-canary 0.18.4-canary-20251120-e2c78043 → 0.18.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/CHANGELOG.md +14 -10
- package/dist/27.js +1822 -0
- package/dist/index.js +424 -1931
- package/dist/legacy-wasm-chunk.js +30 -33
- package/dist/static/wasm/754c06ee.module.wasm +0 -0
- package/dist/static/wasm/7f8d0487.module.wasm +0 -0
- package/package.json +5 -5
- package/dist/static/wasm/13374bc7.module.wasm +0 -0
- package/dist/static/wasm/75dda358.module.wasm +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
# @lynx-js/web-core-server
|
|
2
2
|
|
|
3
|
-
## 0.18.4
|
|
3
|
+
## 0.18.4
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- feat: builtinTagTransformMap add `'x-input-ng': 'x-input'` ([#1932](https://github.com/lynx-family/lynx-stack/pull/1932))
|
|
8
8
|
|
|
9
|
+
- chore: minor bundle output change ([#1946](https://github.com/lynx-family/lynx-stack/pull/1946))
|
|
10
|
+
|
|
11
|
+
the timing of loading wasm chunk has been changed
|
|
12
|
+
|
|
9
13
|
## 0.18.3
|
|
10
14
|
|
|
11
15
|
## 0.18.2
|
|
@@ -127,25 +131,25 @@
|
|
|
127
131
|
lynxView.initI18nResources = [
|
|
128
132
|
{
|
|
129
133
|
options: {
|
|
130
|
-
locale:
|
|
131
|
-
channel:
|
|
132
|
-
fallback_url:
|
|
134
|
+
locale: 'en',
|
|
135
|
+
channel: '1',
|
|
136
|
+
fallback_url: '',
|
|
133
137
|
},
|
|
134
138
|
resource: {
|
|
135
|
-
hello:
|
|
136
|
-
lynx:
|
|
139
|
+
hello: 'hello',
|
|
140
|
+
lynx: 'lynx web platform1',
|
|
137
141
|
},
|
|
138
142
|
},
|
|
139
143
|
];
|
|
140
|
-
lynxView.addEventListener(
|
|
144
|
+
lynxView.addEventListener('i18nResourceMissed', (e) => {
|
|
141
145
|
console.log(e);
|
|
142
146
|
});
|
|
143
147
|
|
|
144
148
|
// mts
|
|
145
149
|
_I18nResourceTranslation({
|
|
146
|
-
locale:
|
|
147
|
-
channel:
|
|
148
|
-
fallback_url:
|
|
150
|
+
locale: 'en',
|
|
151
|
+
channel: '1',
|
|
152
|
+
fallback_url: '',
|
|
149
153
|
});
|
|
150
154
|
```
|
|
151
155
|
|