@ulb-darmstadt/shacl-form 1.7.0 → 1.7.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/dist/form-bootstrap.js +1 -1
- package/dist/form-bootstrap.js.LICENSE.txt +0 -2
- package/dist/form-default.js +1 -1
- package/dist/form-default.js.LICENSE.txt +0 -2
- package/dist/form-material.js +1 -1
- package/dist/form-material.js.LICENSE.txt +0 -2
- package/dist/plugins/file-upload.js +1 -1
- package/dist/plugins/fixed-list.js +1 -1
- package/dist/plugins/leaflet.js +1 -1
- package/dist/plugins/mapbox.js +1 -1
- package/dist/plugins/mapbox.js.LICENSE.txt +9 -0
- package/package.json +19 -19
- package/src/loader.ts +1 -0
|
@@ -1 +1,10 @@
|
|
|
1
1
|
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* martinez v0.7.4
|
|
5
|
+
* Martinez polygon clipping algorithm, does boolean operation on polygons (multipolygons, polygons with holes etc): intersection, union, difference, xor
|
|
6
|
+
*
|
|
7
|
+
* @author Alex Milevski <info@w8r.name>
|
|
8
|
+
* @license MIT
|
|
9
|
+
* @preserve
|
|
10
|
+
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ulb-darmstadt/shacl-form",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "SHACL form generator",
|
|
5
5
|
"main": "dist/form-default.js",
|
|
6
6
|
"module": "dist/form-default.js",
|
|
@@ -33,31 +33,31 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/jsonld": "^1.5.15",
|
|
36
|
-
"@types/leaflet": "^1.9.
|
|
36
|
+
"@types/leaflet": "^1.9.18",
|
|
37
37
|
"@types/leaflet-editable": "^1.2.6",
|
|
38
38
|
"@types/leaflet.fullscreen": "^3.0.2",
|
|
39
|
-
"@types/mapbox__mapbox-gl-draw": "^1.4.
|
|
40
|
-
"@types/n3": "^1.
|
|
39
|
+
"@types/mapbox__mapbox-gl-draw": "^1.4.9",
|
|
40
|
+
"@types/n3": "^1.26.0",
|
|
41
41
|
"@types/uuid": "^10.0.0",
|
|
42
42
|
"raw-loader": "^4.0.2",
|
|
43
43
|
"rimraf": "^6.0.1",
|
|
44
|
-
"ts-loader": "^9.5.
|
|
45
|
-
"typescript": "^5.
|
|
46
|
-
"webpack": ">=5.
|
|
47
|
-
"webpack-cli": "^
|
|
48
|
-
"webpack-dev-server": "^5.
|
|
44
|
+
"ts-loader": "^9.5.2",
|
|
45
|
+
"typescript": "^5.8.3",
|
|
46
|
+
"webpack": ">=5.99.9",
|
|
47
|
+
"webpack-cli": "^6.0.1",
|
|
48
|
+
"webpack-dev-server": "^5.2.2"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@mapbox/mapbox-gl-draw": "^1.
|
|
52
|
-
"bootstrap": "^5.3.
|
|
53
|
-
"jsonld": "^8.3.
|
|
51
|
+
"@mapbox/mapbox-gl-draw": "^1.5.0",
|
|
52
|
+
"bootstrap": "^5.3.6",
|
|
53
|
+
"jsonld": "^8.3.3",
|
|
54
54
|
"leaflet": "^1.9.4",
|
|
55
|
-
"leaflet-editable": "^1.3.
|
|
56
|
-
"leaflet.fullscreen": "^
|
|
57
|
-
"mapbox-gl": "^3.
|
|
58
|
-
"mdui": "^2.1.
|
|
59
|
-
"n3": "^1.
|
|
60
|
-
"shacl-engine": "^1.0.
|
|
61
|
-
"uuid": "^
|
|
55
|
+
"leaflet-editable": "^1.3.1",
|
|
56
|
+
"leaflet.fullscreen": "^4.0.0",
|
|
57
|
+
"mapbox-gl": "^3.12.0",
|
|
58
|
+
"mdui": "^2.1.4",
|
|
59
|
+
"n3": "^1.26.0",
|
|
60
|
+
"shacl-engine": "^1.0.2",
|
|
61
|
+
"uuid": "^11.1.0"
|
|
62
62
|
}
|
|
63
63
|
}
|
package/src/loader.ts
CHANGED