@daisychainapp/maily-to-core 0.4.0 → 0.4.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/dist/extensions/index.cjs +52 -76
- package/dist/extensions/index.cjs.map +1 -1
- package/dist/extensions/index.mjs +51 -75
- package/dist/extensions/index.mjs.map +1 -1
- package/dist/index.cjs +701 -839
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +12 -19
- package/dist/index.css.map +1 -1
- package/dist/index.mjs +547 -685
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -10
- package/LICENSE +0 -21
package/dist/index.css
CHANGED
|
@@ -365,9 +365,6 @@
|
|
|
365
365
|
.mly\:mx-1\.5 {
|
|
366
366
|
margin-inline: calc(var(--mly-spacing) * 1.5);
|
|
367
367
|
}
|
|
368
|
-
.mly\:my-0 {
|
|
369
|
-
margin-block: calc(var(--mly-spacing) * 0);
|
|
370
|
-
}
|
|
371
368
|
.mly\:my-0\.5 {
|
|
372
369
|
margin-block: calc(var(--mly-spacing) * 0.5);
|
|
373
370
|
}
|
|
@@ -903,10 +900,6 @@
|
|
|
903
900
|
width: calc(var(--mly-spacing) * 5) !important;
|
|
904
901
|
height: calc(var(--mly-spacing) * 5) !important;
|
|
905
902
|
}
|
|
906
|
-
.mly\:size-6 {
|
|
907
|
-
width: calc(var(--mly-spacing) * 6);
|
|
908
|
-
height: calc(var(--mly-spacing) * 6);
|
|
909
|
-
}
|
|
910
903
|
.mly\:size-7 {
|
|
911
904
|
width: calc(var(--mly-spacing) * 7);
|
|
912
905
|
height: calc(var(--mly-spacing) * 7);
|
|
@@ -974,9 +967,6 @@
|
|
|
974
967
|
.mly\:min-h-24 {
|
|
975
968
|
min-height: calc(var(--mly-spacing) * 24);
|
|
976
969
|
}
|
|
977
|
-
.mly\:min-h-\[42px\] {
|
|
978
|
-
min-height: 42px;
|
|
979
|
-
}
|
|
980
970
|
.mly\:w-3 {
|
|
981
971
|
width: calc(var(--mly-spacing) * 3);
|
|
982
972
|
}
|
|
@@ -1524,9 +1514,6 @@
|
|
|
1524
1514
|
--mly-tw-tracking: var(--mly-tracking-widest);
|
|
1525
1515
|
letter-spacing: var(--mly-tracking-widest);
|
|
1526
1516
|
}
|
|
1527
|
-
.mly\:text-black {
|
|
1528
|
-
color: var(--mly-color-black);
|
|
1529
|
-
}
|
|
1530
1517
|
.mly\:text-gray-50 {
|
|
1531
1518
|
color: var(--mly-color-gray-50);
|
|
1532
1519
|
}
|
|
@@ -2047,6 +2034,16 @@
|
|
|
2047
2034
|
--mly-link-color: #111827;
|
|
2048
2035
|
}
|
|
2049
2036
|
#mly-editor {
|
|
2037
|
+
.mly-html-code-pre {
|
|
2038
|
+
margin-top: 24px !important;
|
|
2039
|
+
margin-bottom: 24px !important;
|
|
2040
|
+
border: 1px solid #e5e7eb !important;
|
|
2041
|
+
border-radius: 8px !important;
|
|
2042
|
+
background-color: #fff !important;
|
|
2043
|
+
padding: 8px !important;
|
|
2044
|
+
color: #000 !important;
|
|
2045
|
+
font-size: 14px !important;
|
|
2046
|
+
}
|
|
2050
2047
|
.mly-select-padding {
|
|
2051
2048
|
padding-left: 10px !important;
|
|
2052
2049
|
padding-right: 32px !important;
|
|
@@ -2216,17 +2213,13 @@
|
|
|
2216
2213
|
pointer-events: none;
|
|
2217
2214
|
height: 0;
|
|
2218
2215
|
}
|
|
2219
|
-
.is-empty:where(.node-htmlCodeBlock)
|
|
2220
|
-
.is-editor-empty:first-child:where(.node-htmlCodeBlock)
|
|
2216
|
+
.is-empty:where(.node-htmlCodeBlock)::before,
|
|
2217
|
+
.is-editor-empty:first-child:where(.node-htmlCodeBlock)::before {
|
|
2221
2218
|
float: none !important;
|
|
2222
2219
|
position: absolute;
|
|
2223
2220
|
left: 9px;
|
|
2224
2221
|
top: 8px;
|
|
2225
2222
|
}
|
|
2226
|
-
.is-empty:where(.node-htmlCodeBlock):not([data-active-tab=code])::before,
|
|
2227
|
-
.is-editor-empty:first-child:where(.node-htmlCodeBlock):not([data-active-tab=code])::before {
|
|
2228
|
-
content: "";
|
|
2229
|
-
}
|
|
2230
2223
|
[data-type=columns] .is-empty::before,
|
|
2231
2224
|
[data-type=section] .is-empty::before {
|
|
2232
2225
|
--l-threshold: 0.66;
|