@cellaware/utils 8.1.4 → 8.1.5

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.
@@ -864,7 +864,7 @@ export function datagridToHtml(datagridState) {
864
864
  }
865
865
  // Apply row styles.
866
866
  if (rowStyles.length > 0) {
867
- buf += `\n\t\t<tr class="${rowStyles.join(', ')}">`;
867
+ buf += `\n\t\t<tr class="${rowStyles.join(' ')}">`;
868
868
  }
869
869
  else {
870
870
  buf += '\n\t\t<tr>';
@@ -873,7 +873,7 @@ export function datagridToHtml(datagridState) {
873
873
  colIdx = 0;
874
874
  for (const rowValue of cellValues) {
875
875
  if (colStyles[colIdx].styles.length > 0) {
876
- buf += `\n\t\t\t<td class="${colStyles[colIdx].styles.join(', ')}">${rowValue}</td>`;
876
+ buf += `\n\t\t\t<td class="${colStyles[colIdx].styles.join(' ')}">${rowValue}</td>`;
877
877
  }
878
878
  else {
879
879
  buf += `\n\t\t\t<td>${rowValue}</td>`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.1.4",
3
+ "version": "8.1.5",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",