release: WRNexusJS 0.2.33

This commit is contained in:
2026-07-14 23:13:46 +05:30
parent 959ed24009
commit 936488ac06
56 changed files with 174 additions and 96 deletions
+1 -1
View File
@@ -925,7 +925,7 @@ function behaviorAttribute(behavior: ComponentBehavior | null): string {
return "";
}
const encoded = encodeURIComponent(JSON.stringify(behavior));
const encoded = Buffer.from(JSON.stringify(behavior), "utf8").toString("base64");
return ` data-wrn-behavior="${encoded}"`;
}