@shival99/z-ui 1.4.14 → 1.4.15
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.
|
@@ -3450,6 +3450,12 @@ class ZTableComponent {
|
|
|
3450
3450
|
}
|
|
3451
3451
|
if (!cacheLoaded) {
|
|
3452
3452
|
this.showHeaderFooterShadow.set(cfg.showHeaderShadow ?? cfg.showFooterShadow ?? true);
|
|
3453
|
+
if (typeof cfg.showHorizontalBorder === 'boolean') {
|
|
3454
|
+
this.showHorizontalBorder.set(cfg.showHorizontalBorder);
|
|
3455
|
+
}
|
|
3456
|
+
if (typeof cfg.showVerticalBorder === 'boolean') {
|
|
3457
|
+
this.showVerticalBorder.set(cfg.showVerticalBorder);
|
|
3458
|
+
}
|
|
3453
3459
|
}
|
|
3454
3460
|
const cols = cfg.columns ?? [];
|
|
3455
3461
|
const leftPinned = [...(initial?.columnPinning?.left ?? [])];
|