easy-email-extensions 4.12.0 → 4.12.2
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/lib/AttributePanel/components/attributes/AttributesPanelWrapper/index.d.ts +1 -0
- package/lib/AttributePanel/components/attributes/CollapseWrapper/index.d.ts +1 -0
- package/lib/AttributePanel/components/provider/PresetColorsProvider/index.d.ts +3 -1
- package/lib/AttributePanel/components/provider/SelectionRangeProvider/index.d.ts +3 -1
- package/lib/ConfigurationPanel/index.d.ts +2 -1
- package/lib/EditPanel/ConfigurationDrawer/index.d.ts +2 -1
- package/lib/EditPanel/index.d.ts +2 -1
- package/lib/ShortcutToolbar/components/BlockMaskWrapper/index.d.ts +1 -0
- package/lib/ShortcutToolbar/components/BlocksPanel/index.d.ts +3 -1
- package/lib/SimpleLayout/SimpleLayout.d.ts +2 -0
- package/lib/SourceCodePanel/index.d.ts +3 -1
- package/lib/components/FullHeightOverlayScrollbars/index.d.ts +1 -0
- package/lib/components/Providers/ExtensionProvider.d.ts +2 -0
- package/lib/index2.js +48 -21
- package/lib/index2.js.map +1 -1
- package/package.json +8 -8
- package/readme.md +3 -1
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "easy-email-extensions",
|
3
3
|
"license": "MIT",
|
4
4
|
"description": "Email editor",
|
5
|
-
"version": "4.12.
|
5
|
+
"version": "4.12.2",
|
6
6
|
"author": "m-Ryan",
|
7
7
|
"repository": {
|
8
8
|
"type": "git",
|
@@ -43,9 +43,9 @@
|
|
43
43
|
"@types/jsdom": "^16.2.13",
|
44
44
|
"@types/lodash": "^4.14.178",
|
45
45
|
"@types/node": "^16.11.7",
|
46
|
-
"@types/react": "
|
46
|
+
"@types/react": "^18.2.2",
|
47
47
|
"@types/react-color": "^3.0.6",
|
48
|
-
"@types/react-dom": "^
|
48
|
+
"@types/react-dom": "^18.2.3",
|
49
49
|
"@types/uuid": "^8.3.4",
|
50
50
|
"@typescript-eslint/eslint-plugin": "^4.28.3",
|
51
51
|
"@typescript-eslint/parser": "^4.28.3",
|
@@ -63,8 +63,8 @@
|
|
63
63
|
"jsdom": "^17.0.0",
|
64
64
|
"lerna": "^4.0.0",
|
65
65
|
"less": "^4.1.2",
|
66
|
-
"react": "^
|
67
|
-
"react-dom": "^
|
66
|
+
"react": "^18.2.0",
|
67
|
+
"react-dom": "^18.2.0",
|
68
68
|
"react-final-form": "^6.5.7",
|
69
69
|
"rollup-plugin-visualizer": "^5.5.2",
|
70
70
|
"sass": "^1.43.4",
|
@@ -95,9 +95,9 @@
|
|
95
95
|
"peerDependencies": {
|
96
96
|
"easy-email-core": "^4.3.6",
|
97
97
|
"easy-email-editor": "^4.3.6",
|
98
|
-
"react": "^
|
99
|
-
"react-dom": "^
|
98
|
+
"react": "^18.2.0",
|
99
|
+
"react-dom": "^18.2.0",
|
100
100
|
"react-final-form": "^6.5.7"
|
101
101
|
},
|
102
|
-
"gitHead": "
|
102
|
+
"gitHead": "d0e7ad0fef25600ce7b9220c03fd393e0a66ece9"
|
103
103
|
}
|
package/readme.md
CHANGED
@@ -5,6 +5,7 @@
|
|
5
5
|
Provide default UI components, when they don’t meet your needs, you can refer to it and write your own.
|
6
6
|
|
7
7
|
It also provides the following utils:
|
8
|
+
|
8
9
|
- MjmlToJson
|
9
10
|
|
10
11
|
## usage
|
@@ -86,7 +87,7 @@ const categories: ExtensionProps['categories'] = [
|
|
86
87
|
},
|
87
88
|
{
|
88
89
|
title: '4 columns',
|
89
|
-
payload: [[
|
90
|
+
payload: [['25%', '25%', '25%', '25%']],
|
90
91
|
},
|
91
92
|
],
|
92
93
|
},
|
@@ -222,6 +223,7 @@ export default function App() {
|
|
222
223
|
|
223
224
|
- props
|
224
225
|
- showSourceCode
|
226
|
+
- mjmlReadOnly
|
225
227
|
- defaultShowLayer
|
226
228
|
|
227
229
|
- `StandardLayout`
|