@jupyterlab/csvviewer 4.2.0-beta.1 → 4.2.0-beta.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.
- package/lib/parse.d.ts +3 -3
- package/lib/parse.js +2 -2
- package/package.json +6 -8
- package/src/parse.ts +3 -3
package/lib/parse.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Interface for a delimiter-separated data parser.
|
|
3
3
|
*
|
|
4
|
-
* @param options
|
|
4
|
+
* @param options The parser options
|
|
5
5
|
* @returns An object giving the offsets for the rows or columns parsed.
|
|
6
6
|
*
|
|
7
7
|
* #### Notes
|
|
@@ -96,7 +96,7 @@ export declare namespace IParser {
|
|
|
96
96
|
/**
|
|
97
97
|
* Parse delimiter-separated data.
|
|
98
98
|
*
|
|
99
|
-
* @param options
|
|
99
|
+
* @param options The parser options
|
|
100
100
|
* @returns An object giving the offsets for the rows or columns parsed.
|
|
101
101
|
*
|
|
102
102
|
* #### Notes
|
|
@@ -106,7 +106,7 @@ export declare function parseDSV(options: IParser.IOptions): IParser.IResults;
|
|
|
106
106
|
/**
|
|
107
107
|
* Parse delimiter-separated data where no delimiter is quoted.
|
|
108
108
|
*
|
|
109
|
-
* @param options
|
|
109
|
+
* @param options The parser options
|
|
110
110
|
* @returns An object giving the offsets for the rows or columns parsed.
|
|
111
111
|
*
|
|
112
112
|
* #### Notes
|
package/lib/parse.js
CHANGED
|
@@ -23,7 +23,7 @@ var ROW_DELIMITER;
|
|
|
23
23
|
/**
|
|
24
24
|
* Parse delimiter-separated data.
|
|
25
25
|
*
|
|
26
|
-
* @param options
|
|
26
|
+
* @param options The parser options
|
|
27
27
|
* @returns An object giving the offsets for the rows or columns parsed.
|
|
28
28
|
*
|
|
29
29
|
* #### Notes
|
|
@@ -298,7 +298,7 @@ export function parseDSV(options) {
|
|
|
298
298
|
/**
|
|
299
299
|
* Parse delimiter-separated data where no delimiter is quoted.
|
|
300
300
|
*
|
|
301
|
-
* @param options
|
|
301
|
+
* @param options The parser options
|
|
302
302
|
* @returns An object giving the offsets for the rows or columns parsed.
|
|
303
303
|
*
|
|
304
304
|
* #### Notes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/csvviewer",
|
|
3
|
-
"version": "4.2.0-beta.
|
|
3
|
+
"version": "4.2.0-beta.3",
|
|
4
4
|
"description": "JupyterLab - CSV Widget",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"build": "tsc -b",
|
|
35
35
|
"build:test": "tsc --build tsconfig.test.json",
|
|
36
36
|
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
|
|
37
|
-
"docs": "typedoc src",
|
|
38
37
|
"test": "jest",
|
|
39
38
|
"test:cov": "jest --collect-coverage",
|
|
40
39
|
"test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
|
|
@@ -42,10 +41,10 @@
|
|
|
42
41
|
"watch": "tsc -b --watch"
|
|
43
42
|
},
|
|
44
43
|
"dependencies": {
|
|
45
|
-
"@jupyterlab/coreutils": "^6.2.0-beta.
|
|
46
|
-
"@jupyterlab/docregistry": "^4.2.0-beta.
|
|
47
|
-
"@jupyterlab/translation": "^4.2.0-beta.
|
|
48
|
-
"@jupyterlab/ui-components": "^4.2.0-beta.
|
|
44
|
+
"@jupyterlab/coreutils": "^6.2.0-beta.3",
|
|
45
|
+
"@jupyterlab/docregistry": "^4.2.0-beta.3",
|
|
46
|
+
"@jupyterlab/translation": "^4.2.0-beta.3",
|
|
47
|
+
"@jupyterlab/ui-components": "^4.2.0-beta.3",
|
|
49
48
|
"@lumino/coreutils": "^2.1.2",
|
|
50
49
|
"@lumino/datagrid": "^2.3.1",
|
|
51
50
|
"@lumino/disposable": "^2.1.2",
|
|
@@ -54,13 +53,12 @@
|
|
|
54
53
|
"@lumino/widgets": "^2.3.2"
|
|
55
54
|
},
|
|
56
55
|
"devDependencies": {
|
|
57
|
-
"@jupyterlab/testing": "^4.2.0-beta.
|
|
56
|
+
"@jupyterlab/testing": "^4.2.0-beta.3",
|
|
58
57
|
"@types/jest": "^29.2.0",
|
|
59
58
|
"canvas": "^2.11.2",
|
|
60
59
|
"csv-spectrum": "^1.0.0",
|
|
61
60
|
"jest": "^29.2.0",
|
|
62
61
|
"rimraf": "~5.0.5",
|
|
63
|
-
"typedoc": "~0.24.7",
|
|
64
62
|
"typescript": "~5.1.6"
|
|
65
63
|
},
|
|
66
64
|
"publishConfig": {
|
package/src/parse.ts
CHANGED
|
@@ -20,7 +20,7 @@ Possible options to add to the parser:
|
|
|
20
20
|
/**
|
|
21
21
|
* Interface for a delimiter-separated data parser.
|
|
22
22
|
*
|
|
23
|
-
* @param options
|
|
23
|
+
* @param options The parser options
|
|
24
24
|
* @returns An object giving the offsets for the rows or columns parsed.
|
|
25
25
|
*
|
|
26
26
|
* #### Notes
|
|
@@ -147,7 +147,7 @@ enum ROW_DELIMITER {
|
|
|
147
147
|
/**
|
|
148
148
|
* Parse delimiter-separated data.
|
|
149
149
|
*
|
|
150
|
-
* @param options
|
|
150
|
+
* @param options The parser options
|
|
151
151
|
* @returns An object giving the offsets for the rows or columns parsed.
|
|
152
152
|
*
|
|
153
153
|
* #### Notes
|
|
@@ -476,7 +476,7 @@ export function parseDSV(options: IParser.IOptions): IParser.IResults {
|
|
|
476
476
|
/**
|
|
477
477
|
* Parse delimiter-separated data where no delimiter is quoted.
|
|
478
478
|
*
|
|
479
|
-
* @param options
|
|
479
|
+
* @param options The parser options
|
|
480
480
|
* @returns An object giving the offsets for the rows or columns parsed.
|
|
481
481
|
*
|
|
482
482
|
* #### Notes
|