optimized-react-component-library-xyz123 0.13.2 → 0.13.3
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 +12 -3
- package/dist/index.d.ts +12 -3
- package/dist/index.js +348 -268
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +341 -262
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -123,14 +123,14 @@ interface RadioProps {
|
|
|
123
123
|
|
|
124
124
|
declare const InputRadio: FC<RadioProps>;
|
|
125
125
|
|
|
126
|
-
interface
|
|
126
|
+
interface MultipleCheckboxesProps {
|
|
127
127
|
question: IQuestion;
|
|
128
128
|
handleQuestionInputChange: any;
|
|
129
129
|
showPreview?: boolean;
|
|
130
130
|
activatedLanguage?: string;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
-
declare const
|
|
133
|
+
declare const MultipleCheckboxes: FC<MultipleCheckboxesProps>;
|
|
134
134
|
|
|
135
135
|
interface CheckboxGroupProps {
|
|
136
136
|
question: IQuestion;
|
|
@@ -189,6 +189,15 @@ interface DropdownProps {
|
|
|
189
189
|
|
|
190
190
|
declare const CustomDropdownStandard: FC<DropdownProps>;
|
|
191
191
|
|
|
192
|
+
interface MultipleTextFieldProps {
|
|
193
|
+
question: IQuestion;
|
|
194
|
+
handleQuestionInputChange: any;
|
|
195
|
+
showPreview?: boolean;
|
|
196
|
+
activatedLanguage?: string;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
declare const MultipleTextField: FC<MultipleTextFieldProps>;
|
|
200
|
+
|
|
192
201
|
/**
|
|
193
202
|
* Kontrollerar om en fråga har ett valideringsfel baserat på dess egenskaper och valideringstyper.
|
|
194
203
|
*
|
|
@@ -864,4 +873,4 @@ interface FormStatusMessagesProps {
|
|
|
864
873
|
*/
|
|
865
874
|
declare const FormStatusMessagesScreenReader: React$1.FC<FormStatusMessagesProps>;
|
|
866
875
|
|
|
867
|
-
export { AddFiles as AddFilesStandard, CheckboxGroup as CheckboxGroupStandard, CookieBanner, type CookieConsentConfig, CustomDropdownStandard as DropdownStandard, 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,
|
|
876
|
+
export { AddFiles as AddFilesStandard, CheckboxGroup as CheckboxGroupStandard, CookieBanner, type CookieConsentConfig, CustomDropdownStandard as DropdownStandard, 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, MultipleTextField as MultipleTextFieldStandard, PrincipleOfPublicity as PrincipleOfPublicityStandard, QuestionGroup, QuestionRenderer, InputRadio as RadioMultipleStandard, SingleCheckbox 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
|
@@ -123,14 +123,14 @@ interface RadioProps {
|
|
|
123
123
|
|
|
124
124
|
declare const InputRadio: FC<RadioProps>;
|
|
125
125
|
|
|
126
|
-
interface
|
|
126
|
+
interface MultipleCheckboxesProps {
|
|
127
127
|
question: IQuestion;
|
|
128
128
|
handleQuestionInputChange: any;
|
|
129
129
|
showPreview?: boolean;
|
|
130
130
|
activatedLanguage?: string;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
-
declare const
|
|
133
|
+
declare const MultipleCheckboxes: FC<MultipleCheckboxesProps>;
|
|
134
134
|
|
|
135
135
|
interface CheckboxGroupProps {
|
|
136
136
|
question: IQuestion;
|
|
@@ -189,6 +189,15 @@ interface DropdownProps {
|
|
|
189
189
|
|
|
190
190
|
declare const CustomDropdownStandard: FC<DropdownProps>;
|
|
191
191
|
|
|
192
|
+
interface MultipleTextFieldProps {
|
|
193
|
+
question: IQuestion;
|
|
194
|
+
handleQuestionInputChange: any;
|
|
195
|
+
showPreview?: boolean;
|
|
196
|
+
activatedLanguage?: string;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
declare const MultipleTextField: FC<MultipleTextFieldProps>;
|
|
200
|
+
|
|
192
201
|
/**
|
|
193
202
|
* Kontrollerar om en fråga har ett valideringsfel baserat på dess egenskaper och valideringstyper.
|
|
194
203
|
*
|
|
@@ -864,4 +873,4 @@ interface FormStatusMessagesProps {
|
|
|
864
873
|
*/
|
|
865
874
|
declare const FormStatusMessagesScreenReader: React$1.FC<FormStatusMessagesProps>;
|
|
866
875
|
|
|
867
|
-
export { AddFiles as AddFilesStandard, CheckboxGroup as CheckboxGroupStandard, CookieBanner, type CookieConsentConfig, CustomDropdownStandard as DropdownStandard, 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,
|
|
876
|
+
export { AddFiles as AddFilesStandard, CheckboxGroup as CheckboxGroupStandard, CookieBanner, type CookieConsentConfig, CustomDropdownStandard as DropdownStandard, 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, MultipleTextField as MultipleTextFieldStandard, PrincipleOfPublicity as PrincipleOfPublicityStandard, QuestionGroup, QuestionRenderer, InputRadio as RadioMultipleStandard, SingleCheckbox 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 };
|