@orkg/scidquest 1.0.3 → 1.0.5

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.
Files changed (3) hide show
  1. package/README.md +15 -13
  2. package/dist/scidquest.es.js +3516 -3491
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -8,19 +8,21 @@ ScidQuest provides a reusable UI and workflow foundation for extracting structur
8
8
 
9
9
  ## Table of Contents
10
10
 
11
- 1. [About](#about)
12
- 2. [Key Features](#key-features)
13
- 3. [Installation](#installation)
14
- 4. [Quick Start](#quick-start)
15
- 5. [Configuration](#configuration)
16
- 6. [Peer Dependencies](#peer-dependencies)
17
- 7. [Development](#development)
18
- 8. [Project Structure](#project-structure)
19
- 9. [License](#license)
11
+ - [SciD-QuESt: From Scientific Documents to Knowledge](#scid-quest-from-scientific-documents-to-knowledge)
12
+ - [Table of Contents](#table-of-contents)
13
+ - [About](#about)
14
+ - [Key Features](#key-features)
15
+ - [Installation](#installation)
16
+ - [Quick Start](#quick-start)
17
+ - [Configuration](#configuration)
18
+ - [Peer Dependencies](#peer-dependencies)
19
+ - [Development](#development)
20
+ - [Project Structure](#project-structure)
21
+ - [License](#license)
20
22
 
21
23
  ## About
22
24
 
23
- ScidQuest is distributed as an npm package: `@sololeveling/scidquest`.
25
+ ScidQuest is distributed as an npm package: `@orkg/scidquest`.
24
26
 
25
27
  It is intended for teams building research tooling that requires:
26
28
 
@@ -48,13 +50,13 @@ It is intended for teams building research tooling that requires:
48
50
  Install the package with npm:
49
51
 
50
52
  ```bash
51
- npm install @sololeveling/scidquest
53
+ npm install @orkg/scidquest
52
54
  ```
53
55
 
54
56
  Import the published stylesheet in your application entrypoint:
55
57
 
56
58
  ```ts
57
- import "@sololeveling/scidquest/dist/contribute-standalone.css";
59
+ import "@orkg/scidquest/dist/contribute-standalone.css";
58
60
  ```
59
61
 
60
62
  [(back to top)](#table-of-contents)
@@ -66,7 +68,7 @@ Basic package usage:
66
68
  ```tsx
67
69
  import React from "react";
68
70
  import { createRoot } from "react-dom/client";
69
- import "@sololeveling/scidquest/dist/contribute-standalone.css";
71
+ import "@orkg/scidquest/dist/contribute-standalone.css";
70
72
  import App from "./App";
71
73
 
72
74
  createRoot(document.getElementById("root")!).render(