@matdata/yasr 5.16.0 → 5.17.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@matdata/yasr",
3
3
  "description": "Yet Another SPARQL Resultset GUI",
4
- "version": "5.16.0",
4
+ "version": "5.17.0",
5
5
  "main": "build/yasr.min.js",
6
6
  "types": "build/ts/src/index.d.ts",
7
7
  "license": "MIT",
package/src/index.ts CHANGED
@@ -661,6 +661,8 @@ export type Prefixes = { [prefixLabel: string]: string };
661
661
  export interface PluginQueryOptions {
662
662
  /** Optional custom Accept header for the request (e.g. "text/turtle"). */
663
663
  acceptHeader?: string;
664
+ /** Optional abort signal for cancelling in-flight background queries. */
665
+ signal?: AbortSignal;
664
666
  }
665
667
 
666
668
  export interface PluginConfig {