react-tailwind-email-editor 0.0.16 → 0.0.18
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 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +157 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +157 -2
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +21 -0
- package/package.json +17 -8
package/dist/style.css
CHANGED
|
@@ -343,6 +343,24 @@ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-se
|
|
|
343
343
|
.z-\[100\] {
|
|
344
344
|
z-index: 100;
|
|
345
345
|
}
|
|
346
|
+
.container {
|
|
347
|
+
width: 100%;
|
|
348
|
+
@media (width >= 40rem) {
|
|
349
|
+
max-width: 40rem;
|
|
350
|
+
}
|
|
351
|
+
@media (width >= 48rem) {
|
|
352
|
+
max-width: 48rem;
|
|
353
|
+
}
|
|
354
|
+
@media (width >= 64rem) {
|
|
355
|
+
max-width: 64rem;
|
|
356
|
+
}
|
|
357
|
+
@media (width >= 80rem) {
|
|
358
|
+
max-width: 80rem;
|
|
359
|
+
}
|
|
360
|
+
@media (width >= 96rem) {
|
|
361
|
+
max-width: 96rem;
|
|
362
|
+
}
|
|
363
|
+
}
|
|
346
364
|
.-mx-1 {
|
|
347
365
|
margin-inline: calc(var(--spacing) * -1);
|
|
348
366
|
}
|
|
@@ -536,6 +554,9 @@ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-se
|
|
|
536
554
|
.min-h-\[80px\] {
|
|
537
555
|
min-height: 80px;
|
|
538
556
|
}
|
|
557
|
+
.min-h-\[200px\] {
|
|
558
|
+
min-height: 200px;
|
|
559
|
+
}
|
|
539
560
|
.min-h-svh {
|
|
540
561
|
min-height: 100svh;
|
|
541
562
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-tailwind-email-editor",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "A
|
|
3
|
+
"version": "0.0.18",
|
|
4
|
+
"description": "A drag-and-drop React email editor and builder with Tailwind CSS support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
@@ -111,12 +111,21 @@
|
|
|
111
111
|
"vitest": "^3.2.4"
|
|
112
112
|
},
|
|
113
113
|
"keywords": [
|
|
114
|
-
"
|
|
115
|
-
"email
|
|
116
|
-
"drag
|
|
117
|
-
"react
|
|
118
|
-
"
|
|
119
|
-
"
|
|
114
|
+
"email-editor",
|
|
115
|
+
"email-builder",
|
|
116
|
+
"drag-and-drop",
|
|
117
|
+
"react",
|
|
118
|
+
"email-template",
|
|
119
|
+
"newsletter",
|
|
120
|
+
"craftjs",
|
|
121
|
+
"tailwind",
|
|
122
|
+
"wysiwyg",
|
|
123
|
+
"email-designer",
|
|
124
|
+
"html-email",
|
|
125
|
+
"responsive-email",
|
|
126
|
+
"email-marketing",
|
|
127
|
+
"visual-editor",
|
|
128
|
+
"react-email"
|
|
120
129
|
],
|
|
121
130
|
"author": "hemanth-dev",
|
|
122
131
|
"license": "ISC"
|