@jupyterlab/csvviewer 4.5.0-beta.0 → 4.5.0-rc.0
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 +1 -1
- package/lib/model.js +1 -1
- package/package.json +6 -6
- package/src/model.ts +1 -1
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
|
-
* @
|
|
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
|
-
* @
|
|
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.5.0-
|
|
3
|
+
"version": "4.5.0-rc.0",
|
|
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.5.0-
|
|
45
|
-
"@jupyterlab/docregistry": "^4.5.0-
|
|
46
|
-
"@jupyterlab/translation": "^4.5.0-
|
|
47
|
-
"@jupyterlab/ui-components": "^4.5.0-
|
|
44
|
+
"@jupyterlab/coreutils": "^6.5.0-rc.0",
|
|
45
|
+
"@jupyterlab/docregistry": "^4.5.0-rc.0",
|
|
46
|
+
"@jupyterlab/translation": "^4.5.0-rc.0",
|
|
47
|
+
"@jupyterlab/ui-components": "^4.5.0-rc.0",
|
|
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.5.0-
|
|
56
|
+
"@jupyterlab/testing": "^4.5.0-rc.0",
|
|
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
|
-
* @
|
|
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;
|