@lynx-js/web-mainthread-apis-canary 0.19.1-canary-20251212-9c715ffe → 0.19.1
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 -11
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# @lynx-js/web-mainthread-apis
|
|
2
2
|
|
|
3
|
-
## 0.19.1
|
|
3
|
+
## 0.19.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- fix: fix reload lynx-view when `enableCSSSelector` false may cause css style lost ([#1982](https://github.com/lynx-family/lynx-stack/pull/1982))
|
|
8
8
|
|
|
9
9
|
- Updated dependencies []:
|
|
10
|
-
- @lynx-js/web-constants@0.19.1
|
|
10
|
+
- @lynx-js/web-constants@0.19.1
|
|
11
11
|
|
|
12
12
|
## 0.19.0
|
|
13
13
|
|
|
@@ -323,25 +323,25 @@
|
|
|
323
323
|
lynxView.initI18nResources = [
|
|
324
324
|
{
|
|
325
325
|
options: {
|
|
326
|
-
locale:
|
|
327
|
-
channel:
|
|
328
|
-
fallback_url:
|
|
326
|
+
locale: 'en',
|
|
327
|
+
channel: '1',
|
|
328
|
+
fallback_url: '',
|
|
329
329
|
},
|
|
330
330
|
resource: {
|
|
331
|
-
hello:
|
|
332
|
-
lynx:
|
|
331
|
+
hello: 'hello',
|
|
332
|
+
lynx: 'lynx web platform1',
|
|
333
333
|
},
|
|
334
334
|
},
|
|
335
335
|
];
|
|
336
|
-
lynxView.addEventListener(
|
|
336
|
+
lynxView.addEventListener('i18nResourceMissed', (e) => {
|
|
337
337
|
console.log(e);
|
|
338
338
|
});
|
|
339
339
|
|
|
340
340
|
// mts
|
|
341
341
|
_I18nResourceTranslation({
|
|
342
|
-
locale:
|
|
343
|
-
channel:
|
|
344
|
-
fallback_url:
|
|
342
|
+
locale: 'en',
|
|
343
|
+
channel: '1',
|
|
344
|
+
fallback_url: '',
|
|
345
345
|
});
|
|
346
346
|
```
|
|
347
347
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/web-mainthread-apis-canary",
|
|
3
|
-
"version": "0.19.1
|
|
3
|
+
"version": "0.19.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [],
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"**/*.css"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@lynx-js/web-constants": "npm:@lynx-js/web-constants-canary@0.19.1
|
|
29
|
+
"@lynx-js/web-constants": "npm:@lynx-js/web-constants-canary@0.19.1",
|
|
30
30
|
"hyphenate-style-name": "^1.1.0",
|
|
31
31
|
"wasm-feature-detect": "^1.8.0"
|
|
32
32
|
},
|