pagepilot-visual-editor 1.0.12 → 1.0.13
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/README.md +1 -1
- package/dist/editor-sample/App/InspectorDrawer/ConfigurationPanel/input-panels/MenuPickerSidebarPanel.d.ts +2 -0
- package/dist/editor-sample/App/InspectorDrawer/EditorBehavior.d.ts +2 -2
- package/dist/editor-sample/App/InspectorDrawer/VariablesPanel/repeatRowActions.d.ts +10 -1
- package/dist/editor-sample/documents/blocks/MenuPicker/MenuPropsSchema.d.ts +2 -0
- package/dist/editor-sample/documents/blocks/helpers/documentUtils.d.ts +12 -0
- package/dist/editor-sample/documents/blocks/helpers/responsiveStyle.d.ts +1 -1
- package/dist/editor-sample/documents/editor/core.d.ts +2 -0
- package/dist/email-builder-core/Reader/responsiveCss.d.ts +12 -0
- package/dist/email-builder-core/blocks/MenuPicker/MenuPropsSchema.d.ts +4 -0
- package/dist/index.cjs +241 -237
- package/dist/index.js +21267 -20707
- package/dist/render.cjs +107 -104
- package/dist/render.js +3733 -3506
- package/package.json +1 -1
- package/dist/editor-sample/documents/blocks/helpers/responsiveInstanceCss.d.ts +0 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pagepilot-visual-editor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "Standalone visual editor — drop <PagePilotEditor> into any React app and get Style/Layout/Inspect/Layers panels, drag-and-drop blocks, undo/redo, dirty-tracked save, multi-section pages, and light/dark themes",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { TResponsiveBlockData } from './responsiveStyle';
|
|
2
|
-
/**
|
|
3
|
-
* The <style>-tag body scoped to one block instance's wrapper id, or ''
|
|
4
|
-
* when the block has no responsive style overrides to emit.
|
|
5
|
-
*/
|
|
6
|
-
export declare function buildResponsiveInstanceCss(wrapperId: string, data: TResponsiveBlockData | null | undefined): string;
|