@jupyterlab/csvviewer 4.4.9 → 4.4.10

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/lib/model.d.ts CHANGED
@@ -73,7 +73,7 @@ export declare class DSVModel extends DataModel implements IDisposable {
73
73
  *
74
74
  * @param column - The column index of the cell of interest.
75
75
  *
76
- * @param returns - The data value for the specified cell.
76
+ * @returns - The data value for the specified cell.
77
77
  */
78
78
  data(region: DataModel.CellRegion, row: number, column: number): string;
79
79
  /**
package/lib/model.js CHANGED
@@ -202,7 +202,7 @@ export class DSVModel extends DataModel {
202
202
  *
203
203
  * @param column - The column index of the cell of interest.
204
204
  *
205
- * @param returns - The data value for the specified cell.
205
+ * @returns - The data value for the specified cell.
206
206
  */
207
207
  data(region, row, column) {
208
208
  let value;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/csvviewer",
3
- "version": "4.4.9",
3
+ "version": "4.4.10",
4
4
  "description": "JupyterLab - CSV Widget",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -41,10 +41,10 @@
41
41
  "watch": "tsc -b --watch"
42
42
  },
43
43
  "dependencies": {
44
- "@jupyterlab/coreutils": "^6.4.9",
45
- "@jupyterlab/docregistry": "^4.4.9",
46
- "@jupyterlab/translation": "^4.4.9",
47
- "@jupyterlab/ui-components": "^4.4.9",
44
+ "@jupyterlab/coreutils": "^6.4.10",
45
+ "@jupyterlab/docregistry": "^4.4.10",
46
+ "@jupyterlab/translation": "^4.4.10",
47
+ "@jupyterlab/ui-components": "^4.4.10",
48
48
  "@lumino/coreutils": "^2.2.1",
49
49
  "@lumino/datagrid": "^2.5.2",
50
50
  "@lumino/disposable": "^2.1.4",
@@ -53,7 +53,7 @@
53
53
  "@lumino/widgets": "^2.7.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@jupyterlab/testing": "^4.4.9",
56
+ "@jupyterlab/testing": "^4.4.10",
57
57
  "@types/jest": "^29.2.0",
58
58
  "csv-spectrum": "^1.0.0",
59
59
  "jest": "^29.2.0",
package/src/model.ts CHANGED
@@ -195,7 +195,7 @@ export class DSVModel extends DataModel implements IDisposable {
195
195
  *
196
196
  * @param column - The column index of the cell of interest.
197
197
  *
198
- * @param returns - The data value for the specified cell.
198
+ * @returns - The data value for the specified cell.
199
199
  */
200
200
  data(region: DataModel.CellRegion, row: number, column: number): string {
201
201
  let value: string;