@lynx-js/web-core-server-canary 0.19.4 → 0.19.5-canary-20260107-78c21890

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 CHANGED
@@ -1,5 +1,7 @@
1
1
  # @lynx-js/web-core-server
2
2
 
3
+ ## 0.19.5-canary-20260107061419-78c218907a5246a05acf3aa843b304778cdc4467
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: 'en',
145
- channel: '1',
146
- fallback_url: '',
146
+ locale: "en",
147
+ channel: "1",
148
+ fallback_url: "",
147
149
  },
148
150
  resource: {
149
- hello: 'hello',
150
- lynx: 'lynx web platform1',
151
+ hello: "hello",
152
+ lynx: "lynx web platform1",
151
153
  },
152
154
  },
153
155
  ];
154
- lynxView.addEventListener('i18nResourceMissed', (e) => {
156
+ lynxView.addEventListener("i18nResourceMissed", (e) => {
155
157
  console.log(e);
156
158
  });
157
159
 
158
160
  // mts
159
161
  _I18nResourceTranslation({
160
- locale: 'en',
161
- channel: '1',
162
- fallback_url: '',
162
+ locale: "en",
163
+ channel: "1",
164
+ fallback_url: "",
163
165
  });
164
166
  ```
165
167