jupyter-ijavascript-utils 1.28.0 → 1.28.1

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/Dockerfile CHANGED
@@ -1,3 +1,3 @@
1
1
  # syntax=docker/dockerfile:1
2
2
 
3
- FROM darkbluestudios/jupyter-ijavascript-utils:binder_1.27.0
3
+ FROM darkbluestudios/jupyter-ijavascript-utils:binder_1.28.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyter-ijavascript-utils",
3
- "version": "1.28.0",
3
+ "version": "1.28.1",
4
4
  "description": "Utilities for working with iJavaScript - a Jupyter Kernel",
5
5
  "homepage": "https://jupyter-ijavascript-utils.onrender.com/",
6
6
  "license": "MIT",
@@ -197,7 +197,7 @@ class TableGenerator {
197
197
  * Max height (css) of the table when rendered. (Defaults to 50vh)
198
198
  * @type {String}
199
199
  */
200
- #height = `50vh`;
200
+ #height = '50vh';
201
201
 
202
202
  /**
203
203
  * Optional labels for columns by the property Name
@@ -317,7 +317,7 @@ class TableGenerator {
317
317
  this.#fetch = null;
318
318
  this.#filterFn = null;
319
319
  this.#formatterFn = null;
320
- this.#height = `50vh`;
320
+ this.#height = '50vh';
321
321
  this.#labels = {};
322
322
  this.#limit = 0;
323
323
  this.#offset = 0;