optimized-react-component-library-xyz123 0.1.160 → 0.1.161
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/index.d.mts +10 -10
- package/dist/index.d.ts +10 -10
- package/dist/index.js +210 -218
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +200 -208
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/mobileView.css +0 -3
- package/src/css/questions.css +51 -38
package/dist/index.d.mts
CHANGED
|
@@ -129,15 +129,6 @@ interface MultipleCheckboxesProps {
|
|
|
129
129
|
|
|
130
130
|
declare const MultipleCheckboxes: FC<MultipleCheckboxesProps>;
|
|
131
131
|
|
|
132
|
-
interface CheckboxGroupProps {
|
|
133
|
-
question: IQuestion;
|
|
134
|
-
handleQuestionInputChange: any;
|
|
135
|
-
showPreview?: boolean;
|
|
136
|
-
activatedLanguage?: string;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
declare const CheckboxGroup: FC<CheckboxGroupProps>;
|
|
140
|
-
|
|
141
132
|
interface TextAreaProps {
|
|
142
133
|
question: IQuestion;
|
|
143
134
|
handleQuestionInputChange: any;
|
|
@@ -169,6 +160,15 @@ interface AddFilesProps {
|
|
|
169
160
|
|
|
170
161
|
declare const AddFiles: FC<AddFilesProps>;
|
|
171
162
|
|
|
163
|
+
interface SingleCheckboxProps {
|
|
164
|
+
question: IQuestion;
|
|
165
|
+
handleQuestionInputChange: any;
|
|
166
|
+
showPreview?: boolean;
|
|
167
|
+
activatedLanguage?: string;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
declare const SingleCheckboxes: FC<SingleCheckboxProps>;
|
|
171
|
+
|
|
172
172
|
/**
|
|
173
173
|
* Kontrollerar om en fråga har ett valideringsfel baserat på dess egenskaper och valideringstyper.
|
|
174
174
|
*
|
|
@@ -844,4 +844,4 @@ interface FormStatusMessagesProps {
|
|
|
844
844
|
*/
|
|
845
845
|
declare const FormStatusMessagesScreenReader: React$1.FC<FormStatusMessagesProps>;
|
|
846
846
|
|
|
847
|
-
export { AddFiles as AddFilesStandard,
|
|
847
|
+
export { AddFiles as AddFilesStandard, CookieBanner, type CookieConsentConfig, EditPreviewLink as EditPreviewLinkStandard, Footer as FooterStandard, FormStatusMessagesScreenReader, Header as HeaderStandard, type IApplicationContent, type IFormState, type IOption, type IPTSLink, type IQuestion, type IQuestionExtraAttribute, type IStepObject, type IStepQuestionData, type ITextBlock, type LanguageSupportConfig, Modal as ModalStandard, MultipleCheckboxes as MultipleCheckboxesStandard, PrincipleOfPublicity as PrincipleOfPublicityStandard, QuestionGroup, QuestionRenderer, InputRadio as RadioMultipleStandard, SingleCheckboxes as SingleCheckboxStandard, SkipLink as SkipLinkStandard, StartApplicationButton, StepperButtons as StepperButtonsStandard, Stepper as StepperStandard, InputTextarea as TextAreaStandard, TextBody, TextFieldStandard, ValidationErrorSummaryList, buildStepCategoryGroupQuestionStructure, createApiDataObject, createCookieConsent, createFormSlice, createGlobalLanguageSlice, createGlobalLanguageSlice as createLanguageSlice, createFormSlice as createQuestionsSlice, findVisibleQuestionsWithValidationErrors, focusElement, getGroupCheckIds, hasQuestionValidationError, isQuestionDependencySatisfied, isScriptLoaded, makeFormSelectors, makeglobalLanguageSelectors as makeLanguageSelectors, makeFormSelectors as makeQuestionsSelectors, makeglobalLanguageSelectors, preparePreviewData, removeScriptById, toggleScriptByConsent, updateQuestionsAndCategoriesVisibilityAndErrors, useCookieConsent, useFormStatusModal, useInputMethodDetection, usePTSPageTitle };
|
package/dist/index.d.ts
CHANGED
|
@@ -129,15 +129,6 @@ interface MultipleCheckboxesProps {
|
|
|
129
129
|
|
|
130
130
|
declare const MultipleCheckboxes: FC<MultipleCheckboxesProps>;
|
|
131
131
|
|
|
132
|
-
interface CheckboxGroupProps {
|
|
133
|
-
question: IQuestion;
|
|
134
|
-
handleQuestionInputChange: any;
|
|
135
|
-
showPreview?: boolean;
|
|
136
|
-
activatedLanguage?: string;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
declare const CheckboxGroup: FC<CheckboxGroupProps>;
|
|
140
|
-
|
|
141
132
|
interface TextAreaProps {
|
|
142
133
|
question: IQuestion;
|
|
143
134
|
handleQuestionInputChange: any;
|
|
@@ -169,6 +160,15 @@ interface AddFilesProps {
|
|
|
169
160
|
|
|
170
161
|
declare const AddFiles: FC<AddFilesProps>;
|
|
171
162
|
|
|
163
|
+
interface SingleCheckboxProps {
|
|
164
|
+
question: IQuestion;
|
|
165
|
+
handleQuestionInputChange: any;
|
|
166
|
+
showPreview?: boolean;
|
|
167
|
+
activatedLanguage?: string;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
declare const SingleCheckboxes: FC<SingleCheckboxProps>;
|
|
171
|
+
|
|
172
172
|
/**
|
|
173
173
|
* Kontrollerar om en fråga har ett valideringsfel baserat på dess egenskaper och valideringstyper.
|
|
174
174
|
*
|
|
@@ -844,4 +844,4 @@ interface FormStatusMessagesProps {
|
|
|
844
844
|
*/
|
|
845
845
|
declare const FormStatusMessagesScreenReader: React$1.FC<FormStatusMessagesProps>;
|
|
846
846
|
|
|
847
|
-
export { AddFiles as AddFilesStandard,
|
|
847
|
+
export { AddFiles as AddFilesStandard, CookieBanner, type CookieConsentConfig, EditPreviewLink as EditPreviewLinkStandard, Footer as FooterStandard, FormStatusMessagesScreenReader, Header as HeaderStandard, type IApplicationContent, type IFormState, type IOption, type IPTSLink, type IQuestion, type IQuestionExtraAttribute, type IStepObject, type IStepQuestionData, type ITextBlock, type LanguageSupportConfig, Modal as ModalStandard, MultipleCheckboxes as MultipleCheckboxesStandard, PrincipleOfPublicity as PrincipleOfPublicityStandard, QuestionGroup, QuestionRenderer, InputRadio as RadioMultipleStandard, SingleCheckboxes as SingleCheckboxStandard, SkipLink as SkipLinkStandard, StartApplicationButton, StepperButtons as StepperButtonsStandard, Stepper as StepperStandard, InputTextarea as TextAreaStandard, TextBody, TextFieldStandard, ValidationErrorSummaryList, buildStepCategoryGroupQuestionStructure, createApiDataObject, createCookieConsent, createFormSlice, createGlobalLanguageSlice, createGlobalLanguageSlice as createLanguageSlice, createFormSlice as createQuestionsSlice, findVisibleQuestionsWithValidationErrors, focusElement, getGroupCheckIds, hasQuestionValidationError, isQuestionDependencySatisfied, isScriptLoaded, makeFormSelectors, makeglobalLanguageSelectors as makeLanguageSelectors, makeFormSelectors as makeQuestionsSelectors, makeglobalLanguageSelectors, preparePreviewData, removeScriptById, toggleScriptByConsent, updateQuestionsAndCategoriesVisibilityAndErrors, useCookieConsent, useFormStatusModal, useInputMethodDetection, usePTSPageTitle };
|