sykpcomposer 0.0.102 → 0.0.103
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/index.es.js +5 -0
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +5 -0
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -48520,6 +48520,7 @@ const JT = ({ styleConfig: g }) => {
|
|
|
48520
48520
|
font-weight: ${p ? p.bold ? "400" : "100" : ""};
|
|
48521
48521
|
font-style: ${p ? p.italic ? "italic" : "normal" : ""};
|
|
48522
48522
|
color: ${p ? p.fontColor : ""};
|
|
48523
|
+
text-align: ${p ? p.alignment : ""}
|
|
48523
48524
|
}
|
|
48524
48525
|
.PlaygroundEditorTheme__h2 {
|
|
48525
48526
|
font-size: ${t ? t.fontSize : ""}px;
|
|
@@ -48529,6 +48530,7 @@ const JT = ({ styleConfig: g }) => {
|
|
|
48529
48530
|
font-weight: ${t ? t.bold ? "400" : "100" : ""};
|
|
48530
48531
|
font-style: ${t ? t.italic ? "italic" : "normal" : ""};
|
|
48531
48532
|
color: ${t ? t.fontColor : ""};
|
|
48533
|
+
text-align: ${t ? t.alignment : ""}
|
|
48532
48534
|
}
|
|
48533
48535
|
|
|
48534
48536
|
.PlaygroundEditorTheme__h3 {
|
|
@@ -48539,6 +48541,7 @@ const JT = ({ styleConfig: g }) => {
|
|
|
48539
48541
|
font-weight: ${f ? f.bold ? "400" : "100" : ""};
|
|
48540
48542
|
font-style: ${f ? f.italic ? "italic" : "normal" : ""};
|
|
48541
48543
|
color: ${f ? f.fontColor : ""};
|
|
48544
|
+
text-align: ${f ? f.alignment : ""}
|
|
48542
48545
|
}
|
|
48543
48546
|
|
|
48544
48547
|
.PlaygroundEditorTheme__h4 {
|
|
@@ -48549,6 +48552,7 @@ const JT = ({ styleConfig: g }) => {
|
|
|
48549
48552
|
font-weight: ${r ? r.bold ? "400" : "100" : ""};
|
|
48550
48553
|
font-style: ${r ? r.italic ? "italic" : "normal" : ""};
|
|
48551
48554
|
color: ${r ? r.fontColor : ""};
|
|
48555
|
+
text-align: ${r ? r.alignment : ""}
|
|
48552
48556
|
}
|
|
48553
48557
|
|
|
48554
48558
|
.PlaygroundEditorTheme__h5 {
|
|
@@ -48559,6 +48563,7 @@ const JT = ({ styleConfig: g }) => {
|
|
|
48559
48563
|
font-weight: ${n ? n.bold ? "400" : "100" : ""};
|
|
48560
48564
|
font-style: ${n ? n.italic ? "italic" : "normal" : ""};
|
|
48561
48565
|
color: ${n ? n.fontColor : ""};
|
|
48566
|
+
text-align: ${n ? n.alignment : ""}
|
|
48562
48567
|
}
|
|
48563
48568
|
` }) });
|
|
48564
48569
|
}, VT = [Po, tu, ma, uf], zh = VC([...VT]);
|