easy-email-extensions 3.1.39 → 3.1.47
Sign up to get free protection for your applications and to get access to all the features.
- package/License +22 -0
- package/lib/BlockLayer/components/ContextMenu/index.d.ts +1 -1
- package/lib/BlockLayer/index.d.ts +5 -2
- package/lib/ShortcutToolbar/components/BlockMaskWrapper/index.d.ts +1 -1
- package/lib/ShortcutToolbar/components/BlocksPanel/presetTemplate/index.d.ts +1 -1
- package/lib/ShortcutToolbar/utils/BlockMarketManager.d.ts +1 -1
- package/lib/SimpleLayout/SimpleLayout.d.ts +2 -1
- package/lib/components/Form/enhancer.d.ts +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/index2.js +69 -35
- package/lib/index2.js.map +1 -1
- package/lib/utils/getBlockTitle.d.ts +2 -2
- package/package.json +5 -3
@@ -1,2 +1,2 @@
|
|
1
|
-
import { IBlockData } from '
|
2
|
-
export declare function getBlockTitle(blockData: IBlockData, isFromContent?: boolean): string
|
1
|
+
import { IBlockData } from 'easy-email-core';
|
2
|
+
export declare function getBlockTitle(blockData: IBlockData, isFromContent?: boolean): string;
|
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": "3.1.
|
5
|
+
"version": "3.1.47",
|
6
6
|
"author": "m-Ryan",
|
7
7
|
"repository": {
|
8
8
|
"type": "git",
|
@@ -18,7 +18,7 @@
|
|
18
18
|
"types": "lib/index.d.ts",
|
19
19
|
"scripts": {
|
20
20
|
"dev": "vite",
|
21
|
-
"typings": "tsc --declaration --emitDeclarationOnly --project tsconfig.lib.json && tsc-alias -p tsconfig.
|
21
|
+
"typings": "tsc --declaration --emitDeclarationOnly --project tsconfig.lib.json && tsc-alias -p tsconfig.alias.json",
|
22
22
|
"build": "rimraf lib && npm run typings && vite build --config vite.config.ts",
|
23
23
|
"format": "eslint --fix --ext .tsx,.ts src/"
|
24
24
|
},
|
@@ -63,6 +63,8 @@
|
|
63
63
|
},
|
64
64
|
"dependencies": {
|
65
65
|
"@arco-design/web-react": "^2.25.1",
|
66
|
+
"@types/react-color": "^3.0.6",
|
67
|
+
"@types/uuid": "^8.3.4",
|
66
68
|
"codemirror": "^5.63.3",
|
67
69
|
"final-form": "^4.20.4",
|
68
70
|
"final-form-arrays": "^3.0.2",
|
@@ -82,5 +84,5 @@
|
|
82
84
|
"react-dom": "^17.0.2",
|
83
85
|
"react-final-form": "^6.5.7"
|
84
86
|
},
|
85
|
-
"gitHead": "
|
87
|
+
"gitHead": "a840dbc7214c7d32469f6b098ff8b495a9c441f1"
|
86
88
|
}
|