@aquiles-ai/renderize 1.6.0 → 1.7.0

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.cjs CHANGED
@@ -137,7 +137,7 @@ function Renderize({
137
137
  {
138
138
  srcDoc,
139
139
  title: "Renderize Sandbox",
140
- sandbox: "allow-scripts",
140
+ sandbox: "allow-scripts allow-forms allow-modals allow-popups allow-downloads",
141
141
  style: {
142
142
  width: "100%",
143
143
  height: "100%",
package/dist/index.js CHANGED
@@ -111,7 +111,7 @@ function Renderize({
111
111
  {
112
112
  srcDoc,
113
113
  title: "Renderize Sandbox",
114
- sandbox: "allow-scripts",
114
+ sandbox: "allow-scripts allow-forms allow-modals allow-popups allow-downloads",
115
115
  style: {
116
116
  width: "100%",
117
117
  height: "100%",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aquiles-ai/renderize",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "Drop-in sandbox component that executes AI-generated React code with zero configuration.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/src/Renderize.tsx CHANGED
@@ -61,7 +61,7 @@ export function Renderize({
61
61
  key={srcDoc}
62
62
  srcDoc={srcDoc}
63
63
  title="Renderize Sandbox"
64
- sandbox="allow-scripts"
64
+ sandbox="allow-scripts allow-forms allow-modals allow-popups allow-downloads"
65
65
  style={{
66
66
  width: "100%",
67
67
  height: "100%",