easy-email-extensions 2.5.2-beta.1 → 2.6.0
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/InteractivePrompt/components/Toolbar.d.ts +2 -1
- package/lib/index2.js +158 -120
- package/lib/index2.js.map +1 -1
- package/lib/style.css +1 -1
- package/package.json +2 -2
- package/lib/InteractivePrompt/constants.d.ts +0 -15
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": "2.
|
5
|
+
"version": "2.6.0",
|
6
6
|
"author": "m-Ryan",
|
7
7
|
"repository": {
|
8
8
|
"type": "git",
|
@@ -75,5 +75,5 @@
|
|
75
75
|
"react-dom": "^17.0.2",
|
76
76
|
"react-final-form": "^6.5.7"
|
77
77
|
},
|
78
|
-
"gitHead": "
|
78
|
+
"gitHead": "35ac0fad9bb2419a23ac86ce476d149ab8d05b6a"
|
79
79
|
}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
export declare const DRAG_HOVER_CLASSNAME = "block-dragover";
|
2
|
-
export declare const BLOCK_SELECTED_CLASSNAME = "block-selected";
|
3
|
-
export declare const BLOCK_HOVER_CLASSNAME = "block-hover";
|
4
|
-
export declare const BLOCK_HIDDEN_CLASSNAME = "block-hidden";
|
5
|
-
export declare const styleZIndex: {
|
6
|
-
SELECT_INDEX: number;
|
7
|
-
HOVER_INDEX: number;
|
8
|
-
DRAG_INDEX: number;
|
9
|
-
SELECT_BLOCK_TOOLTIP: number;
|
10
|
-
HOVER_BLOCK_TOOLTIP: number;
|
11
|
-
DRAG_BLOCK_TOOLTIP: number;
|
12
|
-
SELECT_BLOCK_CHILD: number;
|
13
|
-
HOVER_BLOCK_CHILD: number;
|
14
|
-
DRAG_BLOCK_CHILD: number;
|
15
|
-
};
|