@ulb-darmstadt/shacl-form 1.3.4 → 1.3.6
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/LICENSE +1 -1
- package/README.md +2 -1
- package/dist/form-bootstrap.js +1 -1
- package/dist/form-default.js +1 -1
- package/dist/form-material.js +195 -179
- package/dist/plugins/fixed-list.js +1 -1
- package/dist/plugins/mapbox.js +1 -1
- package/package.json +15 -15
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -23,10 +23,11 @@ HTML5 web component for editing/viewing [RDF](https://www.w3.org/RDF/) data that
|
|
|
23
23
|
-->
|
|
24
24
|
<shacl-form data-shapes="
|
|
25
25
|
@prefix sh: <http://www.w3.org/ns/shacl#> .
|
|
26
|
+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
26
27
|
@prefix ex: <http://example.org#> .
|
|
27
28
|
|
|
28
29
|
ex:ExampleShape
|
|
29
|
-
a sh:NodeShape ;
|
|
30
|
+
a sh:NodeShape, rdfs:Class ;
|
|
30
31
|
sh:property [
|
|
31
32
|
sh:name 'my value' ;
|
|
32
33
|
sh:path ex:exampleValue ;
|