@ulb-darmstadt/shacl-form 1.0.12 → 1.0.13

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/config.d.ts CHANGED
@@ -10,6 +10,7 @@ export declare class Config {
10
10
  valuesUrl: string | null;
11
11
  valueSubject: string | null;
12
12
  language: string | null;
13
+ addEmptyElementToLists: string | null;
13
14
  private _theme;
14
15
  private _shapesGraph;
15
16
  private _valuesGraph;
package/dist/form.d.ts CHANGED
@@ -6,10 +6,10 @@ import './styles.css';
6
6
  export declare class ShaclForm extends HTMLElement {
7
7
  static get observedAttributes(): string[];
8
8
  config: Config;
9
- shape: ShaclNode | undefined;
9
+ shape: ShaclNode | null;
10
10
  form: HTMLFormElement;
11
11
  plugins: Plugins;
12
- initTimeout: ReturnType<typeof setTimeout> | undefined;
12
+ initDebounceTimeout: ReturnType<typeof setTimeout> | undefined;
13
13
  constructor();
14
14
  connectedCallback(): void;
15
15
  attributeChangedCallback(): void;
@@ -18,6 +18,6 @@ export declare class ShaclForm extends HTMLElement {
18
18
  toRDFTurtle(): string;
19
19
  registerPlugin(plugin: Plugin): void;
20
20
  reportValidity(): boolean;
21
- validate(): Promise<boolean>;
21
+ validate(showHints?: boolean): Promise<boolean>;
22
22
  private findRootShaclShapeSubject;
23
23
  }