@lynx-js/web-mainthread-apis-canary 0.15.4-canary-20250801-22ca433e → 0.15.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 +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.15.4
|
|
3
|
+
## 0.15.4
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
If user's browser supported it, we load the wasm file with `reference types` on, otherwise we load the wasm file with `reference types` off.
|
|
24
24
|
|
|
25
25
|
- Updated dependencies [[`22ca433`](https://github.com/lynx-family/lynx-stack/commit/22ca433eb96b39724c6eb47ce0a938d291bbdef2)]:
|
|
26
|
-
- @lynx-js/web-constants@0.15.4
|
|
27
|
-
- @lynx-js/web-style-transformer@0.15.4
|
|
26
|
+
- @lynx-js/web-constants@0.15.4
|
|
27
|
+
- @lynx-js/web-style-transformer@0.15.4
|
|
28
28
|
|
|
29
29
|
## 0.15.3
|
|
30
30
|
|
|
@@ -134,25 +134,25 @@
|
|
|
134
134
|
lynxView.initI18nResources = [
|
|
135
135
|
{
|
|
136
136
|
options: {
|
|
137
|
-
locale:
|
|
138
|
-
channel:
|
|
139
|
-
fallback_url:
|
|
137
|
+
locale: 'en',
|
|
138
|
+
channel: '1',
|
|
139
|
+
fallback_url: '',
|
|
140
140
|
},
|
|
141
141
|
resource: {
|
|
142
|
-
hello:
|
|
143
|
-
lynx:
|
|
142
|
+
hello: 'hello',
|
|
143
|
+
lynx: 'lynx web platform1',
|
|
144
144
|
},
|
|
145
145
|
},
|
|
146
146
|
];
|
|
147
|
-
lynxView.addEventListener(
|
|
147
|
+
lynxView.addEventListener('i18nResourceMissed', (e) => {
|
|
148
148
|
console.log(e);
|
|
149
149
|
});
|
|
150
150
|
|
|
151
151
|
// mts
|
|
152
152
|
_I18nResourceTranslation({
|
|
153
|
-
locale:
|
|
154
|
-
channel:
|
|
155
|
-
fallback_url:
|
|
153
|
+
locale: 'en',
|
|
154
|
+
channel: '1',
|
|
155
|
+
fallback_url: '',
|
|
156
156
|
});
|
|
157
157
|
```
|
|
158
158
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/web-mainthread-apis-canary",
|
|
3
|
-
"version": "0.15.4
|
|
3
|
+
"version": "0.15.4",
|
|
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.15.4
|
|
28
|
-
"@lynx-js/web-style-transformer": "npm:@lynx-js/web-style-transformer-canary@0.15.4
|
|
27
|
+
"@lynx-js/web-constants": "npm:@lynx-js/web-constants-canary@0.15.4",
|
|
28
|
+
"@lynx-js/web-style-transformer": "npm:@lynx-js/web-style-transformer-canary@0.15.4",
|
|
29
29
|
"hyphenate-style-name": "^1.1.0"
|
|
30
30
|
}
|
|
31
31
|
}
|