@matdata/yasr 4.6.1 → 4.7.4
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/CHANGELOG.md +150 -150
- package/build/yasr.html +31 -31
- package/build/yasr.min.css.map +1 -1
- package/build/yasr.min.js +1 -1
- package/build/yasr.min.js.map +1 -1
- package/package.json +56 -56
- package/src/bin/takeScreenshot.js +373 -373
- package/src/bindingsToCsv.ts +18 -18
- package/src/defaults.ts +28 -28
- package/src/helpers/addCSS.ts +7 -7
- package/src/helpers/addScript.ts +12 -12
- package/src/helpers/index.ts +3 -3
- package/src/helpers/sanitize.ts +11 -11
- package/src/jquery/extendJquery.js +1 -1
- package/src/jquery/tableToCsv.js +88 -88
- package/src/parsers/csv.ts +30 -30
- package/src/parsers/index.ts +311 -311
- package/src/parsers/json.ts +22 -22
- package/src/parsers/tsv.ts +43 -43
- package/src/parsers/turtleFamily.ts +60 -60
- package/src/parsers/xml.ts +79 -79
- package/src/plugins/boolean/index.scss +11 -11
- package/src/plugins/error/index.scss +57 -57
- package/src/plugins/index.ts +24 -24
- package/src/plugins/response/index.scss +63 -63
- package/src/plugins/table/index.scss +154 -154
- package/src/scss/global.scss +10 -10
- package/src/scss/variables.scss +2 -2
package/package.json
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@matdata/yasr",
|
|
3
|
-
"description": "Yet Another SPARQL Resultset GUI",
|
|
4
|
-
"version": "4.
|
|
5
|
-
"main": "build/yasr.min.js",
|
|
6
|
-
"types": "build/ts/src/index.d.ts",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"author": "Triply <info@triply.cc>",
|
|
9
|
-
"homepage": "https://github.com/Matdata-eu/Yasgui",
|
|
10
|
-
"engines": {
|
|
11
|
-
"node": ">= 8"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"JavaScript",
|
|
15
|
-
"SPARQL",
|
|
16
|
-
"Editor",
|
|
17
|
-
"Semantic Web",
|
|
18
|
-
"Linked Data"
|
|
19
|
-
],
|
|
20
|
-
"bugs": "https://github.com/Matdata-eu/Yasgui/issues/",
|
|
21
|
-
"repository": {
|
|
22
|
-
"type": "git",
|
|
23
|
-
"url": "https://github.com/Matdata-eu/Yasgui.git",
|
|
24
|
-
"directory": "packages/yasr"
|
|
25
|
-
},
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"@fortawesome/free-solid-svg-icons": "^5.14.0",
|
|
28
|
-
"@json2csv/plainjs": "^7.0.4",
|
|
29
|
-
"@matdata/yasgui-utils": "^4.6.1",
|
|
30
|
-
"@matdata/yasqe": "^4.6.1",
|
|
31
|
-
"codemirror": "^5.51.0",
|
|
32
|
-
"colors": "^1.4.0",
|
|
33
|
-
"column-resizer": "^1.4.0",
|
|
34
|
-
"datatables.net": "^2.0.5",
|
|
35
|
-
"datatables.net-dt": "^2.0.5",
|
|
36
|
-
"dompurify": "^3.2.4",
|
|
37
|
-
"jquery": "^3.7.1",
|
|
38
|
-
"lodash-es": "^4.17.15",
|
|
39
|
-
"n3": "^1.3.5",
|
|
40
|
-
"papaparse": "^5.3.1"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@types/codemirror": "0.0.100",
|
|
44
|
-
"@types/jquery": "^3.5.32",
|
|
45
|
-
"@types/lodash-es": "^4.17.3",
|
|
46
|
-
"@types/n3": "^1.1.5",
|
|
47
|
-
"@types/node": "^22.5.4",
|
|
48
|
-
"@types/papaparse": "^5.3.2",
|
|
49
|
-
"@types/sanitize-html": "^1.20.2",
|
|
50
|
-
"better-npm-run": "^0.1.1",
|
|
51
|
-
"ts-essentials": "^7.0.1"
|
|
52
|
-
},
|
|
53
|
-
"publishConfig": {
|
|
54
|
-
"access": "public"
|
|
55
|
-
}
|
|
56
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@matdata/yasr",
|
|
3
|
+
"description": "Yet Another SPARQL Resultset GUI",
|
|
4
|
+
"version": "4.7.4",
|
|
5
|
+
"main": "build/yasr.min.js",
|
|
6
|
+
"types": "build/ts/src/index.d.ts",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"author": "Triply <info@triply.cc>",
|
|
9
|
+
"homepage": "https://github.com/Matdata-eu/Yasgui",
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">= 8"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"JavaScript",
|
|
15
|
+
"SPARQL",
|
|
16
|
+
"Editor",
|
|
17
|
+
"Semantic Web",
|
|
18
|
+
"Linked Data"
|
|
19
|
+
],
|
|
20
|
+
"bugs": "https://github.com/Matdata-eu/Yasgui/issues/",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/Matdata-eu/Yasgui.git",
|
|
24
|
+
"directory": "packages/yasr"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@fortawesome/free-solid-svg-icons": "^5.14.0",
|
|
28
|
+
"@json2csv/plainjs": "^7.0.4",
|
|
29
|
+
"@matdata/yasgui-utils": "^4.6.1",
|
|
30
|
+
"@matdata/yasqe": "^4.6.1",
|
|
31
|
+
"codemirror": "^5.51.0",
|
|
32
|
+
"colors": "^1.4.0",
|
|
33
|
+
"column-resizer": "^1.4.0",
|
|
34
|
+
"datatables.net": "^2.0.5",
|
|
35
|
+
"datatables.net-dt": "^2.0.5",
|
|
36
|
+
"dompurify": "^3.2.4",
|
|
37
|
+
"jquery": "^3.7.1",
|
|
38
|
+
"lodash-es": "^4.17.15",
|
|
39
|
+
"n3": "^1.3.5",
|
|
40
|
+
"papaparse": "^5.3.1"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/codemirror": "0.0.100",
|
|
44
|
+
"@types/jquery": "^3.5.32",
|
|
45
|
+
"@types/lodash-es": "^4.17.3",
|
|
46
|
+
"@types/n3": "^1.1.5",
|
|
47
|
+
"@types/node": "^22.5.4",
|
|
48
|
+
"@types/papaparse": "^5.3.2",
|
|
49
|
+
"@types/sanitize-html": "^1.20.2",
|
|
50
|
+
"better-npm-run": "^0.1.1",
|
|
51
|
+
"ts-essentials": "^7.0.1"
|
|
52
|
+
},
|
|
53
|
+
"publishConfig": {
|
|
54
|
+
"access": "public"
|
|
55
|
+
}
|
|
56
|
+
}
|