@happeouikit/content-renderer 3.2.15 → 3.2.16
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.cjs.js +3 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +9 -8
- package/dist/index.es.js.map +1 -1
- package/package.json +3 -2
package/dist/index.es.js
CHANGED
|
@@ -2305,13 +2305,13 @@ const Wn = {
|
|
|
2305
2305
|
sub: [],
|
|
2306
2306
|
sup: [],
|
|
2307
2307
|
strong: [],
|
|
2308
|
-
table: ["width", "border", "
|
|
2309
|
-
tbody: ["align", "
|
|
2310
|
-
td: ["width", "rowspan", "colspan", "
|
|
2311
|
-
tfoot: ["align", "
|
|
2312
|
-
th: ["width", "rowspan", "colspan", "
|
|
2313
|
-
thead: ["align", "
|
|
2314
|
-
tr: ["rowspan", "
|
|
2308
|
+
table: ["width", "border", "style", "class"],
|
|
2309
|
+
tbody: ["align", "style", "class"],
|
|
2310
|
+
td: ["width", "rowspan", "colspan", "style", "class"],
|
|
2311
|
+
tfoot: ["align", "style", "class"],
|
|
2312
|
+
th: ["width", "rowspan", "colspan", "style", "class"],
|
|
2313
|
+
thead: ["align", "style", "class"],
|
|
2314
|
+
tr: ["rowspan", "style", "class"],
|
|
2315
2315
|
tt: [],
|
|
2316
2316
|
u: [],
|
|
2317
2317
|
ul: ["style", "class"],
|
|
@@ -5395,10 +5395,11 @@ const ni = ai(), ii = new RegExp(rt, "gi"), ui = new RegExp(
|
|
|
5395
5395
|
tr > td:first-child { border-left-width: 1px; }
|
|
5396
5396
|
tr > td:last-child { border-right-width: 1px; }
|
|
5397
5397
|
}
|
|
5398
|
+
&.no-borders > tbody > tr >, // (no-borders is the legacy class)
|
|
5398
5399
|
&.invisible-borders > tbody > tr > {
|
|
5399
5400
|
td:not(.fr-selected-cell) {
|
|
5400
5401
|
// keeping a transparent border so that selection doesn't push things by 1 pixel
|
|
5401
|
-
border:
|
|
5402
|
+
border: 0.5px dashed transparent;
|
|
5402
5403
|
}
|
|
5403
5404
|
}
|
|
5404
5405
|
&.alternating-rows > tbody > {
|