@ulb-darmstadt/shacl-form 1.10.2 → 1.10.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/README.md +1 -1
- package/dist/form-bootstrap.js +57 -57
- package/dist/form-default.js +52 -52
- package/dist/form-material.js +81 -81
- package/dist/plugins/mapbox.js +131 -97
- package/dist/serialize.d.ts +1 -1
- package/package.json +12 -11
- package/src/form.ts +4 -4
- package/src/serialize.ts +12 -7
- package/src/themes/default.ts +5 -9
- package/src/themes/material.ts +3 -0
package/README.md
CHANGED
|
@@ -244,7 +244,7 @@ Apart from grouped properties, all properties having an `sh:node` predicate and
|
|
|
244
244
|
|
|
245
245
|
### Use with Solid Pods
|
|
246
246
|
|
|
247
|
-
`<shacl-form>` can easily be integrated with [Solid Pods](https://solidproject.org/about). The output of `toRDF()` being a RDF/JS N3 Store, as explained [above](#toRDF), it can be presented to `solid-client`s `fromRdfJsDataset()` function, which converts the RDF graph into a Solid Dataset. The following example, based on Inrupt's basic [Solid Pod example](https://docs.inrupt.com/
|
|
247
|
+
`<shacl-form>` can easily be integrated with [Solid Pods](https://solidproject.org/about). The output of `toRDF()` being a RDF/JS N3 Store, as explained [above](#toRDF), it can be presented to `solid-client`s `fromRdfJsDataset()` function, which converts the RDF graph into a Solid Dataset. The following example, based on Inrupt's basic [Solid Pod example](https://docs.inrupt.com/sdk/javascript-sdk/tutorial) shows how to merge data from a `<shacl-form>` with a Solid data resource at `readingListDataResourceURI`:
|
|
248
248
|
|
|
249
249
|
```js
|
|
250
250
|
// Authentication is assumed, resulting in a fetch able to read and write into the Pod
|