@cellaware/utils 8.3.1 → 8.3.3

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.
@@ -929,8 +929,9 @@ export function datagridToString(datagridState, rowCnt) {
929
929
  }
930
930
  htmlBuf += '\n\t</tbody>\n</table>';
931
931
  if (rowCnt < totalRowCnt) {
932
- htmlBuf += `<b>Only the first ${rowCnt} are shown.</b>`;
933
- markdownBuf += `\n**Only the first ${rowCnt} are shown.**\n\n`;
932
+ const message = `Displaying the first ${rowCnt} rows.`;
933
+ htmlBuf += `<blockquote>${message}</blockquote>`;
934
+ markdownBuf += `\n> ${message}\n\n`;
934
935
  }
935
936
  return {
936
937
  html: htmlBuf,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cellaware/utils",
3
- "version": "8.3.1",
3
+ "version": "8.3.3",
4
4
  "description": "Cellaware Utilities for Node.js",
5
5
  "author": "Cellaware Technologies",
6
6
  "type": "module",