@accelerated-agency/visual-editor 0.5.3 → 0.5.5
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/images/cro-sections/cro-cta-block.png +0 -0
- package/dist/images/cro-sections/cro-exit-intent-bar.png +0 -0
- package/dist/images/cro-sections/cro-feature-grid.png +0 -0
- package/dist/images/cro-sections/cro-hero.png +0 -0
- package/dist/images/cro-sections/cro-pricing-table.png +0 -0
- package/dist/images/cro-sections/cro-social-proof.png +0 -0
- package/dist/images/cro-sections/cro-trust-badges.png +0 -0
- package/dist/images/cro-sections/cro-urgency-banner.png +0 -0
- package/dist/index.js +1 -1
- package/dist/vite.cjs +2047 -383
- package/dist/vite.js +2047 -383
- package/package.json +10 -2
- package/src/images/cro-sections/cro-cta-block.png +0 -0
- package/src/images/cro-sections/cro-exit-intent-bar.png +0 -0
- package/src/images/cro-sections/cro-feature-grid.png +0 -0
- package/src/images/cro-sections/cro-hero.png +0 -0
- package/src/images/cro-sections/cro-pricing-table.png +0 -0
- package/src/images/cro-sections/cro-social-proof.png +0 -0
- package/src/images/cro-sections/cro-trust-badges.png +0 -0
- package/src/images/cro-sections/cro-urgency-banner.png +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -5170,7 +5170,7 @@ function PlatformAiEditor({
|
|
|
5170
5170
|
};
|
|
5171
5171
|
}, []);
|
|
5172
5172
|
const viewportFitZoom = useMemo(() => {
|
|
5173
|
-
const available = iframePanelWidth ? Math.max(260, iframePanelWidth
|
|
5173
|
+
const available = iframePanelWidth ? Math.max(260, iframePanelWidth) : viewportWidth;
|
|
5174
5174
|
if (!viewportWidth || viewportWidth <= 0) return 1;
|
|
5175
5175
|
return Math.min(1, available / viewportWidth);
|
|
5176
5176
|
}, [viewportWidth, iframePanelWidth]);
|