@jay-framework/aiditor 0.17.3 → 0.17.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/dist/index.client.js +1 -1
- package/package.json +6 -6
package/dist/index.client.js
CHANGED
|
@@ -7975,7 +7975,7 @@ function freezeTransientStyles(iframeEl) {
|
|
|
7975
7975
|
const seen = /* @__PURE__ */ new Set();
|
|
7976
7976
|
for (const pseudo of TRANSIENT_PSEUDOCLASSES) {
|
|
7977
7977
|
try {
|
|
7978
|
-
for (const el of doc.querySelectorAll(pseudo)) seen.add(el);
|
|
7978
|
+
for (const el of Array.from(doc.querySelectorAll(pseudo))) seen.add(el);
|
|
7979
7979
|
} catch {
|
|
7980
7980
|
}
|
|
7981
7981
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jay-framework/aiditor",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "AIditor — visual AI-driven code editor plugin for Jay Framework",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -42,16 +42,16 @@
|
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@anthropic-ai/claude-agent-sdk": "0.2.119",
|
|
45
|
-
"@jay-framework/fullstack-component": "^0.17.
|
|
46
|
-
"@jay-framework/stack-client-runtime": "^0.17.
|
|
47
|
-
"@jay-framework/stack-server-runtime": "^0.17.
|
|
45
|
+
"@jay-framework/fullstack-component": "^0.17.4",
|
|
46
|
+
"@jay-framework/stack-client-runtime": "^0.17.4",
|
|
47
|
+
"@jay-framework/stack-server-runtime": "^0.17.4",
|
|
48
48
|
"busboy": "^1.6.0",
|
|
49
49
|
"html2canvas": "^1.4.1",
|
|
50
50
|
"zod": "^4.3.6"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@jay-framework/compiler-jay-stack": "^0.17.
|
|
54
|
-
"@jay-framework/jay-cli": "^0.17.
|
|
53
|
+
"@jay-framework/compiler-jay-stack": "^0.17.4",
|
|
54
|
+
"@jay-framework/jay-cli": "^0.17.4",
|
|
55
55
|
"@types/busboy": "^1",
|
|
56
56
|
"rimraf": "^5.0.5",
|
|
57
57
|
"tsup": "^8.5.1",
|