@ulb-darmstadt/shacl-form 1.4.0 → 1.4.2

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 CHANGED
@@ -62,6 +62,7 @@ data-shape-subject | Optional subject (id) of the SHACL node shape to use as roo
62
62
  data-values | RDF triples (e.g. a turtle string) to use as existing data graph to fill the form
63
63
  data-values-url | When `data-values` is not set, the data graph triples are loaded from this URL
64
64
  data-value-subject | The subject (id) of the generated data. If this is not set, a blank node with a new UUID is created. If `data-values` or `data-values-url` is set, this id is also used to find the root node in the data graph to fill the form
65
+ data-values-namespace | RDF namespace to use when generating new RDF subjects. Default is empty, so that subjects will be blank nodes.
65
66
  data-language | Language to use if shapes contain langStrings, e.g. in `sh:name` or `rdfs:label`. Default is [`navigator.language`](https://www.w3schools.com/jsref/prop_nav_language.asp)
66
67
  data-loading | Text to display while the web component is initializing. Default: `"Loading..."`
67
68
  data‑ignore‑owl‑imports | By default, `owl:imports` URLs are fetched and the resulting RDF triples are added to the shapes graph. Setting this attribute to any value disables this feature
package/dist/config.d.ts CHANGED
@@ -10,6 +10,7 @@ export declare class ElementAttributes {
10
10
  values: string | null;
11
11
  valuesUrl: string | null;
12
12
  valueSubject: string | null;
13
+ valuesNamespace: string;
13
14
  view: string | null;
14
15
  language: string;
15
16
  loading: string;