@roqua/quby-frontend 0.10.8 → 0.10.10
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/AnswerPage.d.ts +2 -3
- package/dist/components/MainLabel.d.ts +2 -3
- package/dist/components/Paginator.d.ts +3 -4
- package/dist/components/PanelContent.d.ts +2 -3
- package/dist/components/PanelItem.d.ts +2 -3
- package/dist/components/ProgressBar.d.ts +1 -2
- package/dist/components/Quby.d.ts +2 -3
- package/dist/components/QuestionDescription.d.ts +1 -2
- package/dist/components/QuestionWrapper.d.ts +2 -3
- package/dist/components/SubQuestions.d.ts +2 -3
- package/dist/components/ValidationErrors.d.ts +2 -3
- package/dist/components/index.d.ts +2 -2
- package/dist/components/items/HtmlItem.d.ts +2 -3
- package/dist/components/items/InfoItem.d.ts +2 -3
- package/dist/components/items/QuestionItem.d.ts +1 -2
- package/dist/components/items/UnknownItem.d.ts +2 -3
- package/dist/components/questions/CheckBoxQuestion.d.ts +2 -3
- package/dist/components/questions/CountrySelectQuestion.d.ts +2 -3
- package/dist/components/questions/DatePartsQuestion.d.ts +2 -3
- package/dist/components/questions/FloatQuestion.d.ts +2 -3
- package/dist/components/questions/IntegerQuestion.d.ts +2 -3
- package/dist/components/questions/OldSliderQuestion.d.ts +2 -3
- package/dist/components/questions/RadioQuestion.d.ts +2 -3
- package/dist/components/questions/ScaleQuestion.d.ts +2 -3
- package/dist/components/questions/SelectQuestion.d.ts +2 -3
- package/dist/components/questions/SliderQuestion.d.ts +2 -3
- package/dist/components/questions/SplitToUnitsQuestion.d.ts +2 -3
- package/dist/components/questions/StringQuestion.d.ts +2 -3
- package/dist/components/questions/TextareaQuestion.d.ts +2 -3
- package/dist/core/calculations.d.ts +0 -1
- package/dist/core/curlies_interpolator.d.ts +2 -3
- package/dist/core/index.d.ts +7 -7
- package/dist/core/panel_logic.d.ts +2 -3
- package/dist/core/quby_context.d.ts +2 -3
- package/dist/core/questionnaire.d.ts +4 -3
- package/dist/core/questionnaire_json.d.ts +8 -3
- package/dist/core/response.d.ts +4 -5
- package/dist/core/response_json.d.ts +2 -3
- package/dist/core/validators.d.ts +2 -3
- package/dist/core/visibility_rules.d.ts +2 -3
- package/dist/i18n.d.ts +1 -2
- package/dist/index.d.ts +2 -3
- package/dist/logic/index.d.ts +3 -3
- package/dist/logic/map_css_vars.d.ts +0 -1
- package/dist/logic/use_might_become_valid.d.ts +1 -2
- package/dist/logic/use_question_shortkeys.d.ts +2 -3
- package/dist/quby-frontend.es.js +8912 -8940
- package/dist/quby-frontend.umd.js +76 -76
- package/dist/stories/_helpers.d.ts +4 -4
- package/package.json +3 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { IQuestion
|
|
3
|
-
import {
|
|
4
|
-
|
|
1
|
+
import type { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { IQuestion } from "../";
|
|
3
|
+
import { Quby } from "../";
|
|
4
|
+
import { IResponseJson, IQuestionnaire } from "../core";
|
|
5
5
|
interface Arguments {
|
|
6
6
|
responseJson?: Partial<IResponseJson>;
|
|
7
7
|
unsavedResponseWarning?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roqua/quby-frontend",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.10",
|
|
4
4
|
"main": "./dist/quby-frontend.umd.js",
|
|
5
5
|
"module": "./dist/quby-frontend.es.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
"storybook": "storybook dev -p 6006",
|
|
82
82
|
"build-storybook": "storybook build",
|
|
83
83
|
"test": "jest",
|
|
84
|
-
"typecheck": "tsc --noEmit"
|
|
84
|
+
"typecheck": "tsc --noEmit",
|
|
85
|
+
"cleanup": "pnpm -r exec rm -rf dist"
|
|
85
86
|
}
|
|
86
87
|
}
|