@lynx-js/web-mainthread-apis-canary 0.18.0-canary-20251012-dd7c14a8 → 0.18.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 +12 -12
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @lynx-js/web-mainthread-apis
|
|
2
2
|
|
|
3
|
-
## 0.18.0
|
|
3
|
+
## 0.18.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
- feat: mouse event output structures remain aligned ([#1820](https://github.com/lynx-family/lynx-stack/pull/1820))
|
|
18
18
|
|
|
19
19
|
- Updated dependencies [[`77397fd`](https://github.com/lynx-family/lynx-stack/commit/77397fd535cf60556f8f82f7ef8dae8a623d1625)]:
|
|
20
|
-
- @lynx-js/web-constants@0.18.0
|
|
21
|
-
- @lynx-js/web-style-transformer@0.18.0
|
|
20
|
+
- @lynx-js/web-constants@0.18.0
|
|
21
|
+
- @lynx-js/web-style-transformer@0.18.0
|
|
22
22
|
|
|
23
23
|
## 0.17.2
|
|
24
24
|
|
|
@@ -264,25 +264,25 @@
|
|
|
264
264
|
lynxView.initI18nResources = [
|
|
265
265
|
{
|
|
266
266
|
options: {
|
|
267
|
-
locale:
|
|
268
|
-
channel:
|
|
269
|
-
fallback_url:
|
|
267
|
+
locale: 'en',
|
|
268
|
+
channel: '1',
|
|
269
|
+
fallback_url: '',
|
|
270
270
|
},
|
|
271
271
|
resource: {
|
|
272
|
-
hello:
|
|
273
|
-
lynx:
|
|
272
|
+
hello: 'hello',
|
|
273
|
+
lynx: 'lynx web platform1',
|
|
274
274
|
},
|
|
275
275
|
},
|
|
276
276
|
];
|
|
277
|
-
lynxView.addEventListener(
|
|
277
|
+
lynxView.addEventListener('i18nResourceMissed', (e) => {
|
|
278
278
|
console.log(e);
|
|
279
279
|
});
|
|
280
280
|
|
|
281
281
|
// mts
|
|
282
282
|
_I18nResourceTranslation({
|
|
283
|
-
locale:
|
|
284
|
-
channel:
|
|
285
|
-
fallback_url:
|
|
283
|
+
locale: 'en',
|
|
284
|
+
channel: '1',
|
|
285
|
+
fallback_url: '',
|
|
286
286
|
});
|
|
287
287
|
```
|
|
288
288
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/web-mainthread-apis-canary",
|
|
3
|
-
"version": "0.18.0
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [],
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"**/*.css"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@lynx-js/web-constants": "npm:@lynx-js/web-constants-canary@0.18.0
|
|
28
|
-
"@lynx-js/web-style-transformer": "npm:@lynx-js/web-style-transformer-canary@0.18.0
|
|
27
|
+
"@lynx-js/web-constants": "npm:@lynx-js/web-constants-canary@0.18.0",
|
|
28
|
+
"@lynx-js/web-style-transformer": "npm:@lynx-js/web-style-transformer-canary@0.18.0",
|
|
29
29
|
"hyphenate-style-name": "^1.1.0"
|
|
30
30
|
}
|
|
31
31
|
}
|