@kbss-cvut/s-forms 0.7.1-alpha-6a690b7.0 → 0.7.1-alpha-c899aca.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/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Checkout [live demo using storybook](https://s-forms-kbss.netlify.app).
|
|
|
18
18
|
|
|
19
19
|
## Representation in JSON-LD
|
|
20
20
|
|
|
21
|
-
Semantic form is structure that holds a form (set of questions)
|
|
21
|
+
Semantic form is a structure that holds a form (set of questions) and its data (set of answers).
|
|
22
22
|
A conceptual model of Semantic forms is [questions/answers model](https://github.com/kbss-cvut/s-forms-model).
|
|
23
23
|
The conceptual model is described in RDF language. This library processes and generates Semantic forms using JSON-LD
|
|
24
24
|
format which is JSON compatible serialization of the RDF language.
|
|
@@ -29,8 +29,8 @@ Building SForms library can be done using `npm run build:lib`.
|
|
|
29
29
|
|
|
30
30
|
### Debugging a form & components with StorybookJS
|
|
31
31
|
|
|
32
|
-
Storybook is an open
|
|
32
|
+
Storybook is an open-source tool for building UI components and pages in isolation. Rendering of a form or a specific component can be tested through a story provided in `./src/stories/`. The application can be started by executing npm script through `npm run dev` and then accessing `localhost:6006` from a browser. It renders the forms provided by the file `./src/stories/assets/`. See `./src/stories/SForms/SForms.stories.tsx` for more details.
|
|
33
33
|
|
|
34
|
-
### NPM release
|
|
34
|
+
### NPM release workflow
|
|
35
35
|
|
|
36
36
|
NPM packages are created automatically for each commit to this repository, see [npm release workflow guide](./docs/npm-release-workflow.md).
|