@digigov/form 2.0.0-rc.8 → 2.0.2
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/CHANGELOG.md +113 -3
- package/Field/ErrorGroup.d.ts +15 -0
- package/Field/ErrorGroup.js +53 -0
- package/Field/FieldBase.d.ts +1 -1
- package/Field/FieldBase.js +77 -0
- package/Field/FieldBaseContainer.d.ts +2 -2
- package/Field/FieldBaseContainer.js +43 -0
- package/Field/FieldConditional.d.ts +1 -1
- package/Field/FieldConditional.js +45 -0
- package/Field/index.d.ts +1 -1
- package/Field/index.js +70 -68
- package/Field/types.d.ts +61 -11
- package/Field/utils/evaluateFieldWithConditions.d.ts +2 -0
- package/Field/utils/evaluateFieldWithConditions.js +19 -0
- package/Field/utils/resolveField.d.ts +3 -0
- package/Field/utils/resolveField.js +32 -0
- package/Field/utils/useField.d.ts +2 -0
- package/Field/utils/useField.js +47 -0
- package/FieldArray/BaseFieldArray.d.ts +5 -0
- package/FieldArray/BaseFieldArray.js +46 -0
- package/FieldArray/FormDialog/ArrayDisplay/ArrayContainerDisplay.d.ts +9 -0
- package/FieldArray/FormDialog/ArrayDisplay/ArrayContainerDisplay.js +13 -0
- package/FieldArray/FormDialog/ArrayDisplay/ArrayItemDisplay.d.ts +26 -0
- package/FieldArray/FormDialog/ArrayDisplay/ArrayItemDisplay.js +134 -0
- package/FieldArray/FormDialog/ArrayDisplay/ArrayItemHeader.d.ts +5 -0
- package/FieldArray/FormDialog/ArrayDisplay/ArrayItemHeader.js +6 -0
- package/FieldArray/FormDialog/ArrayDisplay/index.d.ts +15 -0
- package/FieldArray/FormDialog/ArrayDisplay/index.js +32 -0
- package/FieldArray/FormDialog/ArrayEditModal.d.ts +24 -0
- package/FieldArray/FormDialog/ArrayEditModal.js +138 -0
- package/FieldArray/FormDialog/index.d.ts +19 -0
- package/FieldArray/FormDialog/index.js +199 -0
- package/FieldArray/index.d.ts +11 -2
- package/FieldArray/index.js +65 -60
- package/FieldObject/index.d.ts +11 -3
- package/FieldObject/index.js +53 -52
- package/Fieldset/FieldsetWithContext.js +27 -0
- package/Fieldset/index.d.ts +2 -2
- package/Fieldset/index.js +18 -32
- package/Fieldset/types.d.ts +3 -2
- package/FormBuilder/index.d.ts +8 -1
- package/FormBuilder/index.js +239 -2
- package/FormContext.d.ts +3 -2
- package/FormContext.js +7 -0
- package/MultiplicityField/add-objects.d.ts +3 -2
- package/MultiplicityField/add-objects.js +107 -0
- package/MultiplicityField/index.d.ts +2 -19
- package/MultiplicityField/index.js +84 -111
- package/MultiplicityField/types.d.ts +19 -0
- package/Questions/Questions.d.ts +1 -1
- package/Questions/Questions.js +48 -0
- package/Questions/QuestionsContext.d.ts +1 -2
- package/Questions/QuestionsContext.js +10 -0
- package/Questions/Step/ReviewStep.js +32 -0
- package/Questions/Step/Step.d.ts +1 -1
- package/Questions/Step/Step.js +39 -0
- package/Questions/Step/StepArrayReview.d.ts +1 -1
- package/Questions/Step/StepArrayReview.js +35 -0
- package/Questions/Step/StepContext.d.ts +1 -2
- package/Questions/Step/StepContext.js +28 -0
- package/Questions/Step/StepDescription.d.ts +1 -1
- package/Questions/Step/StepDescription.js +18 -0
- package/Questions/Step/StepForm.d.ts +2 -2
- package/Questions/Step/StepForm.js +29 -0
- package/Questions/Step/StepQuote.d.ts +1 -1
- package/Questions/Step/StepQuote.js +5 -0
- package/Questions/Step/StepTitle.d.ts +2 -1
- package/Questions/Step/StepTitle.js +25 -0
- package/Questions/Step/getAddMoreFields.d.ts +2 -2
- package/Questions/Step/getAddMoreFields.js +24 -0
- package/Questions/Step/index.d.ts +11 -12
- package/Questions/Step/index.js +13 -13
- package/Questions/Step/types.d.ts +2 -1
- package/Questions/Step/types.js +0 -0
- package/Questions/getNextStep.d.ts +1 -1
- package/Questions/getNextStep.js +13 -0
- package/Questions/index.d.ts +2 -2
- package/Questions/index.js +4 -3
- package/Questions/types.d.ts +2 -1
- package/Questions/types.js +0 -0
- package/hooks/useFieldFocusManager.d.ts +25 -0
- package/hooks/useFieldFocusManager.js +83 -0
- package/hooks/utils.d.ts +18 -0
- package/hooks/utils.js +60 -0
- package/index.d.ts +5 -2
- package/index.js +8 -4
- package/inputs/AutoCompleteInput/index.d.ts +4 -4
- package/inputs/AutoCompleteInput/index.js +42 -55
- package/inputs/Checkboxes/index.d.ts +7 -4
- package/inputs/Checkboxes/index.js +50 -91
- package/inputs/DateInput/index.d.ts +3 -7
- package/inputs/DateInput/index.js +128 -125
- package/inputs/DateTimeInput/index.d.ts +10 -0
- package/inputs/DateTimeInput/index.js +190 -0
- package/inputs/FileInput/index.d.ts +18 -2
- package/inputs/FileInput/index.js +59 -56
- package/inputs/ImageInput/index.d.ts +10 -2
- package/inputs/ImageInput/index.js +94 -74
- package/inputs/Input/index.d.ts +5 -2
- package/inputs/Input/index.js +67 -67
- package/inputs/Label/index.d.ts +2 -4
- package/inputs/Label/index.js +13 -21
- package/inputs/OtpInput/index.d.ts +1 -5
- package/inputs/OtpInput/index.js +122 -139
- package/inputs/Radio/index.d.ts +10 -3
- package/inputs/Radio/index.js +72 -56
- package/inputs/Select/index.d.ts +7 -4
- package/inputs/Select/index.js +23 -30
- package/inputs/index.d.ts +9 -9
- package/inputs/index.js +10 -9
- package/inputs/registry.d.ts +5 -0
- package/inputs/registry.js +80 -0
- package/internal.d.ts +5 -34
- package/internal.js +6 -0
- package/lazy.d.ts +93 -65
- package/lazy.js +163 -0
- package/package.json +12 -13
- package/registry.d.ts +45 -27
- package/registry.js +170 -0
- package/src/Field/ErrorGroup.tsx +84 -0
- package/src/Field/FieldBase.tsx +43 -25
- package/src/Field/FieldBaseContainer.tsx +71 -47
- package/src/Field/FieldConditional.tsx +10 -2
- package/src/Field/doc.mdx +207 -0
- package/src/Field/index.tsx +37 -23
- package/src/Field/types.tsx +92 -13
- package/src/Field/utils/evaluateFieldWithConditions.ts +33 -0
- package/src/Field/utils/resolveField.ts +58 -0
- package/src/Field/utils/useField.ts +68 -0
- package/src/FieldArray/BaseFieldArray.tsx +97 -0
- package/src/FieldArray/FieldArray.stories.js +4 -2
- package/src/FieldArray/FormDialog/ArrayDisplay/ArrayContainerDisplay.tsx +45 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/ArrayDisplay.stories.js +14 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/ArrayItemDisplay.tsx +370 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/ArrayItemHeader.tsx +15 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/__stories__/Cards.tsx +88 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/__stories__/Default.tsx +93 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/__stories__/ReadOnly.tsx +79 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/__stories__/ReadOnlyCards.tsx +75 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/__stories__/Sortable.tsx +93 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/__stories__/SortableCards.tsx +88 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/index.test.tsx +44 -0
- package/src/FieldArray/FormDialog/ArrayDisplay/index.tsx +67 -0
- package/src/FieldArray/FormDialog/ArrayEditModal.tsx +241 -0
- package/src/FieldArray/FormDialog/index.tsx +302 -0
- package/src/FieldArray/__stories__/CardsWithError.tsx +110 -0
- package/src/FieldArray/__stories__/Default.tsx +2 -1
- package/src/FieldArray/__stories__/TableWithError.tsx +111 -0
- package/src/FieldArray/__stories__/WithExactLength.tsx +2 -1
- package/src/FieldArray/__stories__/WithModal.tsx +188 -0
- package/src/FieldArray/__tests__/fieldset-multiplicity.spec.tsx +271 -0
- package/src/FieldArray/__tests__/multiplicity-attachment.spec.tsx +280 -0
- package/src/FieldArray/__tests__/multiplicity-optional.spec.tsx +232 -0
- package/src/FieldArray/__tests__/multiplicity-required.spec.tsx +170 -0
- package/src/FieldArray/__tests__/nested-fieldset-multiplicity.spec.tsx +627 -0
- package/src/FieldArray/__tests__/preference-multiple-choice.spec.tsx +222 -0
- package/src/FieldArray/index.spec.tsx +355 -0
- package/src/FieldArray/index.test.tsx +43 -0
- package/src/FieldArray/index.tsx +84 -55
- package/src/FieldObject/index.tsx +53 -27
- package/src/Fieldset/FieldsetWithContext.tsx +1 -1
- package/src/Fieldset/index.tsx +6 -6
- package/src/Fieldset/types.tsx +5 -3
- package/src/FormBuilder/FormBuilder.stories.js +6 -1
- package/src/FormBuilder/__stories__/AutoErrorGrouping.tsx +63 -0
- package/src/FormBuilder/__stories__/Default.tsx +1 -1
- package/src/FormBuilder/__stories__/ErrorGrouping.tsx +43 -0
- package/src/FormBuilder/{FormBuilder.mdx → doc.mdx} +27 -35
- package/src/FormBuilder/index.test.tsx +32 -0
- package/src/FormBuilder/index.tsx +314 -1
- package/src/FormBuilder/interaction.test.tsx +40 -0
- package/src/FormBuilder/scenarios.test.tsx +2775 -0
- package/src/FormContext.tsx +7 -3
- package/src/MultiplicityField/MultiplicityField.stories.js +9 -6
- package/src/MultiplicityField/__stories__/Default.tsx +1 -1
- package/src/MultiplicityField/__stories__/PreviewDisplay.tsx +2 -4
- package/src/MultiplicityField/__stories__/WithExactLength.tsx +2 -2
- package/src/MultiplicityField/__stories__/WithMaxLength.tsx +2 -2
- package/src/MultiplicityField/__stories__/WithMinAndMaxLength.tsx +2 -2
- package/src/MultiplicityField/__stories__/WithMinLength.tsx +2 -2
- package/src/MultiplicityField/add-objects.tsx +39 -30
- package/{cjs/MultiplicityField/MultiplicityField.mdx → src/MultiplicityField/doc.mdx} +112 -98
- package/src/MultiplicityField/index.test.tsx +44 -0
- package/src/MultiplicityField/index.tsx +25 -34
- package/src/MultiplicityField/types.ts +25 -0
- package/src/Questions/Questions.stories.js +4 -1
- package/src/Questions/Questions.tsx +6 -6
- package/src/Questions/QuestionsContext.tsx +1 -1
- package/src/Questions/Step/Step.tsx +1 -1
- package/src/Questions/Step/StepArrayReview.tsx +3 -3
- package/src/Questions/Step/StepContext.tsx +1 -1
- package/src/Questions/Step/StepDescription.tsx +2 -1
- package/src/Questions/Step/StepForm.tsx +2 -2
- package/src/Questions/Step/StepQuote.tsx +2 -1
- package/src/Questions/Step/StepTitle.tsx +6 -3
- package/src/Questions/Step/getAddMoreFields.tsx +2 -2
- package/src/Questions/Step/index.ts +0 -1
- package/src/Questions/Step/types.tsx +2 -1
- package/src/Questions/__snapshots__/index.spec.tsx.snap +74 -587
- package/src/Questions/__stories__/Default.tsx +1 -1
- package/{Questions/index.mdx → src/Questions/doc.mdx} +34 -57
- package/src/Questions/getNextStep.tsx +1 -1
- package/src/Questions/index.spec.tsx +17 -5
- package/src/Questions/index.test.tsx +24 -0
- package/src/Questions/types.tsx +2 -1
- package/src/create-simple-form.mdx +2 -6
- package/src/{index.mdx → doc.mdx} +29 -18
- package/src/hooks/__tests__/useFieldFocusManager.spec.tsx +1079 -0
- package/src/hooks/__tests__/utils.spec.ts +568 -0
- package/src/hooks/useFieldFocusManager.ts +162 -0
- package/src/hooks/utils.ts +122 -0
- package/src/index.ts +4 -1
- package/src/inputs/AutoCompleteInput/AutoComplete.stories.js +5 -2
- package/src/inputs/AutoCompleteInput/__stories__/Default.tsx +3 -11
- package/src/inputs/AutoCompleteInput/__stories__/Multiple.tsx +2 -9
- package/{cjs/inputs/AutoCompleteInput/index.mdx → src/inputs/AutoCompleteInput/doc.mdx} +2 -13
- package/src/inputs/AutoCompleteInput/index.test.tsx +28 -0
- package/src/inputs/AutoCompleteInput/index.tsx +40 -35
- package/src/inputs/Checkboxes/Checkboxes.stories.js +6 -3
- package/src/inputs/Checkboxes/__stories__/Conditional.tsx +1 -1
- package/src/inputs/Checkboxes/__stories__/Default.tsx +1 -1
- package/src/inputs/Checkboxes/__stories__/WithDivider.tsx +1 -1
- package/src/inputs/Checkboxes/{index.mdx → doc.mdx} +5 -15
- package/src/inputs/Checkboxes/index.test.tsx +32 -0
- package/src/inputs/Checkboxes/index.tsx +106 -92
- package/src/inputs/DateInput/DateInput.stories.js +8 -1
- package/src/inputs/DateInput/__stories__/Default.tsx +17 -16
- package/src/inputs/DateInput/__stories__/WithDefaultValue.tsx +26 -0
- package/src/inputs/DateInput/__stories__/WithInitialValue.tsx +28 -0
- package/src/inputs/DateInput/__stories__/WithWrongDefaultValue.tsx +26 -0
- package/src/inputs/DateInput/__stories__/WithWrongInitialValue.tsx +28 -0
- package/src/inputs/DateInput/{index.mdx → doc.mdx} +1 -8
- package/src/inputs/DateInput/index.test.tsx +40 -0
- package/src/inputs/DateInput/index.tsx +77 -27
- package/src/inputs/DateTimeInput/DateTimeInput.stories.js +14 -0
- package/src/inputs/DateTimeInput/__stories__/Default.tsx +25 -0
- package/src/inputs/DateTimeInput/__stories__/WithDefaultValue.tsx +26 -0
- package/src/inputs/DateTimeInput/__stories__/WithInitialValue.tsx +28 -0
- package/src/inputs/DateTimeInput/__stories__/WithWrongDefaultValue.tsx +26 -0
- package/src/inputs/DateTimeInput/__stories__/WithWrongInitialValue.tsx +28 -0
- package/src/inputs/DateTimeInput/doc.mdx +16 -0
- package/src/inputs/DateTimeInput/index.test.tsx +40 -0
- package/src/inputs/DateTimeInput/index.tsx +246 -0
- package/src/inputs/FileInput/FileInput.stories.js +5 -1
- package/src/inputs/FileInput/__stories__/Default.tsx +1 -1
- package/src/inputs/FileInput/__stories__/WithBorderAndLink.tsx +34 -0
- package/{inputs/FileInput/index.mdx → src/inputs/FileInput/doc.mdx} +1 -5
- package/src/inputs/FileInput/index.test.tsx +28 -0
- package/src/inputs/FileInput/index.tsx +102 -43
- package/src/inputs/ImageInput/ImageInput.stories.js +7 -3
- package/src/inputs/ImageInput/__stories__/Default.tsx +1 -1
- package/src/inputs/ImageInput/__stories__/{WithInvalidImageSize.tsx → MaxSize.tsx} +5 -3
- package/src/inputs/ImageInput/__stories__/WithInitialValues.tsx +45 -0
- package/src/inputs/ImageInput/__stories__/WithInvalidImageDimension.tsx +3 -1
- package/src/inputs/ImageInput/__stories__/logo.d.ts +4 -0
- package/src/inputs/ImageInput/__stories__/logo.png +0 -0
- package/src/inputs/ImageInput/doc.mdx +23 -0
- package/src/inputs/ImageInput/index.test.tsx +36 -0
- package/src/inputs/ImageInput/index.tsx +105 -52
- package/src/inputs/Input/Input.stories.js +17 -10
- package/src/inputs/Input/__stories__/AFM.tsx +1 -1
- package/src/inputs/Input/__stories__/AMKA.tsx +23 -0
- package/src/inputs/Input/__stories__/Boolean.tsx +1 -1
- package/src/inputs/Input/__stories__/Email.tsx +23 -0
- package/src/inputs/Input/__stories__/IBAN.tsx +1 -1
- package/src/inputs/Input/__stories__/Integer.tsx +1 -1
- package/src/inputs/Input/__stories__/LandlineNumber.tsx +3 -2
- package/src/inputs/Input/__stories__/MobilePhone.tsx +2 -1
- package/src/inputs/Input/__stories__/PhoneNumber.tsx +2 -1
- package/src/inputs/Input/__stories__/PostalCode.tsx +2 -1
- package/src/inputs/Input/__stories__/Rate.tsx +25 -0
- package/src/inputs/Input/__stories__/{Default.tsx → String.tsx} +2 -2
- package/src/inputs/Input/__stories__/StringWithTrimValidation.tsx +26 -0
- package/src/inputs/Input/__stories__/{TextWithCharacterLimit.tsx → TextWithLimit.tsx} +3 -2
- package/src/inputs/Input/doc.mdx +56 -0
- package/src/inputs/Input/index.test.tsx +76 -0
- package/src/inputs/Input/index.tsx +55 -35
- package/src/inputs/Label/Label.stories.js +4 -1
- package/src/inputs/Label/__stories__/Default.tsx +4 -2
- package/src/inputs/Label/doc.mdx +14 -0
- package/src/inputs/Label/index.test.tsx +24 -0
- package/src/inputs/Label/index.tsx +4 -11
- package/src/inputs/OtpInput/OtpInput.stories.js +4 -1
- package/src/inputs/OtpInput/__stories__/Default.tsx +1 -1
- package/{cjs/inputs/OtpInput/index.mdx → src/inputs/OtpInput/doc.mdx} +1 -8
- package/src/inputs/OtpInput/index.test.tsx +24 -0
- package/src/inputs/OtpInput/index.tsx +45 -34
- package/src/inputs/Radio/Radio.stories.js +6 -3
- package/src/inputs/Radio/__stories__/Conditional.tsx +3 -2
- package/src/inputs/Radio/__stories__/Default.tsx +1 -1
- package/src/inputs/Radio/__stories__/WithDivider.tsx +1 -1
- package/{cjs/inputs/Radio/index.mdx → src/inputs/Radio/doc.mdx} +5 -15
- package/src/inputs/Radio/index.test.tsx +32 -0
- package/src/inputs/Radio/index.tsx +93 -12
- package/src/inputs/Select/Select.stories.js +4 -1
- package/src/inputs/Select/__stories__/Default.tsx +1 -1
- package/src/inputs/Select/{index.mdx → doc.mdx} +1 -5
- package/src/inputs/Select/index.test.tsx +24 -0
- package/src/inputs/Select/index.tsx +22 -9
- package/src/inputs/registry.ts +86 -0
- package/src/installation.mdx +2 -5
- package/src/internal.ts +2 -31
- package/src/lazy.ts +56 -0
- package/src/registry.ts +179 -0
- package/src/types.tsx +21 -65
- package/src/utils.ts +67 -33
- package/src/validators/index.ts +138 -99
- package/src/validators/types.ts +1 -1
- package/src/validators/utils/amka.ts +39 -0
- package/src/validators/utils/date.ts +131 -0
- package/src/validators/utils/datetime.ts +222 -0
- package/src/validators/utils/email.ts +11 -0
- package/src/validators/utils/file.ts +35 -19
- package/src/validators/utils/iban.ts +2 -2
- package/src/validators/utils/image.ts +2 -2
- package/src/validators/utils/index.ts +15 -6
- package/src/validators/utils/int.ts +2 -2
- package/src/validators/utils/number.ts +2 -2
- package/src/validators/utils/otp.ts +2 -2
- package/src/validators/utils/phone.ts +65 -74
- package/src/validators/utils/postal_code.ts +3 -3
- package/src/validators/utils/text_limit.ts +2 -2
- package/src/validators/utils/uuid4.ts +2 -1
- package/src/validators/validators.spec.ts +6 -40
- package/types.d.ts +14 -37
- package/types.js +1 -0
- package/utils.d.ts +4 -1
- package/utils.js +56 -0
- package/validators/index.d.ts +6 -6
- package/validators/index.js +115 -180
- package/validators/types.d.ts +1 -1
- package/validators/types.js +0 -0
- package/validators/utils/afm.js +19 -0
- package/validators/utils/amka.d.ts +6 -0
- package/validators/utils/amka.js +27 -0
- package/validators/utils/date.d.ts +9 -0
- package/validators/utils/date.js +95 -0
- package/validators/utils/datetime.d.ts +9 -0
- package/validators/utils/datetime.js +121 -0
- package/validators/utils/email.d.ts +5 -0
- package/validators/utils/email.js +10 -0
- package/validators/utils/file.d.ts +2 -2
- package/validators/utils/file.js +31 -0
- package/validators/utils/iban.d.ts +2 -2
- package/validators/utils/iban.js +104 -0
- package/validators/utils/image.d.ts +2 -2
- package/validators/utils/image.js +65 -0
- package/validators/utils/index.d.ts +14 -11
- package/validators/utils/index.js +62 -85
- package/validators/utils/int.d.ts +1 -1
- package/validators/utils/int.js +13 -0
- package/validators/utils/number.d.ts +1 -1
- package/validators/utils/number.js +12 -0
- package/validators/utils/otp.d.ts +2 -2
- package/validators/utils/otp.js +21 -0
- package/validators/utils/phone.d.ts +3 -3
- package/validators/utils/phone.js +198 -0
- package/validators/utils/postal_code.d.ts +3 -3
- package/validators/utils/postal_code.js +18 -0
- package/validators/utils/text_limit.d.ts +2 -2
- package/validators/utils/text_limit.js +34 -0
- package/validators/utils/uuid4.js +14 -0
- package/Field/FieldBase/index.js +0 -82
- package/Field/FieldBase/package.json +0 -6
- package/Field/FieldBaseContainer/index.js +0 -40
- package/Field/FieldBaseContainer/package.json +0 -6
- package/Field/FieldConditional/index.js +0 -59
- package/Field/FieldConditional/package.json +0 -6
- package/Field/index.mdx +0 -6
- package/Field/package.json +0 -6
- package/Field/types/index.js +0 -1
- package/Field/types/package.json +0 -6
- package/Field/utils/index.js +0 -153
- package/Field/utils/package.json +0 -6
- package/Field/utils.d.ts +0 -5
- package/FieldArray/FieldArray.stories/index.js +0 -8
- package/FieldArray/FieldArray.stories/package.json +0 -6
- package/FieldArray/FieldArray.stories.d.ts +0 -9
- package/FieldArray/FieldArray.stories.playwright.json +0 -353
- package/FieldArray/__stories__/Default/index.js +0 -88
- package/FieldArray/__stories__/Default/package.json +0 -6
- package/FieldArray/__stories__/Default.d.ts +0 -2
- package/FieldArray/__stories__/WithExactLength/index.js +0 -88
- package/FieldArray/__stories__/WithExactLength/package.json +0 -6
- package/FieldArray/__stories__/WithExactLength.d.ts +0 -2
- package/FieldArray/package.json +0 -6
- package/FieldObject/package.json +0 -6
- package/Fieldset/FieldsetWithContext/index.js +0 -35
- package/Fieldset/FieldsetWithContext/package.json +0 -6
- package/Fieldset/package.json +0 -6
- package/Fieldset/types/index.js +0 -1
- package/Fieldset/types/package.json +0 -6
- package/Form.stories/index.js +0 -3
- package/Form.stories/package.json +0 -6
- package/Form.stories.d.ts +0 -4
- package/FormBuilder/FormBuilder/index.js +0 -152
- package/FormBuilder/FormBuilder/package.json +0 -6
- package/FormBuilder/FormBuilder.d.ts +0 -5
- package/FormBuilder/FormBuilder.mdx +0 -256
- package/FormBuilder/FormBuilder.stories/index.js +0 -7
- package/FormBuilder/FormBuilder.stories/package.json +0 -6
- package/FormBuilder/FormBuilder.stories.d.ts +0 -8
- package/FormBuilder/FormBuilder.stories.playwright.json +0 -52
- package/FormBuilder/__stories__/Default/index.js +0 -26
- package/FormBuilder/__stories__/Default/package.json +0 -6
- package/FormBuilder/__stories__/Default.d.ts +0 -3
- package/FormBuilder/package.json +0 -6
- package/FormContext/index.js +0 -5
- package/FormContext/package.json +0 -6
- package/MultiplicityField/MultiplicityField.mdx +0 -590
- package/MultiplicityField/MultiplicityField.stories/index.js +0 -12
- package/MultiplicityField/MultiplicityField.stories/package.json +0 -6
- package/MultiplicityField/MultiplicityField.stories.d.ts +0 -13
- package/MultiplicityField/MultiplicityField.stories.playwright.json +0 -1370
- package/MultiplicityField/__stories__/Default/index.js +0 -95
- package/MultiplicityField/__stories__/Default/package.json +0 -6
- package/MultiplicityField/__stories__/Default.d.ts +0 -2
- package/MultiplicityField/__stories__/PreviewDisplay/index.js +0 -78
- package/MultiplicityField/__stories__/PreviewDisplay/package.json +0 -6
- package/MultiplicityField/__stories__/PreviewDisplay.d.ts +0 -2
- package/MultiplicityField/__stories__/WithExactLength/index.js +0 -90
- package/MultiplicityField/__stories__/WithExactLength/package.json +0 -6
- package/MultiplicityField/__stories__/WithExactLength.d.ts +0 -2
- package/MultiplicityField/__stories__/WithMaxLength/index.js +0 -93
- package/MultiplicityField/__stories__/WithMaxLength/package.json +0 -6
- package/MultiplicityField/__stories__/WithMaxLength.d.ts +0 -2
- package/MultiplicityField/__stories__/WithMinAndMaxLength/index.js +0 -94
- package/MultiplicityField/__stories__/WithMinAndMaxLength/package.json +0 -6
- package/MultiplicityField/__stories__/WithMinAndMaxLength.d.ts +0 -2
- package/MultiplicityField/__stories__/WithMinLength/index.js +0 -93
- package/MultiplicityField/__stories__/WithMinLength/package.json +0 -6
- package/MultiplicityField/__stories__/WithMinLength.d.ts +0 -2
- package/MultiplicityField/add-objects/index.js +0 -148
- package/MultiplicityField/add-objects/package.json +0 -6
- package/MultiplicityField/package.json +0 -6
- package/Questions/Questions/index.js +0 -75
- package/Questions/Questions/package.json +0 -6
- package/Questions/Questions.stories/index.js +0 -7
- package/Questions/Questions.stories/package.json +0 -6
- package/Questions/Questions.stories.d.ts +0 -8
- package/Questions/QuestionsContext/index.js +0 -11
- package/Questions/QuestionsContext/package.json +0 -6
- package/Questions/Step/ReviewStep/index.js +0 -50
- package/Questions/Step/ReviewStep/package.json +0 -6
- package/Questions/Step/Step/index.js +0 -62
- package/Questions/Step/Step/package.json +0 -6
- package/Questions/Step/StepArrayReview/index.js +0 -46
- package/Questions/Step/StepArrayReview/package.json +0 -6
- package/Questions/Step/StepContext/index.js +0 -27
- package/Questions/Step/StepContext/package.json +0 -6
- package/Questions/Step/StepDescription/index.js +0 -24
- package/Questions/Step/StepDescription/package.json +0 -6
- package/Questions/Step/StepForm/index.js +0 -44
- package/Questions/Step/StepForm/package.json +0 -6
- package/Questions/Step/StepQuote/index.js +0 -10
- package/Questions/Step/StepQuote/package.json +0 -6
- package/Questions/Step/StepTitle/index.js +0 -41
- package/Questions/Step/StepTitle/package.json +0 -6
- package/Questions/Step/getAddMoreFields/index.js +0 -21
- package/Questions/Step/getAddMoreFields/package.json +0 -6
- package/Questions/Step/package.json +0 -6
- package/Questions/Step/types/index.js +0 -1
- package/Questions/Step/types/package.json +0 -6
- package/Questions/__snapshots__/index.spec.tsx.snap +0 -596
- package/Questions/__stories__/Default/index.js +0 -102
- package/Questions/__stories__/Default/package.json +0 -6
- package/Questions/__stories__/Default.d.ts +0 -3
- package/Questions/getNextStep/index.js +0 -20
- package/Questions/getNextStep/package.json +0 -6
- package/Questions/index.spec/index.js +0 -59
- package/Questions/index.spec/package.json +0 -6
- package/Questions/index.spec.d.ts +0 -1
- package/Questions/package.json +0 -6
- package/Questions/types/index.js +0 -1
- package/Questions/types/package.json +0 -6
- package/cjs/Field/FieldBase/index.js +0 -89
- package/cjs/Field/FieldBaseContainer/index.js +0 -47
- package/cjs/Field/FieldConditional/index.js +0 -66
- package/cjs/Field/index.js +0 -80
- package/cjs/Field/index.mdx +0 -6
- package/cjs/Field/types/index.js +0 -5
- package/cjs/Field/utils/index.js +0 -162
- package/cjs/FieldArray/FieldArray.stories/index.js +0 -38
- package/cjs/FieldArray/FieldArray.stories.playwright.json +0 -353
- package/cjs/FieldArray/__stories__/Default/index.js +0 -98
- package/cjs/FieldArray/__stories__/WithExactLength/index.js +0 -98
- package/cjs/FieldArray/index.js +0 -68
- package/cjs/FieldObject/index.js +0 -64
- package/cjs/Fieldset/FieldsetWithContext/index.js +0 -45
- package/cjs/Fieldset/index.js +0 -44
- package/cjs/Fieldset/types/index.js +0 -5
- package/cjs/Form.stories/index.js +0 -9
- package/cjs/FormBuilder/FormBuilder/index.js +0 -162
- package/cjs/FormBuilder/FormBuilder.mdx +0 -256
- package/cjs/FormBuilder/FormBuilder.stories/index.js +0 -26
- package/cjs/FormBuilder/FormBuilder.stories.playwright.json +0 -52
- package/cjs/FormBuilder/__stories__/Default/index.js +0 -36
- package/cjs/FormBuilder/index.js +0 -8
- package/cjs/FormContext/index.js +0 -11
- package/cjs/MultiplicityField/MultiplicityField.stories/index.js +0 -86
- package/cjs/MultiplicityField/MultiplicityField.stories.playwright.json +0 -1370
- package/cjs/MultiplicityField/__stories__/Default/index.js +0 -105
- package/cjs/MultiplicityField/__stories__/PreviewDisplay/index.js +0 -88
- package/cjs/MultiplicityField/__stories__/WithExactLength/index.js +0 -100
- package/cjs/MultiplicityField/__stories__/WithMaxLength/index.js +0 -103
- package/cjs/MultiplicityField/__stories__/WithMinAndMaxLength/index.js +0 -104
- package/cjs/MultiplicityField/__stories__/WithMinLength/index.js +0 -103
- package/cjs/MultiplicityField/add-objects/index.js +0 -155
- package/cjs/MultiplicityField/index.js +0 -123
- package/cjs/Questions/Questions/index.js +0 -85
- package/cjs/Questions/Questions.stories/index.js +0 -26
- package/cjs/Questions/QuestionsContext/index.js +0 -17
- package/cjs/Questions/Step/ReviewStep/index.js +0 -60
- package/cjs/Questions/Step/Step/index.js +0 -72
- package/cjs/Questions/Step/StepArrayReview/index.js +0 -56
- package/cjs/Questions/Step/StepContext/index.js +0 -33
- package/cjs/Questions/Step/StepDescription/index.js +0 -34
- package/cjs/Questions/Step/StepForm/index.js +0 -54
- package/cjs/Questions/Step/StepQuote/index.js +0 -17
- package/cjs/Questions/Step/StepTitle/index.js +0 -51
- package/cjs/Questions/Step/getAddMoreFields/index.js +0 -27
- package/cjs/Questions/Step/index.js +0 -143
- package/cjs/Questions/Step/types/index.js +0 -5
- package/cjs/Questions/__snapshots__/index.spec.tsx.snap +0 -596
- package/cjs/Questions/__stories__/Default/index.js +0 -113
- package/cjs/Questions/getNextStep/index.js +0 -26
- package/cjs/Questions/index.js +0 -21
- package/cjs/Questions/index.mdx +0 -415
- package/cjs/Questions/index.spec/index.js +0 -63
- package/cjs/Questions/types/index.js +0 -5
- package/cjs/create-simple-form.mdx +0 -539
- package/cjs/index.js +0 -22
- package/cjs/index.mdx +0 -51
- package/cjs/inputs/AutoCompleteInput/AutoComplete.stories/index.js +0 -38
- package/cjs/inputs/AutoCompleteInput/__stories__/Default/index.js +0 -51
- package/cjs/inputs/AutoCompleteInput/__stories__/Multiple/index.js +0 -52
- package/cjs/inputs/AutoCompleteInput/index.js +0 -66
- package/cjs/inputs/Checkboxes/Checkboxes.stories/index.js +0 -50
- package/cjs/inputs/Checkboxes/Checkboxes.stories.playwright.json +0 -85
- package/cjs/inputs/Checkboxes/__stories__/Conditional/index.js +0 -103
- package/cjs/inputs/Checkboxes/__stories__/Default/index.js +0 -50
- package/cjs/inputs/Checkboxes/__stories__/WithDivider/index.js +0 -51
- package/cjs/inputs/Checkboxes/index.js +0 -101
- package/cjs/inputs/Checkboxes/index.mdx +0 -33
- package/cjs/inputs/DateInput/DateInput.stories/index.js +0 -26
- package/cjs/inputs/DateInput/DateInput.stories.playwright.json +0 -72
- package/cjs/inputs/DateInput/__stories__/Default/index.js +0 -33
- package/cjs/inputs/DateInput/index.js +0 -141
- package/cjs/inputs/DateInput/index.mdx +0 -23
- package/cjs/inputs/FileInput/FileInput.stories/index.js +0 -26
- package/cjs/inputs/FileInput/FileInput.stories.playwright.json +0 -75
- package/cjs/inputs/FileInput/__stories__/Default/index.js +0 -30
- package/cjs/inputs/FileInput/index.js +0 -68
- package/cjs/inputs/FileInput/index.mdx +0 -19
- package/cjs/inputs/ImageInput/ImageInput.stories/index.js +0 -50
- package/cjs/inputs/ImageInput/ImageInput.stories.playwright.json +0 -77
- package/cjs/inputs/ImageInput/__stories__/Default/index.js +0 -38
- package/cjs/inputs/ImageInput/__stories__/WithInvalidImageDimension/index.js +0 -46
- package/cjs/inputs/ImageInput/__stories__/WithInvalidImageSize/index.js +0 -43
- package/cjs/inputs/ImageInput/index.js +0 -86
- package/cjs/inputs/ImageInput/index.mdx +0 -19
- package/cjs/inputs/Input/Input.stories/index.js +0 -134
- package/cjs/inputs/Input/Input.stories.playwright.json +0 -376
- package/cjs/inputs/Input/__stories__/AFM/index.js +0 -32
- package/cjs/inputs/Input/__stories__/Boolean/index.js +0 -33
- package/cjs/inputs/Input/__stories__/Default/index.js +0 -33
- package/cjs/inputs/Input/__stories__/IBAN/index.js +0 -33
- package/cjs/inputs/Input/__stories__/Integer/index.js +0 -41
- package/cjs/inputs/Input/__stories__/LandlineNumber/index.js +0 -36
- package/cjs/inputs/Input/__stories__/MobilePhone/index.js +0 -36
- package/cjs/inputs/Input/__stories__/PhoneNumber/index.js +0 -35
- package/cjs/inputs/Input/__stories__/PostalCode/index.js +0 -35
- package/cjs/inputs/Input/__stories__/TextWithCharacterLimit/index.js +0 -39
- package/cjs/inputs/Input/index.js +0 -76
- package/cjs/inputs/Input/index.mdx +0 -95
- package/cjs/inputs/Label/Label.stories/index.js +0 -26
- package/cjs/inputs/Label/Label.stories.playwright.json +0 -40
- package/cjs/inputs/Label/__stories__/Default/index.js +0 -37
- package/cjs/inputs/Label/index.js +0 -29
- package/cjs/inputs/OtpInput/OtpInput.stories/index.js +0 -26
- package/cjs/inputs/OtpInput/__stories__/Default/index.js +0 -39
- package/cjs/inputs/OtpInput/index.js +0 -151
- package/cjs/inputs/Radio/Radio.stories/index.js +0 -50
- package/cjs/inputs/Radio/Radio.stories.playwright.json +0 -73
- package/cjs/inputs/Radio/__stories__/Conditional/index.js +0 -103
- package/cjs/inputs/Radio/__stories__/Default/index.js +0 -55
- package/cjs/inputs/Radio/__stories__/WithDivider/index.js +0 -56
- package/cjs/inputs/Radio/index.js +0 -64
- package/cjs/inputs/Select/Select.stories/index.js +0 -26
- package/cjs/inputs/Select/Select.stories.playwright.json +0 -22
- package/cjs/inputs/Select/__stories__/Default/index.js +0 -61
- package/cjs/inputs/Select/index.js +0 -38
- package/cjs/inputs/Select/index.mdx +0 -17
- package/cjs/inputs/index.js +0 -69
- package/cjs/installation.mdx +0 -68
- package/cjs/internal/index.js +0 -348
- package/cjs/lazy/index.js +0 -517
- package/cjs/registry/index.js +0 -147
- package/cjs/types/index.js +0 -5
- package/cjs/utils/index.js +0 -87
- package/cjs/validators/index.js +0 -193
- package/cjs/validators/types/index.js +0 -5
- package/cjs/validators/utils/afm/index.js +0 -38
- package/cjs/validators/utils/file/index.js +0 -43
- package/cjs/validators/utils/iban/index.js +0 -123
- package/cjs/validators/utils/image/index.js +0 -126
- package/cjs/validators/utils/index.js +0 -204
- package/cjs/validators/utils/int/index.js +0 -26
- package/cjs/validators/utils/number/index.js +0 -22
- package/cjs/validators/utils/otp/index.js +0 -32
- package/cjs/validators/utils/phone/index.js +0 -143
- package/cjs/validators/utils/postal_code/index.js +0 -34
- package/cjs/validators/utils/text_limit/index.js +0 -54
- package/cjs/validators/utils/uuid4/index.js +0 -25
- package/cjs/validators/validators.spec/index.js +0 -87
- package/create-simple-form.mdx +0 -539
- package/index.mdx +0 -51
- package/inputs/AutoCompleteInput/AutoComplete.stories/index.js +0 -8
- package/inputs/AutoCompleteInput/AutoComplete.stories/package.json +0 -6
- package/inputs/AutoCompleteInput/AutoComplete.stories.d.ts +0 -9
- package/inputs/AutoCompleteInput/__stories__/Default/index.js +0 -44
- package/inputs/AutoCompleteInput/__stories__/Default/package.json +0 -6
- package/inputs/AutoCompleteInput/__stories__/Default.d.ts +0 -3
- package/inputs/AutoCompleteInput/__stories__/Multiple/index.js +0 -45
- package/inputs/AutoCompleteInput/__stories__/Multiple/package.json +0 -6
- package/inputs/AutoCompleteInput/__stories__/Multiple.d.ts +0 -3
- package/inputs/AutoCompleteInput/index.mdx +0 -29
- package/inputs/AutoCompleteInput/package.json +0 -6
- package/inputs/Checkboxes/Checkboxes.stories/index.js +0 -9
- package/inputs/Checkboxes/Checkboxes.stories/package.json +0 -6
- package/inputs/Checkboxes/Checkboxes.stories.d.ts +0 -10
- package/inputs/Checkboxes/Checkboxes.stories.playwright.json +0 -85
- package/inputs/Checkboxes/__stories__/Conditional/index.js +0 -93
- package/inputs/Checkboxes/__stories__/Conditional/package.json +0 -6
- package/inputs/Checkboxes/__stories__/Conditional.d.ts +0 -3
- package/inputs/Checkboxes/__stories__/Default/index.js +0 -40
- package/inputs/Checkboxes/__stories__/Default/package.json +0 -6
- package/inputs/Checkboxes/__stories__/Default.d.ts +0 -3
- package/inputs/Checkboxes/__stories__/WithDivider/index.js +0 -41
- package/inputs/Checkboxes/__stories__/WithDivider/package.json +0 -6
- package/inputs/Checkboxes/__stories__/WithDivider.d.ts +0 -3
- package/inputs/Checkboxes/index.mdx +0 -33
- package/inputs/Checkboxes/package.json +0 -6
- package/inputs/DateInput/DateInput.stories/index.js +0 -7
- package/inputs/DateInput/DateInput.stories/package.json +0 -6
- package/inputs/DateInput/DateInput.stories.d.ts +0 -8
- package/inputs/DateInput/DateInput.stories.playwright.json +0 -72
- package/inputs/DateInput/__stories__/Default/index.js +0 -23
- package/inputs/DateInput/__stories__/Default/package.json +0 -6
- package/inputs/DateInput/__stories__/Default.d.ts +0 -3
- package/inputs/DateInput/index.mdx +0 -23
- package/inputs/DateInput/package.json +0 -6
- package/inputs/FileInput/FileInput.stories/index.js +0 -7
- package/inputs/FileInput/FileInput.stories/package.json +0 -6
- package/inputs/FileInput/FileInput.stories.d.ts +0 -8
- package/inputs/FileInput/FileInput.stories.playwright.json +0 -75
- package/inputs/FileInput/__stories__/Default/index.js +0 -20
- package/inputs/FileInput/__stories__/Default/package.json +0 -6
- package/inputs/FileInput/__stories__/Default.d.ts +0 -3
- package/inputs/FileInput/package.json +0 -6
- package/inputs/ImageInput/ImageInput.stories/index.js +0 -9
- package/inputs/ImageInput/ImageInput.stories/package.json +0 -6
- package/inputs/ImageInput/ImageInput.stories.d.ts +0 -10
- package/inputs/ImageInput/ImageInput.stories.playwright.json +0 -77
- package/inputs/ImageInput/__stories__/Default/index.js +0 -28
- package/inputs/ImageInput/__stories__/Default/package.json +0 -6
- package/inputs/ImageInput/__stories__/Default.d.ts +0 -3
- package/inputs/ImageInput/__stories__/WithInvalidImageDimension/index.js +0 -36
- package/inputs/ImageInput/__stories__/WithInvalidImageDimension/package.json +0 -6
- package/inputs/ImageInput/__stories__/WithInvalidImageDimension.d.ts +0 -3
- package/inputs/ImageInput/__stories__/WithInvalidImageSize/index.js +0 -33
- package/inputs/ImageInput/__stories__/WithInvalidImageSize/package.json +0 -6
- package/inputs/ImageInput/__stories__/WithInvalidImageSize.d.ts +0 -3
- package/inputs/ImageInput/index.mdx +0 -19
- package/inputs/ImageInput/package.json +0 -6
- package/inputs/Input/Input.stories/index.js +0 -16
- package/inputs/Input/Input.stories/package.json +0 -6
- package/inputs/Input/Input.stories.d.ts +0 -17
- package/inputs/Input/Input.stories.playwright.json +0 -376
- package/inputs/Input/__stories__/AFM/index.js +0 -22
- package/inputs/Input/__stories__/AFM/package.json +0 -6
- package/inputs/Input/__stories__/AFM.d.ts +0 -3
- package/inputs/Input/__stories__/Boolean/index.js +0 -23
- package/inputs/Input/__stories__/Boolean/package.json +0 -6
- package/inputs/Input/__stories__/Boolean.d.ts +0 -3
- package/inputs/Input/__stories__/Default/index.js +0 -23
- package/inputs/Input/__stories__/Default/package.json +0 -6
- package/inputs/Input/__stories__/Default.d.ts +0 -3
- package/inputs/Input/__stories__/IBAN/index.js +0 -23
- package/inputs/Input/__stories__/IBAN/package.json +0 -6
- package/inputs/Input/__stories__/IBAN.d.ts +0 -3
- package/inputs/Input/__stories__/Integer/index.js +0 -31
- package/inputs/Input/__stories__/Integer/package.json +0 -6
- package/inputs/Input/__stories__/Integer.d.ts +0 -3
- package/inputs/Input/__stories__/LandlineNumber/index.js +0 -26
- package/inputs/Input/__stories__/LandlineNumber/package.json +0 -6
- package/inputs/Input/__stories__/LandlineNumber.d.ts +0 -3
- package/inputs/Input/__stories__/MobilePhone/index.js +0 -26
- package/inputs/Input/__stories__/MobilePhone/package.json +0 -6
- package/inputs/Input/__stories__/MobilePhone.d.ts +0 -3
- package/inputs/Input/__stories__/PhoneNumber/index.js +0 -25
- package/inputs/Input/__stories__/PhoneNumber/package.json +0 -6
- package/inputs/Input/__stories__/PhoneNumber.d.ts +0 -3
- package/inputs/Input/__stories__/PostalCode/index.js +0 -25
- package/inputs/Input/__stories__/PostalCode/package.json +0 -6
- package/inputs/Input/__stories__/PostalCode.d.ts +0 -3
- package/inputs/Input/__stories__/TextWithCharacterLimit/index.js +0 -29
- package/inputs/Input/__stories__/TextWithCharacterLimit/package.json +0 -6
- package/inputs/Input/__stories__/TextWithCharacterLimit.d.ts +0 -3
- package/inputs/Input/index.mdx +0 -95
- package/inputs/Input/package.json +0 -6
- package/inputs/Label/Label.stories/index.js +0 -7
- package/inputs/Label/Label.stories/package.json +0 -6
- package/inputs/Label/Label.stories.d.ts +0 -8
- package/inputs/Label/Label.stories.playwright.json +0 -40
- package/inputs/Label/__stories__/Default/index.js +0 -27
- package/inputs/Label/__stories__/Default/package.json +0 -6
- package/inputs/Label/__stories__/Default.d.ts +0 -3
- package/inputs/Label/package.json +0 -6
- package/inputs/OtpInput/OtpInput.stories/index.js +0 -7
- package/inputs/OtpInput/OtpInput.stories/package.json +0 -6
- package/inputs/OtpInput/OtpInput.stories.d.ts +0 -8
- package/inputs/OtpInput/__stories__/Default/index.js +0 -29
- package/inputs/OtpInput/__stories__/Default/package.json +0 -6
- package/inputs/OtpInput/__stories__/Default.d.ts +0 -3
- package/inputs/OtpInput/index.mdx +0 -23
- package/inputs/OtpInput/package.json +0 -6
- package/inputs/Radio/Radio.stories/index.js +0 -9
- package/inputs/Radio/Radio.stories/package.json +0 -6
- package/inputs/Radio/Radio.stories.d.ts +0 -10
- package/inputs/Radio/Radio.stories.playwright.json +0 -73
- package/inputs/Radio/__stories__/Conditional/index.js +0 -93
- package/inputs/Radio/__stories__/Conditional/package.json +0 -6
- package/inputs/Radio/__stories__/Conditional.d.ts +0 -3
- package/inputs/Radio/__stories__/Default/index.js +0 -45
- package/inputs/Radio/__stories__/Default/package.json +0 -6
- package/inputs/Radio/__stories__/Default.d.ts +0 -3
- package/inputs/Radio/__stories__/WithDivider/index.js +0 -46
- package/inputs/Radio/__stories__/WithDivider/package.json +0 -6
- package/inputs/Radio/__stories__/WithDivider.d.ts +0 -3
- package/inputs/Radio/index.mdx +0 -33
- package/inputs/Radio/package.json +0 -6
- package/inputs/Select/Select.stories/index.js +0 -7
- package/inputs/Select/Select.stories/package.json +0 -6
- package/inputs/Select/Select.stories.d.ts +0 -8
- package/inputs/Select/Select.stories.playwright.json +0 -22
- package/inputs/Select/__stories__/Default/index.js +0 -51
- package/inputs/Select/__stories__/Default/package.json +0 -6
- package/inputs/Select/__stories__/Default.d.ts +0 -3
- package/inputs/Select/index.mdx +0 -17
- package/inputs/Select/package.json +0 -6
- package/inputs/package.json +0 -6
- package/installation.mdx +0 -68
- package/internal/index.js +0 -34
- package/internal/package.json +0 -6
- package/lazy/index.js +0 -395
- package/lazy/package.json +0 -6
- package/registry/index.js +0 -138
- package/registry/package.json +0 -6
- package/src/Field/index.mdx +0 -6
- package/src/Field/utils.ts +0 -191
- package/src/FieldArray/FieldArray.stories.playwright.json +0 -353
- package/src/FormBuilder/FormBuilder.stories.playwright.json +0 -52
- package/src/FormBuilder/FormBuilder.tsx +0 -166
- package/src/MultiplicityField/MultiplicityField.mdx +0 -590
- package/src/MultiplicityField/MultiplicityField.stories.playwright.json +0 -1370
- package/src/Questions/index.mdx +0 -415
- package/src/inputs/AutoCompleteInput/index.mdx +0 -29
- package/src/inputs/Checkboxes/Checkboxes.stories.playwright.json +0 -85
- package/src/inputs/DateInput/DateInput.stories.playwright.json +0 -72
- package/src/inputs/FileInput/FileInput.stories.playwright.json +0 -75
- package/src/inputs/FileInput/index.mdx +0 -19
- package/src/inputs/ImageInput/ImageInput.stories.playwright.json +0 -77
- package/src/inputs/ImageInput/index.mdx +0 -19
- package/src/inputs/Input/Input.stories.playwright.json +0 -376
- package/src/inputs/Input/index.mdx +0 -95
- package/src/inputs/Label/Label.stories.playwright.json +0 -40
- package/src/inputs/OtpInput/index.mdx +0 -23
- package/src/inputs/Radio/Radio.stories.playwright.json +0 -73
- package/src/inputs/Radio/index.mdx +0 -33
- package/src/inputs/Select/Select.stories.playwright.json +0 -22
- package/src/lazy.js +0 -60
- package/src/registry.js +0 -145
- package/types/index.js +0 -1
- package/types/package.json +0 -6
- package/utils/index.js +0 -80
- package/utils/package.json +0 -6
- package/validators/package.json +0 -6
- package/validators/types/index.js +0 -1
- package/validators/types/package.json +0 -6
- package/validators/utils/afm/index.js +0 -31
- package/validators/utils/afm/package.json +0 -6
- package/validators/utils/file/index.js +0 -37
- package/validators/utils/file/package.json +0 -6
- package/validators/utils/iban/index.js +0 -116
- package/validators/utils/iban/package.json +0 -6
- package/validators/utils/image/index.js +0 -119
- package/validators/utils/image/package.json +0 -6
- package/validators/utils/int/index.js +0 -19
- package/validators/utils/int/package.json +0 -6
- package/validators/utils/number/index.js +0 -15
- package/validators/utils/number/package.json +0 -6
- package/validators/utils/otp/index.js +0 -25
- package/validators/utils/otp/package.json +0 -6
- package/validators/utils/package.json +0 -6
- package/validators/utils/phone/index.js +0 -134
- package/validators/utils/phone/package.json +0 -6
- package/validators/utils/postal_code/index.js +0 -27
- package/validators/utils/postal_code/package.json +0 -6
- package/validators/utils/text_limit/index.js +0 -47
- package/validators/utils/text_limit/package.json +0 -6
- package/validators/utils/uuid4/index.js +0 -18
- package/validators/utils/uuid4/package.json +0 -6
- package/validators/validators.spec/index.js +0 -85
- package/validators/validators.spec/package.json +0 -6
- package/validators/validators.spec.d.ts +0 -1
- /package/{cjs/inputs/Label/index.mdx → Field/types.js} +0 -0
- /package/{inputs/Label/index.mdx → Fieldset/types.js} +0 -0
- /package/{src/inputs/Label/index.mdx → MultiplicityField/types.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,115 @@
|
|
|
1
1
|
# Change Log - @digigov/form
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 21 Jan 2026 15:58:34 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 2.0.2
|
|
6
|
+
Wed, 21 Jan 2026 15:58:34 GMT
|
|
7
|
+
|
|
8
|
+
### Breaking changes
|
|
9
|
+
|
|
10
|
+
- Rename govgr classes namespace to ds
|
|
11
|
+
- Reorganize exports to resolve circular dependencies
|
|
12
|
+
- Make lib "pure ESM"
|
|
13
|
+
|
|
14
|
+
### Minor changes
|
|
15
|
+
|
|
16
|
+
- Add missing attributes and implement scenarios testing
|
|
17
|
+
- Add multiselect example at Autocomplete
|
|
18
|
+
- Rename index.mdx files
|
|
19
|
+
- Create Rate component, create rate validation
|
|
20
|
+
- Added props to file input
|
|
21
|
+
- Changes for dilosi integration
|
|
22
|
+
- Change FieldArray logic and implement DateTimeInput & FormDialog
|
|
23
|
+
- Upgrade react-hook-form from 7.33.1 to 7.56.1, @hookform/resolvers from 3.9.0 to 5.0.1 and react peer dependency version to include ^19.1.0 along with ^18.3.0. Fix multiplicity form state issue
|
|
24
|
+
- Add ErrorGroup mechanism, for fields when layout < 12
|
|
25
|
+
- Add image field support for stepwise
|
|
26
|
+
- Add card layout in FieldArray
|
|
27
|
+
- Add password in types map
|
|
28
|
+
|
|
29
|
+
### Patches
|
|
30
|
+
|
|
31
|
+
- Add maxSize prop to message in file validator
|
|
32
|
+
- update react version
|
|
33
|
+
- Add ref as undefined at FieldBase, add wrapper at autocomplete at utils.ts file
|
|
34
|
+
- Modify code in AutoComplete to work properly in form
|
|
35
|
+
- Add noLastBorder prop in PreviewDisplay storybook example
|
|
36
|
+
- Remove @digigov/babel-ts-to-proptypes
|
|
37
|
+
- Αdd placeholder prop to field component
|
|
38
|
+
- add lazy import of react components
|
|
39
|
+
- Remove multiple prop from extra props add logic to AutocompleteInput
|
|
40
|
+
- register enum name for array items
|
|
41
|
+
- Remove Suspense, change labels, add results to AutoCompoleteInput stories
|
|
42
|
+
- fix issues with deprecated defaultprops
|
|
43
|
+
- minor fixes to remove warnings
|
|
44
|
+
- Replaced phone validator with custom one
|
|
45
|
+
- Update stories
|
|
46
|
+
- Add autoComplete attribute to FieldSpec props, add it to input examples
|
|
47
|
+
- Add trim func to validator inputs, add it to DateInput component to trim white spaces add reset func to onSubmit to reset the trimming data before submit form
|
|
48
|
+
- Fix error message in FieldObject used in Multiplicity fields
|
|
49
|
+
- Fix file validation, remove unused validation errors, modify image stories
|
|
50
|
+
- Update lazy.js file
|
|
51
|
+
- Create date utils file, remove logic from validators
|
|
52
|
+
- Replace all react-core component imports with ui component imports
|
|
53
|
+
- Fix date and boolean yap validator for nullable and string values respectively
|
|
54
|
+
- Refactor form component examples and docs
|
|
55
|
+
- Fix error goup heading title
|
|
56
|
+
- update test snapshots for Questions example
|
|
57
|
+
- Show doc page in stories
|
|
58
|
+
- Add margin bottom in Multiplicity header and hint
|
|
59
|
+
- Add email to storybook update incorrect input value test, delete unnecessary input scenario file
|
|
60
|
+
- Fix DateInput and DateTimeInput, add default and initial value example to storybook
|
|
61
|
+
- Make email validation stricter
|
|
62
|
+
- Fix an issue with checkboxes submitting empty values
|
|
63
|
+
- Fix an issue with FieldArray focus & Multiplicity modifications
|
|
64
|
+
- Fix issue when submitting file fields
|
|
65
|
+
- Fix all combination error messages for date and datetime input, add range for day and month input fields
|
|
66
|
+
- Add date and datetime test scenarios
|
|
67
|
+
- Isolate dialog field array by using nested form
|
|
68
|
+
- Fix issue when submitting fieldarray with empty item
|
|
69
|
+
- Fix form runtime warnings and errors
|
|
70
|
+
- Fix display of custom errors in FieldArrays
|
|
71
|
+
- Update lazy file
|
|
72
|
+
- Replace imports with code in scenario test
|
|
73
|
+
- Fix date validator
|
|
74
|
+
- Update form components test snapshots
|
|
75
|
+
- Remove named functions from components causin vite dev server to crash
|
|
76
|
+
- Fix integer and number validation
|
|
77
|
+
- Fix validations for date and datetime, fix scenarios errors
|
|
78
|
+
- Fix circular dependency issues related to date inputs
|
|
79
|
+
- Add trim prop to FieldSpec, fix validation trim errors
|
|
80
|
+
- Export useOtp hook
|
|
81
|
+
- Add register call in FieldBaseContainer
|
|
82
|
+
- Fix multiplicity to display label value in type choice component
|
|
83
|
+
- Make adjustments to be compatible in react-native
|
|
84
|
+
- Update radio tests
|
|
85
|
+
- Add support for React v18 & update stories
|
|
86
|
+
- Export default Conditional, AutocompleInput stories examples, create form's .mdx files
|
|
87
|
+
- Add disabled prop to Field components
|
|
88
|
+
|
|
89
|
+
### Updates
|
|
90
|
+
|
|
91
|
+
- Generate registry and lazy files
|
|
92
|
+
- Update theme references in tailwind config
|
|
93
|
+
- Update build scriptUpdate build script & remove unnecessary dependency
|
|
94
|
+
- Fix build errors in stories
|
|
95
|
+
- Generate lazy file
|
|
96
|
+
- Update lazy files
|
|
97
|
+
- update lazy file
|
|
98
|
+
- Lint MultipleInput's file.
|
|
99
|
+
- Fix linter errors
|
|
100
|
+
- Remove registry files from src
|
|
101
|
+
- Update button styling in FormDialog
|
|
102
|
+
- Update playwright-related dependency versions
|
|
103
|
+
- Remove scenarios testing related files
|
|
104
|
+
- Update @types/node
|
|
105
|
+
- Replace jest with vitest
|
|
4
106
|
|
|
5
107
|
## 1.1.2
|
|
6
108
|
Fri, 16 Feb 2024 09:57:32 GMT
|
|
7
109
|
|
|
8
|
-
|
|
110
|
+
### Updates
|
|
111
|
+
|
|
112
|
+
- Upgrade ESLint & Prettier
|
|
9
113
|
|
|
10
114
|
## 1.1.1
|
|
11
115
|
Mon, 29 Jan 2024 17:45:11 GMT
|
|
@@ -27,7 +131,9 @@ _Version update only_
|
|
|
27
131
|
## 1.0.1
|
|
28
132
|
Tue, 19 Dec 2023 15:00:14 GMT
|
|
29
133
|
|
|
30
|
-
|
|
134
|
+
### Updates
|
|
135
|
+
|
|
136
|
+
- Upgrade @types/node to v18
|
|
31
137
|
|
|
32
138
|
## 1.0.0
|
|
33
139
|
Fri, 15 Dec 2023 15:23:56 GMT
|
|
@@ -372,6 +478,10 @@ Wed, 30 Mar 2022 12:28:30 GMT
|
|
|
372
478
|
|
|
373
479
|
- Add support for `characterWidth` and `cellWidth` props in `@digigov/form/Field`, these props will be used by the `@digigov/react-core/TextInput`
|
|
374
480
|
|
|
481
|
+
### Updates
|
|
482
|
+
|
|
483
|
+
- Fix linting issues
|
|
484
|
+
|
|
375
485
|
## 0.5.3
|
|
376
486
|
Mon, 28 Feb 2022 15:04:49 GMT
|
|
377
487
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ErrorOption } from 'react-hook-form';
|
|
3
|
+
import type { FieldLabelProps } from './types.js';
|
|
4
|
+
import type { Breakpoints } from '@digigov/ui/utils/hooks/useScreen';
|
|
5
|
+
export interface ErrorGroupContextType {
|
|
6
|
+
setError: (name?: string, label?: FieldLabelProps, error?: ErrorOption) => void;
|
|
7
|
+
}
|
|
8
|
+
export declare const ErrorGroupContext: React.Context<ErrorGroupContextType | null>;
|
|
9
|
+
export interface ErrorGroupProps {
|
|
10
|
+
children: React.ReactNode;
|
|
11
|
+
screenSize?: Breakpoints | undefined;
|
|
12
|
+
fieldOrder?: any[];
|
|
13
|
+
}
|
|
14
|
+
export declare const ErrorGroup: React.FC<ErrorGroupProps>;
|
|
15
|
+
export default ErrorGroup;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import react, { createContext, useEffect, useState } from "react";
|
|
2
|
+
import { List, ListItem } from "@digigov/ui/content/List/index.js";
|
|
3
|
+
import { ErrorSummary } from "@digigov/ui/feedback/ErrorSummary/index.js";
|
|
4
|
+
import { useTranslation } from "@digigov/ui/i18n/index.js";
|
|
5
|
+
import { Link } from "@digigov/ui/navigation/Link/index.js";
|
|
6
|
+
import { Heading } from "@digigov/ui/typography/Heading/index.js";
|
|
7
|
+
import { Base } from "@digigov/ui/utils/Base/index.js";
|
|
8
|
+
const ErrorGroupContext = /*#__PURE__*/ createContext(null);
|
|
9
|
+
const ErrorGroup = ({ children, screenSize, fieldOrder })=>{
|
|
10
|
+
const [errors, setErrors] = useState({});
|
|
11
|
+
const { t } = useTranslation();
|
|
12
|
+
const setError = (name, label, error)=>{
|
|
13
|
+
if (errors[name] !== error && errors[name]?.message !== error?.message) if (error?.message) setErrors({
|
|
14
|
+
...errors,
|
|
15
|
+
[name]: {
|
|
16
|
+
...error,
|
|
17
|
+
label: label.primary
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
else {
|
|
21
|
+
const updatedErrors = {
|
|
22
|
+
...errors
|
|
23
|
+
};
|
|
24
|
+
delete updatedErrors[name];
|
|
25
|
+
setErrors(updatedErrors);
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
useEffect(()=>{
|
|
29
|
+
setErrors({});
|
|
30
|
+
}, [
|
|
31
|
+
screenSize
|
|
32
|
+
]);
|
|
33
|
+
return /*#__PURE__*/ react.createElement(ErrorGroupContext.Provider, {
|
|
34
|
+
value: {
|
|
35
|
+
setError
|
|
36
|
+
}
|
|
37
|
+
}, 0 !== Object.keys(errors).length && /*#__PURE__*/ react.createElement(ErrorSummary, {
|
|
38
|
+
variant: "error-group"
|
|
39
|
+
}, /*#__PURE__*/ react.createElement(Heading, {
|
|
40
|
+
size: "sm"
|
|
41
|
+
}, "Τα παρακάτω πεδία της φόρμας ειναι λάθος.", ' '), /*#__PURE__*/ react.createElement(List, {
|
|
42
|
+
listStyle: "bullet"
|
|
43
|
+
}, (fieldOrder || Object.keys(errors).reverse()).filter((fieldName)=>errors[fieldName]).map((fieldName, index)=>/*#__PURE__*/ react.createElement(ListItem, {
|
|
44
|
+
key: index,
|
|
45
|
+
id: `${fieldName}-error`
|
|
46
|
+
}, /*#__PURE__*/ react.createElement(Base, {
|
|
47
|
+
as: "b"
|
|
48
|
+
}, t(errors[fieldName]?.label), ":"), ' ', /*#__PURE__*/ react.createElement(Link, {
|
|
49
|
+
href: `#${fieldName}`
|
|
50
|
+
}, t(errors[fieldName]?.message)))))), children);
|
|
51
|
+
};
|
|
52
|
+
const Field_ErrorGroup = ErrorGroup;
|
|
53
|
+
export { ErrorGroup, ErrorGroupContext, Field_ErrorGroup as default };
|
package/Field/FieldBase.d.ts
CHANGED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import react, { useContext, useEffect } from "react";
|
|
2
|
+
import { Controller } from "react-hook-form";
|
|
3
|
+
import { ErrorGroupContext } from "./ErrorGroup.js";
|
|
4
|
+
import FieldBaseContainer from "./FieldBaseContainer.js";
|
|
5
|
+
const FieldBase = ({ required, name, component: Component, wrapper, control, type, controlled = false, enabled = true, editable, defaultValue, label, extra = {}, layout, error, trim, register, ...componentProps })=>{
|
|
6
|
+
const errorGroupContext = useContext(ErrorGroupContext);
|
|
7
|
+
useEffect(()=>{
|
|
8
|
+
if (errorGroupContext) errorGroupContext.setError(name, label, error);
|
|
9
|
+
}, [
|
|
10
|
+
error,
|
|
11
|
+
name,
|
|
12
|
+
errorGroupContext?.setError
|
|
13
|
+
]);
|
|
14
|
+
if (!enabled) return null;
|
|
15
|
+
if (controlled) return /*#__PURE__*/ react.createElement(FieldBaseContainer, {
|
|
16
|
+
label: label,
|
|
17
|
+
layout: layout,
|
|
18
|
+
register: register,
|
|
19
|
+
error: errorGroupContext ? void 0 : error,
|
|
20
|
+
hasError: !!error,
|
|
21
|
+
wrapper: wrapper,
|
|
22
|
+
name: name,
|
|
23
|
+
controlled: controlled
|
|
24
|
+
}, /*#__PURE__*/ react.createElement(Controller, {
|
|
25
|
+
control: control,
|
|
26
|
+
name: name,
|
|
27
|
+
render: ({ field })=>/*#__PURE__*/ react.createElement(Component, {
|
|
28
|
+
...field,
|
|
29
|
+
control: control,
|
|
30
|
+
defaultValue: defaultValue ?? field.value,
|
|
31
|
+
extra: extra,
|
|
32
|
+
error: !!error,
|
|
33
|
+
type: type,
|
|
34
|
+
"aria-required": !!required,
|
|
35
|
+
"aria-describedby": error && `${name}-error`,
|
|
36
|
+
required: required,
|
|
37
|
+
disabled: false === editable,
|
|
38
|
+
trim: trim,
|
|
39
|
+
...componentProps
|
|
40
|
+
})
|
|
41
|
+
}));
|
|
42
|
+
return /*#__PURE__*/ react.createElement(FieldBaseContainer, {
|
|
43
|
+
label: label,
|
|
44
|
+
layout: layout,
|
|
45
|
+
register: register,
|
|
46
|
+
error: errorGroupContext ? void 0 : error,
|
|
47
|
+
hasError: !!error,
|
|
48
|
+
wrapper: wrapper,
|
|
49
|
+
name: name
|
|
50
|
+
}, Component?.render ? /*#__PURE__*/ react.createElement(Component, {
|
|
51
|
+
...register(name),
|
|
52
|
+
control: control,
|
|
53
|
+
error: !!error,
|
|
54
|
+
extra: extra,
|
|
55
|
+
type: type,
|
|
56
|
+
"aria-required": !!required,
|
|
57
|
+
"aria-describedby": error && `${name}-error`,
|
|
58
|
+
required: required,
|
|
59
|
+
disabled: false === editable,
|
|
60
|
+
defaultValue: defaultValue,
|
|
61
|
+
...componentProps
|
|
62
|
+
}) : /*#__PURE__*/ react.createElement(Component, {
|
|
63
|
+
...register(name),
|
|
64
|
+
register: register,
|
|
65
|
+
control: control,
|
|
66
|
+
error: !!error,
|
|
67
|
+
extra: extra,
|
|
68
|
+
type: type,
|
|
69
|
+
defaultValue: defaultValue,
|
|
70
|
+
"aria-required": !!required,
|
|
71
|
+
"aria-describedby": error && `${name}-error`,
|
|
72
|
+
required: required,
|
|
73
|
+
disabled: false === editable,
|
|
74
|
+
...componentProps
|
|
75
|
+
}));
|
|
76
|
+
};
|
|
77
|
+
export { FieldBase };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { FieldContainerProps } from '
|
|
3
|
-
export declare const FieldBaseContainer: React.
|
|
2
|
+
import type { FieldContainerProps } from './types.js';
|
|
3
|
+
export declare const FieldBaseContainer: React.ForwardRefExoticComponent<FieldContainerProps & React.RefAttributes<HTMLFieldSetElement>>;
|
|
4
4
|
export default FieldBaseContainer;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import Label from "../inputs/Label/index.js";
|
|
3
|
+
import { ErrorMessage } from "@digigov/react-core/ErrorMessage/index.js";
|
|
4
|
+
import FieldContainer from "@digigov/react-core/FieldContainer/index.js";
|
|
5
|
+
import Fieldset from "@digigov/react-core/Fieldset/index.js";
|
|
6
|
+
import FieldsetLegend from "@digigov/react-core/FieldsetLegend/index.js";
|
|
7
|
+
import LabelContainer from "@digigov/react-core/LabelContainer/index.js";
|
|
8
|
+
import { useTranslation } from "@digigov/ui/i18n/index.js";
|
|
9
|
+
import { Hint } from "@digigov/ui/typography/Hint/index.js";
|
|
10
|
+
const FieldBaseContainer_FieldBaseContainer = /*#__PURE__*/ react.forwardRef(({ name, wrapper, label, children, error, hasError, layout, controlled, labelSize = 'sm' }, ref)=>{
|
|
11
|
+
const { t } = useTranslation();
|
|
12
|
+
const errorMessage = error?.message.key ? error.message.key : error?.message || '';
|
|
13
|
+
const errorContext = error?.message.context || {};
|
|
14
|
+
if ('fieldset' === wrapper) return /*#__PURE__*/ react.createElement(FieldContainer, {
|
|
15
|
+
error: hasError,
|
|
16
|
+
...layout
|
|
17
|
+
}, /*#__PURE__*/ react.createElement(Fieldset, {
|
|
18
|
+
ref: ref,
|
|
19
|
+
className: "outline-none",
|
|
20
|
+
...controlled && {
|
|
21
|
+
tabIndex: -1
|
|
22
|
+
}
|
|
23
|
+
}, /*#__PURE__*/ react.createElement(FieldsetLegend, {
|
|
24
|
+
size: labelSize
|
|
25
|
+
}, label && label.primary), label && label.secondary && /*#__PURE__*/ react.createElement(Hint, null, t(label.secondary)), error && /*#__PURE__*/ react.createElement(ErrorMessage, {
|
|
26
|
+
id: `${name}-error`
|
|
27
|
+
}, t(errorMessage, errorContext)), children, label && label.hint && /*#__PURE__*/ react.createElement(Hint, {
|
|
28
|
+
size: "sm"
|
|
29
|
+
}, label.hint)));
|
|
30
|
+
return /*#__PURE__*/ react.createElement(FieldContainer, {
|
|
31
|
+
error: hasError,
|
|
32
|
+
...layout
|
|
33
|
+
}, /*#__PURE__*/ react.createElement(LabelContainer, null, label && /*#__PURE__*/ react.createElement(Label, {
|
|
34
|
+
label: label
|
|
35
|
+
}), error && /*#__PURE__*/ react.createElement(ErrorMessage, {
|
|
36
|
+
id: `${name}-error`
|
|
37
|
+
}, t(errorMessage, errorContext)), children, label && label.hint && /*#__PURE__*/ react.createElement(Hint, {
|
|
38
|
+
size: "sm"
|
|
39
|
+
}, label.hint)));
|
|
40
|
+
});
|
|
41
|
+
FieldBaseContainer_FieldBaseContainer.displayName = 'FieldBaseContainer';
|
|
42
|
+
const FieldBaseContainer = FieldBaseContainer_FieldBaseContainer;
|
|
43
|
+
export { FieldBaseContainer_FieldBaseContainer as FieldBaseContainer, FieldBaseContainer as default };
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import react from "react";
|
|
2
|
+
import { useWatch } from "react-hook-form";
|
|
3
|
+
import { FieldBase } from "./FieldBase.js";
|
|
4
|
+
import { evaluateFieldWithConditions } from "./utils/evaluateFieldWithConditions.js";
|
|
5
|
+
const ChildFieldMemo = /*#__PURE__*/ react.memo(function({ dependencies, field, control, reset, resetField, register, error, Field }) {
|
|
6
|
+
const newField = evaluateFieldWithConditions(field, dependencies);
|
|
7
|
+
return /*#__PURE__*/ react.createElement(FieldBase, {
|
|
8
|
+
...newField,
|
|
9
|
+
Field: Field,
|
|
10
|
+
name: newField.key,
|
|
11
|
+
reset: reset,
|
|
12
|
+
resetField: resetField,
|
|
13
|
+
control: control,
|
|
14
|
+
register: register,
|
|
15
|
+
error: error
|
|
16
|
+
});
|
|
17
|
+
}, (prev, next)=>{
|
|
18
|
+
if (!prev || !prev.dependencies) return false;
|
|
19
|
+
if (prev.error !== next.error) return false;
|
|
20
|
+
for(const dep in next.dependencies)if (next.dependencies[dep] !== prev.dependencies[dep]) return false;
|
|
21
|
+
return true;
|
|
22
|
+
});
|
|
23
|
+
const FieldConditional_FieldConditional = ({ control, field, register, reset, resetField, error, Field })=>{
|
|
24
|
+
const dependencyKeys = Object.keys(field.condition);
|
|
25
|
+
const dependencyValues = useWatch({
|
|
26
|
+
name: dependencyKeys,
|
|
27
|
+
control
|
|
28
|
+
});
|
|
29
|
+
const variables = dependencyKeys.reduce((data, fieldKey, index)=>({
|
|
30
|
+
...data,
|
|
31
|
+
[fieldKey]: dependencyValues[index]
|
|
32
|
+
}), {});
|
|
33
|
+
return /*#__PURE__*/ react.createElement(ChildFieldMemo, {
|
|
34
|
+
dependencies: variables,
|
|
35
|
+
field: field,
|
|
36
|
+
control: control,
|
|
37
|
+
register: register,
|
|
38
|
+
reset: reset,
|
|
39
|
+
resetField: resetField,
|
|
40
|
+
error: error,
|
|
41
|
+
Field: Field
|
|
42
|
+
});
|
|
43
|
+
};
|
|
44
|
+
const FieldConditional = FieldConditional_FieldConditional;
|
|
45
|
+
export { FieldConditional_FieldConditional as FieldConditional, FieldConditional as default };
|
package/Field/index.d.ts
CHANGED
package/Field/index.js
CHANGED
|
@@ -1,70 +1,72 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
4
|
-
import
|
|
5
|
-
import {
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
1
|
+
import react, { useMemo } from "react";
|
|
2
|
+
import { FieldBase } from "./FieldBase.js";
|
|
3
|
+
import FieldConditional from "./FieldConditional.js";
|
|
4
|
+
import { resolveField } from "./utils/resolveField.js";
|
|
5
|
+
import { useField } from "./utils/useField.js";
|
|
6
|
+
import FieldArray from "../FieldArray/index.js";
|
|
7
|
+
import MultiplicityField from "../MultiplicityField/index.js";
|
|
8
|
+
const Field_Field = ({ name, children, ...customField })=>{
|
|
9
|
+
const { field, control, register, reset, resetField, error, componentRegistry, formState, setValue, getValues, unregister, trigger, clearErrors, registerFieldFocus } = useField(name, customField?.type ? customField : null);
|
|
10
|
+
const resolvedField = useMemo(()=>resolveField(children, field, componentRegistry), [
|
|
11
|
+
field
|
|
12
|
+
]);
|
|
13
|
+
if (resolvedField.condition) return /*#__PURE__*/ react.createElement(FieldConditional, {
|
|
14
|
+
control: control,
|
|
15
|
+
reset: reset,
|
|
16
|
+
resetField: resetField,
|
|
17
|
+
register: register,
|
|
18
|
+
field: resolvedField,
|
|
19
|
+
error: error,
|
|
20
|
+
Field: Field_Field
|
|
21
|
+
});
|
|
22
|
+
if ('array' === resolvedField.type && !resolvedField.multiplicity) {
|
|
23
|
+
resolvedField.name = name;
|
|
24
|
+
return /*#__PURE__*/ react.createElement(FieldArray, {
|
|
25
|
+
control: control,
|
|
26
|
+
trigger: trigger,
|
|
27
|
+
register: register,
|
|
28
|
+
clearErrors: clearErrors,
|
|
29
|
+
error: error,
|
|
30
|
+
getValues: getValues,
|
|
31
|
+
setValue: setValue,
|
|
32
|
+
formState: formState,
|
|
33
|
+
Field: Field_Field,
|
|
34
|
+
reset: reset,
|
|
35
|
+
resetField: resetField,
|
|
36
|
+
registerFieldFocus: registerFieldFocus,
|
|
37
|
+
...resolvedField
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
if ('array' === resolvedField.type && true === resolvedField.multiplicity) {
|
|
41
|
+
resolvedField.name = name;
|
|
42
|
+
return /*#__PURE__*/ react.createElement(MultiplicityField, {
|
|
43
|
+
control: control,
|
|
44
|
+
register: register,
|
|
45
|
+
trigger: trigger,
|
|
46
|
+
clearErrors: clearErrors,
|
|
47
|
+
error: error,
|
|
48
|
+
formState: formState,
|
|
49
|
+
setValue: setValue,
|
|
50
|
+
getValues: getValues,
|
|
51
|
+
unregister: unregister,
|
|
52
|
+
resetField: resetField,
|
|
53
|
+
Field: Field_Field,
|
|
54
|
+
...resolvedField
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
const editable = false !== customField.editable && true !== customField.disabled;
|
|
58
|
+
const customError = error ? error : formState?.errors[name];
|
|
59
|
+
return /*#__PURE__*/ react.createElement(FieldBase, {
|
|
60
|
+
...resolvedField,
|
|
61
|
+
editable: editable,
|
|
62
|
+
name: name,
|
|
63
|
+
control: control,
|
|
64
|
+
register: register,
|
|
65
|
+
reset: reset,
|
|
66
|
+
error: customError,
|
|
67
|
+
resetField: resetField,
|
|
68
|
+
Field: Field_Field
|
|
37
69
|
});
|
|
38
|
-
}
|
|
39
|
-
if (calculatedField.type === 'array' && !calculatedField.multiplicity) {
|
|
40
|
-
calculatedField.name = name;
|
|
41
|
-
return /*#__PURE__*/React.createElement(FieldArray, _extends({
|
|
42
|
-
control: control,
|
|
43
|
-
register: register,
|
|
44
|
-
error: error,
|
|
45
|
-
formState: formState
|
|
46
|
-
}, calculatedField));
|
|
47
|
-
}
|
|
48
|
-
if (calculatedField.type === 'array' && calculatedField.multiplicity === true) {
|
|
49
|
-
calculatedField.name = name;
|
|
50
|
-
return /*#__PURE__*/React.createElement(Multiplicity, _extends({
|
|
51
|
-
control: control,
|
|
52
|
-
register: register,
|
|
53
|
-
trigger: trigger,
|
|
54
|
-
clearErrors: clearErrors,
|
|
55
|
-
error: error,
|
|
56
|
-
formState: formState,
|
|
57
|
-
setValue: setValue,
|
|
58
|
-
getValues: getValues,
|
|
59
|
-
unregister: unregister
|
|
60
|
-
}, calculatedField));
|
|
61
|
-
}
|
|
62
|
-
return /*#__PURE__*/React.createElement(FieldBase, _extends({}, calculatedField, {
|
|
63
|
-
name: name,
|
|
64
|
-
control: control,
|
|
65
|
-
register: register,
|
|
66
|
-
reset: reset,
|
|
67
|
-
error: error
|
|
68
|
-
}));
|
|
69
70
|
};
|
|
70
|
-
|
|
71
|
+
const Field = Field_Field;
|
|
72
|
+
export { Field_Field as Field, Field as default };
|