@websy/websy-designs 1.4.18 → 1.4.19
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.
|
@@ -6352,7 +6352,7 @@ class WebsyTable3 {
|
|
|
6352
6352
|
style += col.style
|
|
6353
6353
|
}
|
|
6354
6354
|
headerHtml += `<td
|
|
6355
|
-
class='websy-table-cell'
|
|
6355
|
+
class='websy-table-cell ${colIndex < this.pinnedColumns ? 'pinned' : 'unpinned'}'
|
|
6356
6356
|
style='${style}'
|
|
6357
6357
|
colspan='${col.colspan || 1}'
|
|
6358
6358
|
rowspan='${col.rowspan || 1}'
|
package/dist/websy-designs.js
CHANGED
|
@@ -6930,7 +6930,7 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
6930
6930
|
style += col.style;
|
|
6931
6931
|
}
|
|
6932
6932
|
|
|
6933
|
-
headerHtml += "<td \n class='websy-table-cell' \n style='".concat(style, "' \n colspan='").concat(col.colspan || 1, "'\n rowspan='").concat(col.rowspan || 1, "'\n "); // if (useWidths === true && rowIndex === this.options.columns.length - 1) {
|
|
6933
|
+
headerHtml += "<td \n class='websy-table-cell ".concat(colIndex < _this41.pinnedColumns ? 'pinned' : 'unpinned', "' \n style='").concat(style, "' \n colspan='").concat(col.colspan || 1, "'\n rowspan='").concat(col.rowspan || 1, "'\n "); // if (useWidths === true && rowIndex === this.options.columns.length - 1) {
|
|
6934
6934
|
// headerHtml += `
|
|
6935
6935
|
// style='width: ${col.width || col.actualWidth}px'
|
|
6936
6936
|
// width='${col.width || col.actualWidth}'
|