@kbss-cvut/s-forms 0.6.2 → 0.6.3-alpha-80f4a38.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 +4 -0
- package/dist/components/Question.d.ts +2 -1
- package/dist/components/wizard/WizardStep.d.ts +4 -11
- package/dist/s-forms.cjs +1 -1
- package/dist/s-forms.cjs.map +1 -1
- package/dist/s-forms.css +1 -1
- package/dist/s-forms.css.map +1 -1
- package/dist/s-forms.js +1 -1
- package/dist/s-forms.js.map +1 -1
- package/dist/s-forms.modern.js +1 -1
- package/dist/s-forms.modern.js.map +1 -1
- package/dist/s-forms.umd.js +1 -1
- package/dist/s-forms.umd.js.map +1 -1
- package/dist/stories/Question.stories.d.ts +7 -0
- package/dist/util/Utils.d.ts +1 -0
- package/package.json +4 -4
|
@@ -2,5 +2,12 @@ import Question from "../components/Question";
|
|
|
2
2
|
import { ComponentMeta, ComponentStory } from "@storybook/react";
|
|
3
3
|
declare const _default: ComponentMeta<typeof Question>;
|
|
4
4
|
export default _default;
|
|
5
|
+
export declare const TestedQuestionIsIrrelevant: ComponentStory<typeof Question>;
|
|
6
|
+
export declare const TestedQuestionIsRelevant: ComponentStory<typeof Question>;
|
|
7
|
+
export declare const TestedQuestionIsIrrelevantWithDebugModeOn: ComponentStory<typeof Question>;
|
|
8
|
+
export declare const TestedQuestionIsIrrelevantAndStartingId: ComponentStory<typeof Question>;
|
|
5
9
|
export declare const CollapsedQuestion: ComponentStory<typeof Question>;
|
|
6
10
|
export declare const ExpandedQuestion: ComponentStory<typeof Question>;
|
|
11
|
+
export declare const QuestionWithoutHeader: ComponentStory<typeof Question>;
|
|
12
|
+
export declare const AnswerableQuestion: ComponentStory<typeof Question>;
|
|
13
|
+
export declare const AnswerableQuestionExpanded: ComponentStory<typeof Question>;
|
package/dist/util/Utils.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kbss-cvut/s-forms",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3-alpha-80f4a38.0",
|
|
4
4
|
"description": "Semantic forms generator and processor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
"private": false,
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@luigiminardim/storybook-addon-globals-controls": "^0.1.3",
|
|
46
|
-
"@triply/yasgui": "^4.2.
|
|
46
|
+
"@triply/yasgui": "^4.2.28",
|
|
47
|
+
"@triply/yasqe": "^4.2.28",
|
|
47
48
|
"babel-runtime": "^6.26.0",
|
|
48
49
|
"bootstrap": "^4.6.0",
|
|
49
50
|
"classnames": "^2.2.6",
|
|
@@ -62,8 +63,7 @@
|
|
|
62
63
|
"react-loader-spinner": "^5.1.0",
|
|
63
64
|
"react-select": "^3.1.0",
|
|
64
65
|
"react-window": "^1.8.5",
|
|
65
|
-
"tsort": "0.0.1"
|
|
66
|
-
"yasgui-yasqe": "^2.11.22"
|
|
66
|
+
"tsort": "0.0.1"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"framer-motion": "^6.2.3",
|