@lynx-js/web-core-server-canary 0.15.6-canary-20250812-a77b840b → 0.15.6-canary-20250812-b8b060b9
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 +1 -1
- package/dist/index.js +5 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1742,7 +1742,10 @@ function createMainThreadGlobalThis(config) {
|
|
|
1742
1742
|
__SetID(element, data.id);
|
|
1743
1743
|
data.class && __SetClasses(element, data.class.join(' '));
|
|
1744
1744
|
for (const [key, value] of Object.entries(data.attributes || {}))__SetAttribute(element, key, value);
|
|
1745
|
-
for (const [key, value] of Object.entries(data.builtinAttributes || {}))
|
|
1745
|
+
for (const [key, value] of Object.entries(data.builtinAttributes || {})){
|
|
1746
|
+
if ('dirtyID' === key && value === data.id) __MarkPartElement(element, value);
|
|
1747
|
+
__SetAttribute(element, key, value);
|
|
1748
|
+
}
|
|
1746
1749
|
for (const childData of data.children || [])__AppendElement(element, createElementForElementTemplateData(childData, parentComponentUniId));
|
|
1747
1750
|
return element;
|
|
1748
1751
|
};
|
|
@@ -1779,6 +1782,7 @@ function createMainThreadGlobalThis(config) {
|
|
|
1779
1782
|
const element = clonedElements[ii];
|
|
1780
1783
|
if (data && element) applyEventsForElementTemplate(data, element);
|
|
1781
1784
|
}
|
|
1785
|
+
clonedElements.forEach(__MarkTemplateElement);
|
|
1782
1786
|
return clonedElements;
|
|
1783
1787
|
}
|
|
1784
1788
|
return [];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/web-core-server-canary",
|
|
3
|
-
"version": "0.15.6-canary-20250812-
|
|
3
|
+
"version": "0.15.6-canary-20250812-b8b060b9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [],
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
],
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@lynx-js/offscreen-document": "npm:@lynx-js/offscreen-document-canary@0.1.3",
|
|
27
|
-
"@lynx-js/web-constants": "npm:@lynx-js/web-constants-canary@0.15.6-canary-20250812-a77b840b",
|
|
28
27
|
"@lynx-js/web-elements-template": "npm:@lynx-js/web-elements-template-canary@0.8.4",
|
|
29
|
-
"@lynx-js/web-mainthread-apis": "npm:@lynx-js/web-mainthread-apis-canary@0.15.6-canary-20250812-
|
|
30
|
-
"@lynx-js/web-worker-rpc": "npm:@lynx-js/web-worker-rpc-canary@0.15.6-canary-20250812-
|
|
28
|
+
"@lynx-js/web-mainthread-apis": "npm:@lynx-js/web-mainthread-apis-canary@0.15.6-canary-20250812-b8b060b9",
|
|
29
|
+
"@lynx-js/web-worker-rpc": "npm:@lynx-js/web-worker-rpc-canary@0.15.6-canary-20250812-b8b060b9",
|
|
30
|
+
"@lynx-js/web-constants": "npm:@lynx-js/web-constants-canary@0.15.6-canary-20250812-b8b060b9"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "rslib build",
|