optimized-react-component-library-xyz123 0.2.4 → 0.2.6
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 +287 -294
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +277 -284
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/darkMode.css +10 -7
- package/src/css/mobileView.css +0 -9
- package/src/css/questions.css +33 -32
- package/src/css/styles.css +2 -16
package/dist/index.d.mts
CHANGED
|
@@ -129,6 +129,15 @@ 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
|
+
|
|
132
141
|
interface TextAreaProps {
|
|
133
142
|
question: IQuestion;
|
|
134
143
|
handleQuestionInputChange: any;
|
|
@@ -160,15 +169,6 @@ interface AddFilesProps {
|
|
|
160
169
|
|
|
161
170
|
declare const AddFiles: FC<AddFilesProps>;
|
|
162
171
|
|
|
163
|
-
interface SingleCheckboxProps {
|
|
164
|
-
question: IQuestion;
|
|
165
|
-
handleQuestionInputChange: any;
|
|
166
|
-
showPreview?: boolean;
|
|
167
|
-
activatedLanguage?: string;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
declare const SingleCheckbox: 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, 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,
|
|
847
|
+
export { AddFiles as AddFilesStandard, CheckboxGroup as CheckboxGroupStandard, 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, 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,6 +129,15 @@ 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
|
+
|
|
132
141
|
interface TextAreaProps {
|
|
133
142
|
question: IQuestion;
|
|
134
143
|
handleQuestionInputChange: any;
|
|
@@ -160,15 +169,6 @@ interface AddFilesProps {
|
|
|
160
169
|
|
|
161
170
|
declare const AddFiles: FC<AddFilesProps>;
|
|
162
171
|
|
|
163
|
-
interface SingleCheckboxProps {
|
|
164
|
-
question: IQuestion;
|
|
165
|
-
handleQuestionInputChange: any;
|
|
166
|
-
showPreview?: boolean;
|
|
167
|
-
activatedLanguage?: string;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
declare const SingleCheckbox: 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, 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,
|
|
847
|
+
export { AddFiles as AddFilesStandard, CheckboxGroup as CheckboxGroupStandard, 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, 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 };
|