monto-email-builder 1.2.2 → 1.2.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/README.md +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/index.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/TextSidebarPanel.d.ts +2 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/TextSidebarPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/ColorInput/BaseColorInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontStyleInput.d.ts +8 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontStyleInput.d.ts.map +1 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/FontWeightInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LetterSpacingInput.d.ts +8 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LetterSpacingInput.d.ts.map +1 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LineHeightInput.d.ts +8 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/LineHeightInput.d.ts.map +1 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/RadioGroupInput.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextDecorationInput.d.ts +9 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextDecorationInput.d.ts.map +1 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextFormatGroup.d.ts +8 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/inputs/TextFormatGroup.d.ts.map +1 -0
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/MultiStylePropertyPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ConfigurationPanel/input-panels/helpers/style-inputs/SingleStylePropertyPanel.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/ToggleInspectorPanelButton.d.ts.map +1 -1
- package/dist/App/InspectorDrawer/index.d.ts.map +1 -1
- package/dist/App/SamplesDrawer/ToggleSamplesPanelButton.d.ts.map +1 -1
- package/dist/App/TemplatePanel/MainTabsGroup.d.ts.map +1 -1
- package/dist/App/TemplatePanel/index.d.ts.map +1 -1
- package/dist/EmailBuilder/index.d.ts +16 -0
- package/dist/EmailBuilder/index.d.ts.map +1 -1
- package/dist/HtmlEditor/index.d.ts.map +1 -1
- package/dist/chunks/{chunk-CxhtzHBZ.js → chunk-_7XTjFEi.js} +220 -80
- package/dist/documents/blocks/Text/TextEditor.d.ts.map +1 -1
- package/dist/documents/blocks/Text/TextEditorRich.d.ts +3 -0
- package/dist/documents/blocks/Text/TextEditorRich.d.ts.map +1 -0
- package/dist/documents/blocks/Text/textDom.d.ts +70 -0
- package/dist/documents/blocks/Text/textDom.d.ts.map +1 -0
- package/dist/documents/blocks/Text/variableCatalog.d.ts +23 -0
- package/dist/documents/blocks/Text/variableCatalog.d.ts.map +1 -0
- package/dist/documents/blocks/helpers/TStyle.d.ts +4 -0
- package/dist/documents/blocks/helpers/TStyle.d.ts.map +1 -1
- package/dist/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.d.ts.map +1 -1
- package/dist/documents/blocks/helpers/block-wrappers/TuneMenu.d.ts.map +1 -1
- package/dist/documents/editor/EditorContext.d.ts +85 -0
- package/dist/documents/editor/EditorContext.d.ts.map +1 -1
- package/dist/documents/editor/collectTemplateVariables.d.ts +51 -0
- package/dist/documents/editor/collectTemplateVariables.d.ts.map +1 -0
- package/dist/documents/editor/core.d.ts +717 -4
- package/dist/documents/editor/core.d.ts.map +1 -1
- package/dist/documents/editor/flushActiveTextEditorToDocument.d.ts +6 -0
- package/dist/documents/editor/flushActiveTextEditorToDocument.d.ts.map +1 -0
- package/dist/html-editor.js +144 -127
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5180 -2860
- package/package.json +16 -15
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monto-email-builder",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
4
4
|
"description": "A powerful and customizable email template builder React component library with visual editing, internationalization, and image upload support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"email",
|
|
7
7
|
"email-builder",
|
|
8
8
|
"email-template",
|
|
9
|
+
"email-editor",
|
|
9
10
|
"react",
|
|
10
11
|
"react-component",
|
|
11
12
|
"visual-editor",
|
|
@@ -60,19 +61,19 @@
|
|
|
60
61
|
"@codemirror/theme-one-dark": "^6.1.3",
|
|
61
62
|
"@uiw/codemirror-themes-all": "^4.25.4",
|
|
62
63
|
"@uiw/react-codemirror": "^4.25.4",
|
|
63
|
-
"monto-email-block-button": "0.0.
|
|
64
|
+
"monto-email-block-button": "0.0.4",
|
|
65
|
+
"monto-email-block-columns-container": "0.0.2",
|
|
64
66
|
"monto-email-block-container": "0.0.2",
|
|
65
67
|
"monto-email-block-divider": "0.0.1",
|
|
66
|
-
"monto-email-block-heading": "0.0.
|
|
67
|
-
"monto-email-block-image": "0.0.1",
|
|
68
|
-
"monto-email-block-spacer": "0.0.1",
|
|
69
|
-
"monto-email-block-text": "0.0.1",
|
|
70
|
-
"monto-email-document-core": "0.0.1",
|
|
68
|
+
"monto-email-block-heading": "0.0.2",
|
|
71
69
|
"monto-email-block-html": "0.0.1",
|
|
70
|
+
"monto-email-block-image": "0.0.1",
|
|
72
71
|
"monto-email-block-socials": "0.0.8",
|
|
72
|
+
"monto-email-block-spacer": "0.0.1",
|
|
73
|
+
"monto-email-block-text": "0.0.7",
|
|
73
74
|
"monto-email-block-video": "0.0.1",
|
|
74
|
-
"monto-email-
|
|
75
|
-
"monto-email-core": "0.
|
|
75
|
+
"monto-email-core": "0.1.8",
|
|
76
|
+
"monto-email-document-core": "0.0.1",
|
|
76
77
|
"react-colorful": "^5.6.1",
|
|
77
78
|
"zod": "^3.22.4",
|
|
78
79
|
"zustand": "^4.5.1"
|
|
@@ -85,13 +86,13 @@
|
|
|
85
86
|
"@types/node": "^25.0.3",
|
|
86
87
|
"@types/react": "^18.2.55",
|
|
87
88
|
"@types/react-dom": "^18.2.19",
|
|
88
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
89
|
-
"@typescript-eslint/parser": "^
|
|
89
|
+
"@typescript-eslint/eslint-plugin": "^8.59.0",
|
|
90
|
+
"@typescript-eslint/parser": "^8.59.0",
|
|
90
91
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
91
|
-
"eslint": "^
|
|
92
|
-
"eslint-plugin-react-hooks": "^
|
|
93
|
-
"eslint-plugin-react-refresh": "^0.
|
|
94
|
-
"eslint-plugin-simple-import-sort": "^
|
|
92
|
+
"eslint": "^9.39.4",
|
|
93
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
94
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
95
|
+
"eslint-plugin-simple-import-sort": "^13.0.0",
|
|
95
96
|
"react": "^18.2.0",
|
|
96
97
|
"react-dom": "^18.2.0",
|
|
97
98
|
"react-syntax-highlighter": "^16.1.0",
|