esender-email-editor 1.0.1 → 1.0.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/README.md +22 -6
- package/dist/index.cjs +46 -44
- package/dist/index.js +46 -44
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -11,17 +11,15 @@ A drag-and-drop **MJML email editor** for React 18 + Ant Design 5. The editor re
|
|
|
11
11
|
The package is published on the public **npm registry**.
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install esender-email-editor
|
|
14
|
+
npm install esender-email-editor
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
> `--legacy-peer-deps` is required because a transitive dep (`react-giphy-searchbox`) still declares a `react@16` peer range. The runtime works on React 18 — only the peer declaration is stale.
|
|
18
|
-
|
|
19
17
|
## Peer dependencies
|
|
20
18
|
|
|
21
19
|
The package externalizes its heavy runtime deps so the host app provides them. Install the tested versions:
|
|
22
20
|
|
|
23
21
|
```bash
|
|
24
|
-
npm install
|
|
22
|
+
npm install \
|
|
25
23
|
react@^18.3.1 react-dom@^18.3.1 \
|
|
26
24
|
antd@^5.25.1 @ant-design/icons@^5.6.1 @ant-design/pro-components@^2.8.7 \
|
|
27
25
|
@reduxjs/toolkit@^2.1.0 react-redux@^9.2.0 redux-persist@^6.0.0 \
|
|
@@ -250,6 +248,24 @@ bitbeast private limited
|
|
|
250
248
|
|
|
251
249
|
## License
|
|
252
250
|
|
|
253
|
-
MIT
|
|
251
|
+
MIT License
|
|
252
|
+
|
|
253
|
+
Copyright (c) 2026 Bitbeast Private Limited
|
|
254
|
+
|
|
255
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
256
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
257
|
+
in the Software without restriction, including without limitation the rights
|
|
258
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
259
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
260
|
+
furnished to do so, subject to the following conditions:
|
|
261
|
+
|
|
262
|
+
The above copyright notice and this permission notice shall be included in all
|
|
263
|
+
copies or substantial portions of the Software.
|
|
254
264
|
|
|
255
|
-
|
|
265
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
266
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
267
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
268
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
269
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
270
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
271
|
+
SOFTWARE.
|