@kbss-cvut/s-forms 0.7.0 → 0.7.1-beta-b00a1cf.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/dist/components/Answer.d.ts +1 -1
- package/dist/components/DefaultInput.d.ts +8 -8
- package/dist/components/FormManager.d.ts +2 -2
- package/dist/components/HelpIcon.d.ts +1 -1
- package/dist/components/IconOverlay.d.ts +1 -1
- package/dist/components/LinkIcon.d.ts +1 -1
- package/dist/components/MaskedInput.d.ts +1 -0
- package/dist/components/MediaContent.d.ts +2 -1
- package/dist/components/PrefixIcon.d.ts +1 -1
- package/dist/components/Question.d.ts +9 -9
- package/dist/components/QuestionStatic.d.ts +6 -6
- package/dist/components/answer/DateTimeAnswer.d.ts +1 -1
- package/dist/components/answer/MaskedInputAnswer.d.ts +1 -1
- package/dist/components/answer/OptimizedMenuList.d.ts +1 -1
- package/dist/components/answer/SelectAnswer.d.ts +1 -1
- package/dist/components/answer/TypeaheadAnswer.d.ts +2 -2
- package/dist/components/comment/CommentForm.d.ts +1 -1
- package/dist/components/comment/CommentList.d.ts +2 -1
- package/dist/components/comment/CommentView.d.ts +2 -2
- package/dist/components/comment/QuestionCommentIcon.d.ts +1 -1
- package/dist/components/wizard/HorizontalWizardNav.d.ts +1 -1
- package/dist/components/wizard/VerticalWizardNav.d.ts +1 -1
- package/dist/components/wizard/Wizard.d.ts +1 -1
- package/dist/components/wizard/WizardStep.d.ts +2 -2
- package/dist/contexts/ConfigurationContext.d.ts +1 -1
- package/dist/contexts/FormGenContext.d.ts +1 -1
- package/dist/contexts/FormQuestionsContext.d.ts +1 -1
- package/dist/contexts/IntlContextProvider.d.ts +1 -1
- package/dist/s-forms.cjs +1 -1
- package/dist/s-forms.cjs.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/styles/icons/ArrowRight.d.ts +1 -1
- package/dist/styles/icons/CaretSquareDown.d.ts +1 -1
- package/dist/styles/icons/CaretSquareUp.d.ts +1 -1
- package/dist/styles/icons/Close.d.ts +1 -1
- package/dist/styles/icons/CommentBubble.d.ts +1 -1
- package/dist/styles/icons/ExternalLink.d.ts +1 -1
- package/dist/styles/icons/InfoCircle.d.ts +1 -1
- package/dist/styles/icons/QuestionCircle.d.ts +1 -1
- package/dist/styles/icons/RecycleBin.d.ts +1 -1
- package/package.json +2 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default ArrowRight;
|
|
2
|
-
declare function ArrowRight():
|
|
2
|
+
declare function ArrowRight(): JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default Close;
|
|
2
|
-
declare function Close():
|
|
2
|
+
declare function Close(): JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default CommentBubble;
|
|
2
|
-
declare function CommentBubble():
|
|
2
|
+
declare function CommentBubble(): JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default ExternalLink;
|
|
2
|
-
declare function ExternalLink():
|
|
2
|
+
declare function ExternalLink(): JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default InfoCircle;
|
|
2
|
-
declare function InfoCircle():
|
|
2
|
+
declare function InfoCircle(): JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default QuestionCircle;
|
|
2
|
-
declare function QuestionCircle():
|
|
2
|
+
declare function QuestionCircle(): JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export default RecycleBin;
|
|
2
|
-
declare function RecycleBin():
|
|
2
|
+
declare function RecycleBin(): JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kbss-cvut/s-forms",
|
|
3
|
-
"version": "0.7.0",
|
|
3
|
+
"version": "0.7.1-beta-b00a1cf.0",
|
|
4
4
|
"description": "Semantic forms generator and processor",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
"@storybook/builder-webpack5": "^7.0.23",
|
|
89
89
|
"@storybook/testing-library": "^0.2.0",
|
|
90
90
|
"@storybook/testing-react": "^2.0.1",
|
|
91
|
+
"@testing-library/dom": "^9.3.3",
|
|
91
92
|
"@testing-library/react": "^14.0.0",
|
|
92
93
|
"@types/jsonld": "^1.5.1",
|
|
93
94
|
"chromatic": "^6.5.3",
|