@digigov/form 1.0.0-a131264d → 1.0.0-b4257f67
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/Field/FieldBase.js +14 -31
- package/Field/FieldBaseContainer.js +19 -41
- package/Field/FieldConditional.js +14 -33
- package/Field/index.js +18 -45
- package/Field/package.json +6 -0
- package/Field/types.js +1 -5
- package/Field/utils.js +30 -63
- package/FieldArray/FieldArray.stories.js +5 -42
- package/FieldArray/__stories__/Default.js +11 -32
- package/FieldArray/__stories__/WithExactLength.js +11 -32
- package/FieldArray/index.js +19 -41
- package/FieldArray/package.json +6 -0
- package/FieldObject/index.js +16 -41
- package/FieldObject/package.json +6 -0
- package/Fieldset/FieldsetWithContext.js +13 -35
- package/Fieldset/index.js +21 -51
- package/Fieldset/package.json +6 -0
- package/Fieldset/types.js +1 -5
- package/Form.stories.js +2 -9
- package/FormBuilder/FormBuilder.js +33 -62
- package/FormBuilder/FormBuilder.stories.js +4 -28
- package/FormBuilder/__stories__/Default.js +8 -29
- package/FormBuilder/index.js +2 -11
- package/FormBuilder/package.json +6 -0
- package/FormContext.js +3 -12
- package/MultiplicityField/MultiplicityField.stories.js +9 -98
- package/MultiplicityField/__stories__/Default.js +11 -32
- package/MultiplicityField/__stories__/PreviewDisplay.js +29 -52
- package/MultiplicityField/__stories__/WithExactLength.js +11 -32
- package/MultiplicityField/__stories__/WithMaxLength.js +11 -32
- package/MultiplicityField/__stories__/WithMinAndMaxLength.js +11 -32
- package/MultiplicityField/__stories__/WithMinLength.js +11 -32
- package/MultiplicityField/add-objects.js +25 -49
- package/MultiplicityField/index.js +26 -55
- package/MultiplicityField/package.json +6 -0
- package/Questions/Questions.js +14 -35
- package/Questions/Questions.stories.js +4 -28
- package/Questions/QuestionsContext.js +3 -12
- package/Questions/Step/ReviewStep.js +21 -47
- package/Questions/Step/Step.js +18 -42
- package/Questions/Step/StepArrayReview.js +23 -52
- package/Questions/Step/StepContext.js +3 -13
- package/Questions/Step/StepDescription.js +14 -42
- package/Questions/Step/StepForm.js +19 -45
- package/Questions/Step/StepQuote.js +8 -23
- package/Questions/Step/StepTitle.js +17 -48
- package/Questions/Step/getAddMoreFields.js +2 -11
- package/Questions/Step/index.js +13 -170
- package/Questions/Step/package.json +6 -0
- package/Questions/Step/types.js +1 -5
- package/Questions/__stories__/Default.js +24 -51
- package/Questions/getNextStep.js +1 -8
- package/Questions/index.js +3 -25
- package/Questions/index.spec.js +12 -23
- package/Questions/package.json +6 -0
- package/Questions/types.js +1 -5
- package/{es → cjs}/Field/FieldBase.js +31 -14
- package/cjs/Field/FieldBaseContainer.js +65 -0
- package/cjs/Field/FieldConditional.js +81 -0
- package/cjs/Field/index.js +103 -0
- package/cjs/Field/types.js +5 -0
- package/{es → cjs}/Field/utils.js +63 -30
- package/cjs/FieldArray/FieldArray.stories.js +45 -0
- package/cjs/FieldArray/__stories__/Default.js +111 -0
- package/cjs/FieldArray/__stories__/WithExactLength.js +111 -0
- package/cjs/FieldArray/index.js +87 -0
- package/cjs/FieldObject/index.js +83 -0
- package/cjs/Fieldset/FieldsetWithContext.js +63 -0
- package/cjs/Fieldset/index.js +64 -0
- package/cjs/Fieldset/types.js +5 -0
- package/cjs/Form.stories.js +10 -0
- package/{es → cjs}/FormBuilder/FormBuilder.js +62 -33
- package/cjs/FormBuilder/FormBuilder.stories.js +31 -0
- package/cjs/FormBuilder/__stories__/Default.js +49 -0
- package/cjs/FormBuilder/index.js +11 -0
- package/cjs/FormContext.js +14 -0
- package/cjs/MultiplicityField/MultiplicityField.stories.js +101 -0
- package/{es → cjs}/MultiplicityField/__stories__/Default.js +32 -11
- package/cjs/MultiplicityField/__stories__/PreviewDisplay.js +106 -0
- package/{es → cjs}/MultiplicityField/__stories__/WithExactLength.js +32 -11
- package/{es → cjs}/MultiplicityField/__stories__/WithMaxLength.js +32 -11
- package/{es → cjs}/MultiplicityField/__stories__/WithMinAndMaxLength.js +32 -11
- package/{es → cjs}/MultiplicityField/__stories__/WithMinLength.js +32 -11
- package/{es → cjs}/MultiplicityField/add-objects.js +49 -25
- package/cjs/MultiplicityField/index.js +143 -0
- package/cjs/Questions/Questions.js +105 -0
- package/cjs/Questions/Questions.stories.js +31 -0
- package/cjs/Questions/QuestionsContext.js +20 -0
- package/cjs/Questions/Step/ReviewStep.js +79 -0
- package/cjs/Questions/Step/Step.js +93 -0
- package/cjs/Questions/Step/StepArrayReview.js +79 -0
- package/{es → cjs}/Questions/Step/StepContext.js +13 -3
- package/cjs/Questions/Step/StepDescription.js +55 -0
- package/cjs/Questions/Step/StepForm.js +74 -0
- package/cjs/Questions/Step/StepQuote.js +26 -0
- package/cjs/Questions/Step/StepTitle.js +75 -0
- package/{es → cjs}/Questions/Step/getAddMoreFields.js +11 -2
- package/cjs/Questions/Step/index.js +170 -0
- package/cjs/Questions/Step/types.js +5 -0
- package/cjs/Questions/__stories__/Default.js +135 -0
- package/{es → cjs}/Questions/getNextStep.js +8 -1
- package/cjs/Questions/index.js +25 -0
- package/cjs/Questions/index.spec.js +73 -0
- package/cjs/Questions/types.js +5 -0
- package/cjs/index.js +28 -0
- package/cjs/inputs/AutoComplete/AutoComplete.stories.js +31 -0
- package/cjs/inputs/AutoComplete/__stories__/Default.js +71 -0
- package/cjs/inputs/AutoComplete/index.js +68 -0
- package/cjs/inputs/Checkboxes/Checkboxes.stories.js +59 -0
- package/{es → cjs}/inputs/Checkboxes/__stories__/Conditional.js +28 -8
- package/cjs/inputs/Checkboxes/__stories__/Default.js +62 -0
- package/cjs/inputs/Checkboxes/__stories__/WithDivider.js +63 -0
- package/cjs/inputs/Checkboxes/index.js +127 -0
- package/cjs/inputs/DateInput/DateInput.stories.js +31 -0
- package/cjs/inputs/DateInput/__stories__/Default.js +45 -0
- package/cjs/inputs/DateInput/index.js +181 -0
- package/cjs/inputs/FileInput/FileInput.stories.js +31 -0
- package/cjs/inputs/FileInput/__stories__/Default.js +42 -0
- package/cjs/inputs/FileInput/index.js +92 -0
- package/cjs/inputs/Input/Input.stories.js +143 -0
- package/cjs/inputs/Input/__stories__/AFM.js +44 -0
- package/cjs/inputs/Input/__stories__/Boolean.js +45 -0
- package/cjs/inputs/Input/__stories__/Default.js +45 -0
- package/cjs/inputs/Input/__stories__/IBAN.js +45 -0
- package/cjs/inputs/Input/__stories__/Integer.js +53 -0
- package/cjs/inputs/Input/__stories__/MobilePhone.js +44 -0
- package/cjs/inputs/Input/__stories__/PhoneNumber.js +44 -0
- package/cjs/inputs/Input/__stories__/PostalCode.js +47 -0
- package/cjs/inputs/Input/__stories__/TextWithCharacterLimit.js +51 -0
- package/cjs/inputs/Input/index.js +96 -0
- package/cjs/inputs/Label/Label.stories.js +31 -0
- package/cjs/inputs/Label/__stories__/Default.js +49 -0
- package/cjs/inputs/Label/index.js +41 -0
- package/cjs/inputs/OtpInput/OtpInput.stories.js +31 -0
- package/cjs/inputs/OtpInput/__stories__/Default.js +52 -0
- package/cjs/inputs/OtpInput/index.js +182 -0
- package/cjs/inputs/Radio/Radio.stories.js +59 -0
- package/{es → cjs}/inputs/Radio/__stories__/Conditional.js +28 -8
- package/cjs/inputs/Radio/__stories__/Default.js +67 -0
- package/cjs/inputs/Radio/__stories__/WithDivider.js +68 -0
- package/cjs/inputs/Radio/index.js +82 -0
- package/cjs/inputs/Select/Select.stories.js +31 -0
- package/cjs/inputs/Select/__stories__/Default.js +73 -0
- package/cjs/inputs/Select/index.js +49 -0
- package/cjs/inputs/index.js +71 -0
- package/cjs/internal.js +391 -0
- package/cjs/registry.js +208 -0
- package/cjs/types.js +5 -0
- package/{es → cjs}/utils.js +26 -12
- package/{es → cjs}/validators/index.js +54 -26
- package/cjs/validators/types.js +5 -0
- package/{es → cjs}/validators/utils/afm.js +13 -3
- package/{es → cjs}/validators/utils/file.js +12 -2
- package/{es → cjs}/validators/utils/iban.js +13 -2
- package/cjs/validators/utils/index.js +229 -0
- package/{es → cjs}/validators/utils/int.js +14 -3
- package/cjs/validators/utils/number.js +27 -0
- package/{es → cjs}/validators/utils/otp.js +14 -3
- package/{es → cjs}/validators/utils/phone.js +28 -6
- package/{es → cjs}/validators/utils/postal_code.js +14 -3
- package/{es → cjs}/validators/utils/text_limit.js +14 -3
- package/{es → cjs}/validators/utils/uuid4.js +13 -3
- package/cjs/validators/validators.spec.js +88 -0
- package/index.js +8 -28
- package/inputs/AutoComplete/AutoComplete.stories.js +4 -28
- package/inputs/AutoComplete/__stories__/Default.js +13 -35
- package/inputs/AutoComplete/index.js +12 -35
- package/inputs/AutoComplete/package.json +6 -0
- package/inputs/Checkboxes/Checkboxes.stories.js +6 -56
- package/inputs/Checkboxes/__stories__/Conditional.js +8 -28
- package/inputs/Checkboxes/__stories__/Default.js +8 -28
- package/inputs/Checkboxes/__stories__/WithDivider.js +8 -28
- package/inputs/Checkboxes/index.js +25 -52
- package/inputs/Checkboxes/package.json +6 -0
- package/inputs/DateInput/DateInput.stories.js +4 -28
- package/inputs/DateInput/__stories__/Default.js +8 -28
- package/inputs/DateInput/index.js +26 -52
- package/inputs/DateInput/package.json +6 -0
- package/inputs/FileInput/FileInput.stories.js +4 -28
- package/inputs/FileInput/__stories__/Default.js +8 -28
- package/inputs/FileInput/index.js +22 -52
- package/inputs/FileInput/package.json +6 -0
- package/inputs/Input/Input.stories.js +12 -140
- package/inputs/Input/__stories__/AFM.js +8 -28
- package/inputs/Input/__stories__/Boolean.js +8 -28
- package/inputs/Input/__stories__/Default.js +8 -28
- package/inputs/Input/__stories__/IBAN.js +8 -28
- package/inputs/Input/__stories__/Integer.js +9 -29
- package/inputs/Input/__stories__/MobilePhone.js +8 -28
- package/inputs/Input/__stories__/PhoneNumber.js +8 -28
- package/inputs/Input/__stories__/PostalCode.js +8 -28
- package/inputs/Input/__stories__/TextWithCharacterLimit.js +8 -28
- package/inputs/Input/index.js +19 -40
- package/inputs/Input/package.json +6 -0
- package/inputs/Label/Label.stories.js +4 -28
- package/inputs/Label/__stories__/Default.js +9 -29
- package/inputs/Label/index.js +9 -25
- package/inputs/Label/package.json +6 -0
- package/inputs/OtpInput/OtpInput.stories.js +4 -28
- package/inputs/OtpInput/__stories__/Default.js +9 -30
- package/inputs/OtpInput/index.js +28 -53
- package/inputs/OtpInput/package.json +6 -0
- package/inputs/Radio/Radio.stories.js +6 -56
- package/inputs/Radio/__stories__/Conditional.js +8 -28
- package/inputs/Radio/__stories__/Default.js +8 -28
- package/inputs/Radio/__stories__/WithDivider.js +8 -28
- package/inputs/Radio/index.js +24 -45
- package/inputs/Radio/package.json +6 -0
- package/inputs/Select/Select.stories.js +4 -28
- package/inputs/Select/__stories__/Default.js +8 -28
- package/inputs/Select/index.js +12 -29
- package/inputs/Select/package.json +6 -0
- package/inputs/index.js +8 -71
- package/inputs/package.json +6 -0
- package/internal.js +34 -391
- package/package.json +6 -6
- package/registry.d.ts +1 -1
- package/registry.js +61 -133
- package/types.js +1 -5
- package/utils.js +12 -26
- package/validators/index.js +26 -54
- package/validators/package.json +6 -0
- package/validators/types.js +1 -5
- package/validators/utils/afm.js +3 -13
- package/validators/utils/file.js +2 -12
- package/validators/utils/iban.js +2 -13
- package/validators/utils/index.js +12 -139
- package/validators/utils/int.js +3 -14
- package/validators/utils/number.js +3 -14
- package/validators/utils/otp.js +3 -14
- package/validators/utils/package.json +6 -0
- package/validators/utils/phone.js +6 -28
- package/validators/utils/postal_code.js +3 -14
- package/validators/utils/text_limit.js +3 -14
- package/validators/utils/uuid4.js +3 -13
- package/validators/validators.spec.js +29 -32
- package/Field/FieldBase.mjs +0 -84
- package/Field/FieldBaseContainer.mjs +0 -43
- package/Field/FieldConditional.mjs +0 -62
- package/Field/index.mjs +0 -76
- package/Field/types.mjs +0 -1
- package/Field/utils.mjs +0 -162
- package/FieldArray/FieldArray.stories.mjs +0 -8
- package/FieldArray/__stories__/Default.mjs +0 -90
- package/FieldArray/__stories__/WithExactLength.mjs +0 -90
- package/FieldArray/index.mjs +0 -65
- package/FieldObject/index.mjs +0 -58
- package/Fieldset/FieldsetWithContext.mjs +0 -41
- package/Fieldset/index.mjs +0 -34
- package/Fieldset/types.mjs +0 -1
- package/Form.stories.mjs +0 -3
- package/FormBuilder/FormBuilder.mjs +0 -160
- package/FormBuilder/FormBuilder.stories.mjs +0 -7
- package/FormBuilder/__stories__/Default.mjs +0 -28
- package/FormBuilder/index.mjs +0 -2
- package/FormContext.mjs +0 -5
- package/MultiplicityField/MultiplicityField.stories.mjs +0 -12
- package/MultiplicityField/__stories__/Default.mjs +0 -97
- package/MultiplicityField/__stories__/PreviewDisplay.mjs +0 -83
- package/MultiplicityField/__stories__/WithExactLength.mjs +0 -92
- package/MultiplicityField/__stories__/WithMaxLength.mjs +0 -95
- package/MultiplicityField/__stories__/WithMinAndMaxLength.mjs +0 -96
- package/MultiplicityField/__stories__/WithMinLength.mjs +0 -95
- package/MultiplicityField/add-objects.mjs +0 -160
- package/MultiplicityField/index.mjs +0 -114
- package/Questions/Questions.mjs +0 -84
- package/Questions/Questions.stories.mjs +0 -7
- package/Questions/QuestionsContext.mjs +0 -11
- package/Questions/Step/ReviewStep.mjs +0 -53
- package/Questions/Step/Step.mjs +0 -69
- package/Questions/Step/StepArrayReview.mjs +0 -50
- package/Questions/Step/StepContext.mjs +0 -27
- package/Questions/Step/StepDescription.mjs +0 -27
- package/Questions/Step/StepForm.mjs +0 -48
- package/Questions/Step/StepQuote.mjs +0 -11
- package/Questions/Step/StepTitle.mjs +0 -44
- package/Questions/Step/getAddMoreFields.mjs +0 -22
- package/Questions/Step/index.mjs +0 -13
- package/Questions/Step/types.mjs +0 -1
- package/Questions/__stories__/Default.mjs +0 -108
- package/Questions/getNextStep.mjs +0 -23
- package/Questions/index.mjs +0 -3
- package/Questions/index.spec.mjs +0 -62
- package/Questions/types.mjs +0 -1
- package/es/Field/FieldBaseContainer.js +0 -43
- package/es/Field/FieldConditional.js +0 -62
- package/es/Field/index.js +0 -76
- package/es/Field/types.js +0 -1
- package/es/FieldArray/FieldArray.stories.js +0 -8
- package/es/FieldArray/__stories__/Default.js +0 -90
- package/es/FieldArray/__stories__/WithExactLength.js +0 -90
- package/es/FieldArray/index.js +0 -65
- package/es/FieldObject/index.js +0 -58
- package/es/Fieldset/FieldsetWithContext.js +0 -41
- package/es/Fieldset/index.js +0 -34
- package/es/Fieldset/types.js +0 -1
- package/es/Form.stories.js +0 -3
- package/es/FormBuilder/FormBuilder.stories.js +0 -7
- package/es/FormBuilder/__stories__/Default.js +0 -28
- package/es/FormBuilder/index.js +0 -2
- package/es/FormContext.js +0 -5
- package/es/MultiplicityField/MultiplicityField.stories.js +0 -12
- package/es/MultiplicityField/__stories__/PreviewDisplay.js +0 -83
- package/es/MultiplicityField/index.js +0 -114
- package/es/Questions/Questions.js +0 -84
- package/es/Questions/Questions.stories.js +0 -7
- package/es/Questions/QuestionsContext.js +0 -11
- package/es/Questions/Step/ReviewStep.js +0 -53
- package/es/Questions/Step/Step.js +0 -69
- package/es/Questions/Step/StepArrayReview.js +0 -50
- package/es/Questions/Step/StepDescription.js +0 -27
- package/es/Questions/Step/StepForm.js +0 -48
- package/es/Questions/Step/StepQuote.js +0 -11
- package/es/Questions/Step/StepTitle.js +0 -44
- package/es/Questions/Step/index.js +0 -13
- package/es/Questions/Step/types.js +0 -1
- package/es/Questions/__stories__/Default.js +0 -108
- package/es/Questions/index.js +0 -3
- package/es/Questions/index.spec.js +0 -62
- package/es/Questions/types.js +0 -1
- package/es/index.js +0 -3
- package/es/inputs/AutoComplete/AutoComplete.stories.js +0 -7
- package/es/inputs/AutoComplete/__stories__/Default.js +0 -49
- package/es/inputs/AutoComplete/index.js +0 -45
- package/es/inputs/Checkboxes/Checkboxes.stories.js +0 -9
- package/es/inputs/Checkboxes/__stories__/Default.js +0 -42
- package/es/inputs/Checkboxes/__stories__/WithDivider.js +0 -43
- package/es/inputs/Checkboxes/index.js +0 -100
- package/es/inputs/DateInput/DateInput.stories.js +0 -7
- package/es/inputs/DateInput/__stories__/Default.js +0 -25
- package/es/inputs/DateInput/index.js +0 -155
- package/es/inputs/FileInput/FileInput.stories.js +0 -7
- package/es/inputs/FileInput/__stories__/Default.js +0 -22
- package/es/inputs/FileInput/index.js +0 -62
- package/es/inputs/Input/Input.stories.js +0 -15
- package/es/inputs/Input/__stories__/AFM.js +0 -24
- package/es/inputs/Input/__stories__/Boolean.js +0 -25
- package/es/inputs/Input/__stories__/Default.js +0 -25
- package/es/inputs/Input/__stories__/IBAN.js +0 -25
- package/es/inputs/Input/__stories__/Integer.js +0 -33
- package/es/inputs/Input/__stories__/MobilePhone.js +0 -24
- package/es/inputs/Input/__stories__/PhoneNumber.js +0 -24
- package/es/inputs/Input/__stories__/PostalCode.js +0 -27
- package/es/inputs/Input/__stories__/TextWithCharacterLimit.js +0 -31
- package/es/inputs/Input/index.js +0 -75
- package/es/inputs/Label/Label.stories.js +0 -7
- package/es/inputs/Label/__stories__/Default.js +0 -29
- package/es/inputs/Label/index.js +0 -25
- package/es/inputs/OtpInput/OtpInput.stories.js +0 -7
- package/es/inputs/OtpInput/__stories__/Default.js +0 -31
- package/es/inputs/OtpInput/index.js +0 -157
- package/es/inputs/Radio/Radio.stories.js +0 -9
- package/es/inputs/Radio/__stories__/Default.js +0 -47
- package/es/inputs/Radio/__stories__/WithDivider.js +0 -48
- package/es/inputs/Radio/index.js +0 -61
- package/es/inputs/Select/Select.stories.js +0 -7
- package/es/inputs/Select/__stories__/Default.js +0 -53
- package/es/inputs/Select/index.js +0 -32
- package/es/inputs/index.js +0 -8
- package/es/internal.js +0 -34
- package/es/registry.js +0 -136
- package/es/types.js +0 -1
- package/es/validators/types.js +0 -1
- package/es/validators/utils/index.js +0 -102
- package/es/validators/utils/number.js +0 -16
- package/es/validators/validators.spec.js +0 -85
- package/index.mjs +0 -8
- package/inputs/AutoComplete/AutoComplete.stories.mjs +0 -7
- package/inputs/AutoComplete/__stories__/Default.mjs +0 -49
- package/inputs/AutoComplete/index.mjs +0 -45
- package/inputs/Checkboxes/Checkboxes.stories.mjs +0 -9
- package/inputs/Checkboxes/__stories__/Conditional.mjs +0 -95
- package/inputs/Checkboxes/__stories__/Default.mjs +0 -42
- package/inputs/Checkboxes/__stories__/WithDivider.mjs +0 -43
- package/inputs/Checkboxes/index.mjs +0 -100
- package/inputs/DateInput/DateInput.stories.mjs +0 -7
- package/inputs/DateInput/__stories__/Default.mjs +0 -25
- package/inputs/DateInput/index.mjs +0 -155
- package/inputs/FileInput/FileInput.stories.mjs +0 -7
- package/inputs/FileInput/__stories__/Default.mjs +0 -22
- package/inputs/FileInput/index.mjs +0 -62
- package/inputs/Input/Input.stories.mjs +0 -15
- package/inputs/Input/__stories__/AFM.mjs +0 -24
- package/inputs/Input/__stories__/Boolean.mjs +0 -25
- package/inputs/Input/__stories__/Default.mjs +0 -25
- package/inputs/Input/__stories__/IBAN.mjs +0 -25
- package/inputs/Input/__stories__/Integer.mjs +0 -33
- package/inputs/Input/__stories__/MobilePhone.mjs +0 -24
- package/inputs/Input/__stories__/PhoneNumber.mjs +0 -24
- package/inputs/Input/__stories__/PostalCode.mjs +0 -27
- package/inputs/Input/__stories__/TextWithCharacterLimit.mjs +0 -31
- package/inputs/Input/index.mjs +0 -75
- package/inputs/Label/Label.stories.mjs +0 -7
- package/inputs/Label/__stories__/Default.mjs +0 -29
- package/inputs/Label/index.mjs +0 -25
- package/inputs/OtpInput/OtpInput.stories.mjs +0 -7
- package/inputs/OtpInput/__stories__/Default.mjs +0 -31
- package/inputs/OtpInput/index.mjs +0 -157
- package/inputs/Radio/Radio.stories.mjs +0 -9
- package/inputs/Radio/__stories__/Conditional.mjs +0 -95
- package/inputs/Radio/__stories__/Default.mjs +0 -47
- package/inputs/Radio/__stories__/WithDivider.mjs +0 -48
- package/inputs/Radio/index.mjs +0 -61
- package/inputs/Select/Select.stories.mjs +0 -7
- package/inputs/Select/__stories__/Default.mjs +0 -53
- package/inputs/Select/index.mjs +0 -32
- package/inputs/index.mjs +0 -8
- package/internal.mjs +0 -34
- package/registry.mjs +0 -136
- package/types.mjs +0 -1
- package/utils.mjs +0 -99
- package/validators/index.mjs +0 -186
- package/validators/types.mjs +0 -1
- package/validators/utils/afm.mjs +0 -35
- package/validators/utils/file.mjs +0 -52
- package/validators/utils/iban.mjs +0 -123
- package/validators/utils/index.mjs +0 -102
- package/validators/utils/int.mjs +0 -20
- package/validators/utils/number.mjs +0 -16
- package/validators/utils/otp.mjs +0 -26
- package/validators/utils/phone.mjs +0 -122
- package/validators/utils/postal_code.mjs +0 -29
- package/validators/utils/text_limit.mjs +0 -54
- package/validators/utils/uuid4.mjs +0 -20
- package/validators/validators.spec.mjs +0 -85
- /package/{es → cjs}/Field/index.mdx +0 -0
- /package/{es → cjs}/FieldArray/FieldArray.stories.playwright.json +0 -0
- /package/{es → cjs}/FormBuilder/FormBuilder.mdx +0 -0
- /package/{es → cjs}/FormBuilder/FormBuilder.stories.playwright.json +0 -0
- /package/{es → cjs}/MultiplicityField/MultiplicityField.mdx +0 -0
- /package/{es → cjs}/MultiplicityField/MultiplicityField.stories.playwright.json +0 -0
- /package/{es → cjs}/Questions/__snapshots__/index.spec.tsx.snap +0 -0
- /package/{es → cjs}/Questions/index.mdx +0 -0
- /package/{es → cjs}/create-simple-form.mdx +0 -0
- /package/{es → cjs}/index.mdx +0 -0
- /package/{es → cjs}/inputs/Checkboxes/Checkboxes.stories.playwright.json +0 -0
- /package/{es → cjs}/inputs/Checkboxes/index.mdx +0 -0
- /package/{es → cjs}/inputs/DateInput/DateInput.stories.playwright.json +0 -0
- /package/{es → cjs}/inputs/FileInput/FileInput.stories.playwright.json +0 -0
- /package/{es → cjs}/inputs/Input/Input.stories.playwright.json +0 -0
- /package/{es → cjs}/inputs/Input/index.mdx +0 -0
- /package/{es → cjs}/inputs/Label/Label.stories.playwright.json +0 -0
- /package/{es → cjs}/inputs/Label/index.mdx +0 -0
- /package/{es → cjs}/inputs/Radio/Radio.stories.playwright.json +0 -0
- /package/{es → cjs}/inputs/Radio/index.mdx +0 -0
- /package/{es → cjs}/inputs/Select/Select.stories.playwright.json +0 -0
- /package/{es → cjs}/installation.mdx +0 -0
package/Field/FieldBase.js
CHANGED
|
@@ -1,25 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports.FieldBase = void 0;
|
|
9
|
-
|
|
10
|
-
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
-
|
|
12
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
13
|
-
|
|
14
|
-
var _react = _interopRequireDefault(require("react"));
|
|
15
|
-
|
|
16
|
-
var _reactHookForm = require("react-hook-form");
|
|
17
|
-
|
|
18
|
-
var _FieldBaseContainer = _interopRequireDefault(require("./FieldBaseContainer"));
|
|
19
|
-
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
20
3
|
var _excluded = ["required", "name", "component", "wrapper", "control", "type", "controlled", "enabled", "editable", "defaultValue", "label", "extra", "layout", "error", "register"];
|
|
21
|
-
|
|
22
|
-
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { Controller } from 'react-hook-form';
|
|
6
|
+
import FieldBaseContainer from "./FieldBaseContainer";
|
|
7
|
+
export var FieldBase = function FieldBase(props) {
|
|
23
8
|
var required = props.required,
|
|
24
9
|
name = props.name,
|
|
25
10
|
Component = props.component,
|
|
@@ -38,25 +23,25 @@ var FieldBase = function FieldBase(props) {
|
|
|
38
23
|
layout = props.layout,
|
|
39
24
|
error = props.error,
|
|
40
25
|
register = props.register,
|
|
41
|
-
componentProps = (
|
|
26
|
+
componentProps = _objectWithoutProperties(props, _excluded);
|
|
42
27
|
|
|
43
28
|
if (!enabled) {
|
|
44
29
|
return null;
|
|
45
30
|
}
|
|
46
31
|
|
|
47
32
|
if (controlled) {
|
|
48
|
-
return /*#__PURE__*/
|
|
33
|
+
return /*#__PURE__*/React.createElement(FieldBaseContainer, {
|
|
49
34
|
label: label,
|
|
50
35
|
layout: layout,
|
|
51
36
|
error: error,
|
|
52
37
|
wrapper: wrapper,
|
|
53
38
|
name: name
|
|
54
|
-
}, /*#__PURE__*/
|
|
39
|
+
}, /*#__PURE__*/React.createElement(Controller, {
|
|
55
40
|
control: control,
|
|
56
41
|
name: name,
|
|
57
42
|
render: function render(_ref) {
|
|
58
43
|
var field = _ref.field;
|
|
59
|
-
return /*#__PURE__*/
|
|
44
|
+
return /*#__PURE__*/React.createElement(Component, _extends({}, field, {
|
|
60
45
|
defaultValue: defaultValue,
|
|
61
46
|
extra: extra,
|
|
62
47
|
error: !!error,
|
|
@@ -70,13 +55,13 @@ var FieldBase = function FieldBase(props) {
|
|
|
70
55
|
}));
|
|
71
56
|
}
|
|
72
57
|
|
|
73
|
-
return /*#__PURE__*/
|
|
58
|
+
return /*#__PURE__*/React.createElement(FieldBaseContainer, {
|
|
74
59
|
label: label,
|
|
75
60
|
layout: layout,
|
|
76
61
|
error: error,
|
|
77
62
|
wrapper: wrapper,
|
|
78
63
|
name: name
|
|
79
|
-
}, Component !== null && Component !== void 0 && Component.render ? /*#__PURE__*/
|
|
64
|
+
}, Component !== null && Component !== void 0 && Component.render ? /*#__PURE__*/React.createElement(Component, _extends({}, register(name), {
|
|
80
65
|
control: control,
|
|
81
66
|
error: !!error,
|
|
82
67
|
extra: extra,
|
|
@@ -85,7 +70,7 @@ var FieldBase = function FieldBase(props) {
|
|
|
85
70
|
"aria-describedby": error && "".concat(name, "-error"),
|
|
86
71
|
required: required,
|
|
87
72
|
disabled: editable === false
|
|
88
|
-
}, componentProps)) : /*#__PURE__*/
|
|
73
|
+
}, componentProps)) : /*#__PURE__*/React.createElement(Component, _extends({}, register(name), {
|
|
89
74
|
register: register,
|
|
90
75
|
control: control,
|
|
91
76
|
error: !!error,
|
|
@@ -96,6 +81,4 @@ var FieldBase = function FieldBase(props) {
|
|
|
96
81
|
required: required,
|
|
97
82
|
disabled: editable === false
|
|
98
83
|
}, componentProps)));
|
|
99
|
-
};
|
|
100
|
-
|
|
101
|
-
exports.FieldBase = FieldBase;
|
|
84
|
+
};
|
|
@@ -1,33 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
var _react = _interopRequireDefault(require("react"));
|
|
13
|
-
|
|
14
|
-
var _Label = _interopRequireDefault(require("../inputs/Label"));
|
|
15
|
-
|
|
16
|
-
var _ErrorMessage = _interopRequireDefault(require("@digigov/react-core/ErrorMessage"));
|
|
17
|
-
|
|
18
|
-
var _FieldContainer = _interopRequireDefault(require("@digigov/react-core/FieldContainer"));
|
|
19
|
-
|
|
20
|
-
var _Fieldset = _interopRequireDefault(require("@digigov/react-core/Fieldset"));
|
|
21
|
-
|
|
22
|
-
var _FieldsetLegend = _interopRequireDefault(require("@digigov/react-core/FieldsetLegend"));
|
|
23
|
-
|
|
24
|
-
var _Hint = _interopRequireDefault(require("@digigov/react-core/Hint"));
|
|
25
|
-
|
|
26
|
-
var _LabelContainer = _interopRequireDefault(require("@digigov/react-core/LabelContainer"));
|
|
27
|
-
|
|
28
|
-
var _i18n = require("@digigov/ui/i18n");
|
|
29
|
-
|
|
30
|
-
var FieldBaseContainer = function FieldBaseContainer(_ref) {
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import Label from "../inputs/Label";
|
|
4
|
+
import ErrorMessage from '@digigov/react-core/ErrorMessage';
|
|
5
|
+
import FieldContainer from '@digigov/react-core/FieldContainer';
|
|
6
|
+
import CoreFieldset from '@digigov/react-core/Fieldset';
|
|
7
|
+
import FieldsetLegend from '@digigov/react-core/FieldsetLegend';
|
|
8
|
+
import Hint from '@digigov/react-core/Hint';
|
|
9
|
+
import LabelContainer from '@digigov/react-core/LabelContainer';
|
|
10
|
+
import { useTranslation } from '@digigov/ui/i18n';
|
|
11
|
+
export var FieldBaseContainer = function FieldBaseContainer(_ref) {
|
|
31
12
|
var name = _ref.name,
|
|
32
13
|
wrapper = _ref.wrapper,
|
|
33
14
|
label = _ref.label,
|
|
@@ -35,31 +16,28 @@ var FieldBaseContainer = function FieldBaseContainer(_ref) {
|
|
|
35
16
|
error = _ref.error,
|
|
36
17
|
layout = _ref.layout;
|
|
37
18
|
|
|
38
|
-
var _useTranslation =
|
|
19
|
+
var _useTranslation = useTranslation(),
|
|
39
20
|
t = _useTranslation.t;
|
|
40
21
|
|
|
41
22
|
var errorMessage = error !== null && error !== void 0 && error.message.key ? error.message.key : (error === null || error === void 0 ? void 0 : error.message) || '';
|
|
42
23
|
var errorContext = (error === null || error === void 0 ? void 0 : error.message.context) || {};
|
|
43
24
|
|
|
44
25
|
if (wrapper === 'fieldset') {
|
|
45
|
-
return /*#__PURE__*/
|
|
26
|
+
return /*#__PURE__*/React.createElement(FieldContainer, _extends({
|
|
46
27
|
error: !!error
|
|
47
|
-
}, layout), /*#__PURE__*/
|
|
28
|
+
}, layout), /*#__PURE__*/React.createElement(CoreFieldset, null, /*#__PURE__*/React.createElement(FieldsetLegend, {
|
|
48
29
|
size: "sm"
|
|
49
|
-
}, label && label.primary), label && label.secondary && /*#__PURE__*/
|
|
30
|
+
}, label && label.primary), label && label.secondary && /*#__PURE__*/React.createElement(Hint, null, t(label.secondary)), error && /*#__PURE__*/React.createElement(ErrorMessage, {
|
|
50
31
|
id: "".concat(name, "-error")
|
|
51
32
|
}, t(errorMessage, errorContext)), children));
|
|
52
33
|
} else {
|
|
53
|
-
return /*#__PURE__*/
|
|
34
|
+
return /*#__PURE__*/React.createElement(FieldContainer, _extends({
|
|
54
35
|
error: !!error
|
|
55
|
-
}, layout), /*#__PURE__*/
|
|
36
|
+
}, layout), /*#__PURE__*/React.createElement(LabelContainer, null, label && /*#__PURE__*/React.createElement(Label, {
|
|
56
37
|
label: label
|
|
57
|
-
}), error && /*#__PURE__*/
|
|
38
|
+
}), error && /*#__PURE__*/React.createElement(ErrorMessage, {
|
|
58
39
|
id: "".concat(name, "-error")
|
|
59
40
|
}, t(errorMessage, errorContext)), children));
|
|
60
41
|
}
|
|
61
42
|
};
|
|
62
|
-
|
|
63
|
-
exports.FieldBaseContainer = FieldBaseContainer;
|
|
64
|
-
var _default = FieldBaseContainer;
|
|
65
|
-
exports["default"] = _default;
|
|
43
|
+
export default FieldBaseContainer;
|
|
@@ -1,33 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
exports["default"] = exports.FieldConditional = void 0;
|
|
9
|
-
|
|
10
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
|
-
|
|
12
|
-
var _extends3 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
13
|
-
|
|
14
|
-
var _react = _interopRequireDefault(require("react"));
|
|
15
|
-
|
|
16
|
-
var _reactHookForm = require("react-hook-form");
|
|
17
|
-
|
|
18
|
-
var _FieldBase = require("./FieldBase");
|
|
19
|
-
|
|
20
|
-
var _utils = require("./utils");
|
|
21
|
-
|
|
22
|
-
var ChildFieldMemo = /*#__PURE__*/_react["default"].memo(function ChildField(_ref) {
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { useWatch } from 'react-hook-form';
|
|
5
|
+
import { FieldBase } from "./FieldBase";
|
|
6
|
+
import { evaluateFieldWithConditions } from "./utils";
|
|
7
|
+
var ChildFieldMemo = /*#__PURE__*/React.memo(function ChildField(_ref) {
|
|
23
8
|
var dependencies = _ref.dependencies,
|
|
24
9
|
field = _ref.field,
|
|
25
10
|
control = _ref.control,
|
|
26
11
|
reset = _ref.reset,
|
|
27
12
|
register = _ref.register,
|
|
28
13
|
error = _ref.error;
|
|
29
|
-
var newField =
|
|
30
|
-
return /*#__PURE__*/
|
|
14
|
+
var newField = evaluateFieldWithConditions(field, dependencies);
|
|
15
|
+
return /*#__PURE__*/React.createElement(FieldBase, _extends({}, newField, {
|
|
31
16
|
name: newField.key,
|
|
32
17
|
reset: reset,
|
|
33
18
|
control: control,
|
|
@@ -51,22 +36,21 @@ var ChildFieldMemo = /*#__PURE__*/_react["default"].memo(function ChildField(_re
|
|
|
51
36
|
|
|
52
37
|
return true;
|
|
53
38
|
});
|
|
54
|
-
|
|
55
|
-
var FieldConditional = function FieldConditional(_ref2) {
|
|
39
|
+
export var FieldConditional = function FieldConditional(_ref2) {
|
|
56
40
|
var control = _ref2.control,
|
|
57
41
|
field = _ref2.field,
|
|
58
42
|
register = _ref2.register,
|
|
59
43
|
reset = _ref2.reset,
|
|
60
44
|
error = _ref2.error;
|
|
61
45
|
var dependencyKeys = Object.keys(field.condition);
|
|
62
|
-
var dependencyValues =
|
|
46
|
+
var dependencyValues = useWatch({
|
|
63
47
|
name: dependencyKeys,
|
|
64
48
|
control: control
|
|
65
49
|
});
|
|
66
50
|
var variables = dependencyKeys.reduce(function (data, fieldKey, index) {
|
|
67
|
-
return (
|
|
51
|
+
return _extends({}, data, _defineProperty({}, fieldKey, dependencyValues[index]));
|
|
68
52
|
}, {});
|
|
69
|
-
return /*#__PURE__*/
|
|
53
|
+
return /*#__PURE__*/React.createElement(ChildFieldMemo, {
|
|
70
54
|
dependencies: variables,
|
|
71
55
|
field: field,
|
|
72
56
|
control: control,
|
|
@@ -75,7 +59,4 @@ var FieldConditional = function FieldConditional(_ref2) {
|
|
|
75
59
|
error: error
|
|
76
60
|
});
|
|
77
61
|
};
|
|
78
|
-
|
|
79
|
-
exports.FieldConditional = FieldConditional;
|
|
80
|
-
var _default = FieldConditional;
|
|
81
|
-
exports["default"] = _default;
|
|
62
|
+
export default FieldConditional;
|
package/Field/index.js
CHANGED
|
@@ -1,42 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
6
|
-
|
|
7
|
-
Object.defineProperty(exports, "__esModule", {
|
|
8
|
-
value: true
|
|
9
|
-
});
|
|
10
|
-
exports["default"] = exports.Field = void 0;
|
|
11
|
-
|
|
12
|
-
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
13
|
-
|
|
14
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
15
|
-
|
|
16
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
17
|
-
|
|
18
|
-
var _FieldBase = require("./FieldBase");
|
|
19
|
-
|
|
20
|
-
var _FieldConditional = _interopRequireDefault(require("./FieldConditional"));
|
|
21
|
-
|
|
22
|
-
var _utils = require("./utils");
|
|
23
|
-
|
|
24
|
-
var _FieldArray = _interopRequireDefault(require("../FieldArray"));
|
|
25
|
-
|
|
26
|
-
var _MultiplicityField = _interopRequireDefault(require("../MultiplicityField"));
|
|
27
|
-
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
28
3
|
var _excluded = ["name", "children"];
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
4
|
+
import React, { useMemo } from 'react';
|
|
5
|
+
import { FieldBase } from "./FieldBase";
|
|
6
|
+
import FieldConditional from "./FieldConditional";
|
|
7
|
+
import { useField, calculateField } from "./utils";
|
|
8
|
+
import FieldArray from "../FieldArray";
|
|
9
|
+
import Multiplicity from "../MultiplicityField";
|
|
10
|
+
export var Field = function Field(_ref) {
|
|
35
11
|
var name = _ref.name,
|
|
36
12
|
children = _ref.children,
|
|
37
|
-
customField = (
|
|
13
|
+
customField = _objectWithoutProperties(_ref, _excluded);
|
|
38
14
|
|
|
39
|
-
var _useField =
|
|
15
|
+
var _useField = useField(name, customField !== null && customField !== void 0 && customField.type ? customField : null),
|
|
40
16
|
field = _useField.field,
|
|
41
17
|
control = _useField.control,
|
|
42
18
|
register = _useField.register,
|
|
@@ -50,12 +26,12 @@ var Field = function Field(_ref) {
|
|
|
50
26
|
trigger = _useField.trigger,
|
|
51
27
|
clearErrors = _useField.clearErrors;
|
|
52
28
|
|
|
53
|
-
var calculatedField =
|
|
54
|
-
return
|
|
29
|
+
var calculatedField = useMemo(function () {
|
|
30
|
+
return calculateField(children, field, componentRegistry);
|
|
55
31
|
}, [field]);
|
|
56
32
|
|
|
57
33
|
if (calculatedField.condition) {
|
|
58
|
-
return /*#__PURE__*/
|
|
34
|
+
return /*#__PURE__*/React.createElement(FieldConditional, {
|
|
59
35
|
control: control,
|
|
60
36
|
reset: reset,
|
|
61
37
|
register: register,
|
|
@@ -66,7 +42,7 @@ var Field = function Field(_ref) {
|
|
|
66
42
|
|
|
67
43
|
if (calculatedField.type === 'array' && !calculatedField.multiplicity) {
|
|
68
44
|
calculatedField.name = name;
|
|
69
|
-
return /*#__PURE__*/
|
|
45
|
+
return /*#__PURE__*/React.createElement(FieldArray, _extends({
|
|
70
46
|
control: control,
|
|
71
47
|
register: register,
|
|
72
48
|
error: error,
|
|
@@ -76,7 +52,7 @@ var Field = function Field(_ref) {
|
|
|
76
52
|
|
|
77
53
|
if (calculatedField.type === 'array' && calculatedField.multiplicity === true) {
|
|
78
54
|
calculatedField.name = name;
|
|
79
|
-
return /*#__PURE__*/
|
|
55
|
+
return /*#__PURE__*/React.createElement(Multiplicity, _extends({
|
|
80
56
|
control: control,
|
|
81
57
|
register: register,
|
|
82
58
|
trigger: trigger,
|
|
@@ -89,7 +65,7 @@ var Field = function Field(_ref) {
|
|
|
89
65
|
}, calculatedField));
|
|
90
66
|
}
|
|
91
67
|
|
|
92
|
-
return /*#__PURE__*/
|
|
68
|
+
return /*#__PURE__*/React.createElement(FieldBase, _extends({}, calculatedField, {
|
|
93
69
|
name: name,
|
|
94
70
|
control: control,
|
|
95
71
|
register: register,
|
|
@@ -97,7 +73,4 @@ var Field = function Field(_ref) {
|
|
|
97
73
|
error: error
|
|
98
74
|
}));
|
|
99
75
|
};
|
|
100
|
-
|
|
101
|
-
exports.Field = Field;
|
|
102
|
-
var _default = Field;
|
|
103
|
-
exports["default"] = _default;
|
|
76
|
+
export default Field;
|
package/Field/types.js
CHANGED
package/Field/utils.js
CHANGED
|
@@ -1,80 +1,51 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
15
|
-
|
|
16
|
-
var _react = require("react");
|
|
17
|
-
|
|
18
|
-
var _FormContext = require("../FormContext");
|
|
19
|
-
|
|
20
|
-
var _Checkboxes = _interopRequireDefault(require("../inputs/Checkboxes"));
|
|
21
|
-
|
|
22
|
-
var _DateInput = _interopRequireDefault(require("../inputs/DateInput"));
|
|
23
|
-
|
|
24
|
-
var _FileInput = _interopRequireDefault(require("../inputs/FileInput"));
|
|
25
|
-
|
|
26
|
-
var _Input = _interopRequireDefault(require("../inputs/Input"));
|
|
27
|
-
|
|
28
|
-
var _OtpInput = _interopRequireDefault(require("../inputs/OtpInput"));
|
|
29
|
-
|
|
30
|
-
var _Radio = _interopRequireDefault(require("../inputs/Radio"));
|
|
31
|
-
|
|
32
|
-
var _Select = _interopRequireDefault(require("../inputs/Select"));
|
|
33
|
-
|
|
34
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
35
|
-
|
|
36
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || (0, _typeof2["default"])(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
37
|
-
|
|
38
|
-
var AutoComplete = /*#__PURE__*/(0, _react.lazy)(function () {
|
|
39
|
-
return Promise.resolve().then(function () {
|
|
40
|
-
return _interopRequireWildcard(require("../inputs/AutoComplete"));
|
|
41
|
-
});
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import { lazy, useContext, useMemo } from 'react';
|
|
3
|
+
import { FormContext } from "../FormContext";
|
|
4
|
+
import Checkboxes from "../inputs/Checkboxes";
|
|
5
|
+
import DateInput from "../inputs/DateInput";
|
|
6
|
+
import FileInput from "../inputs/FileInput";
|
|
7
|
+
import Input from "../inputs/Input";
|
|
8
|
+
import OtpInput from "../inputs/OtpInput";
|
|
9
|
+
import Radio from "../inputs/Radio";
|
|
10
|
+
import Select from "../inputs/Select";
|
|
11
|
+
var AutoComplete = /*#__PURE__*/lazy(function () {
|
|
12
|
+
return import("../inputs/AutoComplete");
|
|
42
13
|
});
|
|
43
14
|
var FIELD_COMPONENTS = {
|
|
44
15
|
text: {
|
|
45
|
-
component:
|
|
16
|
+
component: Input
|
|
46
17
|
},
|
|
47
18
|
string: {
|
|
48
|
-
component:
|
|
19
|
+
component: Input
|
|
49
20
|
},
|
|
50
21
|
file: {
|
|
51
22
|
wrapper: 'fieldset',
|
|
52
|
-
component:
|
|
23
|
+
component: FileInput
|
|
53
24
|
},
|
|
54
25
|
date: {
|
|
55
26
|
wrapper: 'fieldset',
|
|
56
27
|
controlled: true,
|
|
57
|
-
component:
|
|
28
|
+
component: DateInput
|
|
58
29
|
},
|
|
59
30
|
otp: {
|
|
60
31
|
wrapper: 'fieldset',
|
|
61
32
|
controlled: true,
|
|
62
|
-
component:
|
|
33
|
+
component: OtpInput
|
|
63
34
|
},
|
|
64
35
|
'choice:multiple': {
|
|
65
36
|
wrapper: 'fieldset',
|
|
66
37
|
controlled: true,
|
|
67
|
-
component:
|
|
38
|
+
component: Checkboxes
|
|
68
39
|
},
|
|
69
40
|
'choice:single': {
|
|
70
41
|
wrapper: 'fieldset',
|
|
71
42
|
controlled: false,
|
|
72
|
-
component:
|
|
43
|
+
component: Radio
|
|
73
44
|
}
|
|
74
45
|
};
|
|
75
46
|
var ALTERNATIVE_COMPONENTS = {
|
|
76
47
|
Select: {
|
|
77
|
-
component:
|
|
48
|
+
component: Select,
|
|
78
49
|
controlled: false
|
|
79
50
|
},
|
|
80
51
|
AutoComplete: {
|
|
@@ -82,12 +53,12 @@ var ALTERNATIVE_COMPONENTS = {
|
|
|
82
53
|
controlled: true
|
|
83
54
|
}
|
|
84
55
|
};
|
|
85
|
-
|
|
86
|
-
function calculateField(children, field, componentRegistry) {
|
|
56
|
+
export function calculateField(children, field, componentRegistry) {
|
|
87
57
|
var _field$extra;
|
|
88
58
|
|
|
89
|
-
var calculatedField = (
|
|
90
|
-
|
|
59
|
+
var calculatedField = _extends({}, field);
|
|
60
|
+
|
|
61
|
+
var fieldComponentRegistry = _extends({}, FIELD_COMPONENTS, componentRegistry);
|
|
91
62
|
|
|
92
63
|
if (children) {
|
|
93
64
|
calculatedField.component = children;
|
|
@@ -118,9 +89,8 @@ function calculateField(children, field, componentRegistry) {
|
|
|
118
89
|
|
|
119
90
|
return calculatedField;
|
|
120
91
|
}
|
|
121
|
-
|
|
122
|
-
var
|
|
123
|
-
var _useContext = (0, _react.useContext)(_FormContext.FormContext),
|
|
92
|
+
export var useField = function useField(name, customField) {
|
|
93
|
+
var _useContext = useContext(FormContext),
|
|
124
94
|
fieldsMap = _useContext.fieldsMap,
|
|
125
95
|
control = _useContext.control,
|
|
126
96
|
register = _useContext.register,
|
|
@@ -141,8 +111,8 @@ var useField = function useField(name, customField) {
|
|
|
141
111
|
throw new Error("\n You can't use the Field component without wrapping it in FormBuilder.\n https://devs.pages.grnet.gr/digigov/digigov-sdk/sdk-docs/forms/create-simple-form/\n ");
|
|
142
112
|
}
|
|
143
113
|
|
|
144
|
-
|
|
145
|
-
return (customField === null || customField === void 0 ? void 0 : customField.type) && registerField((
|
|
114
|
+
useMemo(function () {
|
|
115
|
+
return (customField === null || customField === void 0 ? void 0 : customField.type) && registerField(_extends({}, customField, {
|
|
146
116
|
key: name
|
|
147
117
|
}));
|
|
148
118
|
}, [customField, name, registerField]);
|
|
@@ -163,11 +133,8 @@ var useField = function useField(name, customField) {
|
|
|
163
133
|
error: errors[name]
|
|
164
134
|
};
|
|
165
135
|
};
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
function evaluateFieldWithConditions(field, variables) {
|
|
170
|
-
var newField = (0, _extends2["default"])({}, field);
|
|
136
|
+
export function evaluateFieldWithConditions(field, variables) {
|
|
137
|
+
var newField = _extends({}, field);
|
|
171
138
|
|
|
172
139
|
if (variables) {
|
|
173
140
|
for (var key in variables) {
|
|
@@ -1,45 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
var _exportNames = {};
|
|
9
|
-
exports["default"] = void 0;
|
|
10
|
-
|
|
11
|
-
var _ = _interopRequireDefault(require("./"));
|
|
12
|
-
|
|
13
|
-
var _Default = require("./__stories__/Default");
|
|
14
|
-
|
|
15
|
-
Object.keys(_Default).forEach(function (key) {
|
|
16
|
-
if (key === "default" || key === "__esModule") return;
|
|
17
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
18
|
-
if (key in exports && exports[key] === _Default[key]) return;
|
|
19
|
-
Object.defineProperty(exports, key, {
|
|
20
|
-
enumerable: true,
|
|
21
|
-
get: function get() {
|
|
22
|
-
return _Default[key];
|
|
23
|
-
}
|
|
24
|
-
});
|
|
25
|
-
});
|
|
26
|
-
|
|
27
|
-
var _WithExactLength = require("./__stories__/WithExactLength");
|
|
28
|
-
|
|
29
|
-
Object.keys(_WithExactLength).forEach(function (key) {
|
|
30
|
-
if (key === "default" || key === "__esModule") return;
|
|
31
|
-
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
32
|
-
if (key in exports && exports[key] === _WithExactLength[key]) return;
|
|
33
|
-
Object.defineProperty(exports, key, {
|
|
34
|
-
enumerable: true,
|
|
35
|
-
get: function get() {
|
|
36
|
-
return _WithExactLength[key];
|
|
37
|
-
}
|
|
38
|
-
});
|
|
39
|
-
});
|
|
40
|
-
var _default = {
|
|
1
|
+
import FieldArray from "./";
|
|
2
|
+
export default {
|
|
41
3
|
title: 'Digigov Form/FieldArray',
|
|
42
|
-
component:
|
|
4
|
+
component: FieldArray,
|
|
43
5
|
displayName: 'FieldArray'
|
|
44
6
|
};
|
|
45
|
-
|
|
7
|
+
export * from "./__stories__/Default";
|
|
8
|
+
export * from "./__stories__/WithExactLength";
|
|
@@ -1,26 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
6
|
-
|
|
7
|
-
Object.defineProperty(exports, "__esModule", {
|
|
8
|
-
value: true
|
|
9
|
-
});
|
|
10
|
-
exports.Default = void 0;
|
|
11
|
-
|
|
12
|
-
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
13
|
-
|
|
14
|
-
var _react = _interopRequireDefault(require("react"));
|
|
15
|
-
|
|
16
|
-
var _ = _interopRequireWildcard(require("../.."));
|
|
17
|
-
|
|
18
|
-
var _Button = require("@digigov/ui/form/Button");
|
|
19
|
-
|
|
20
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
-
|
|
22
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
|
-
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import FormBuilder, { Field } from "../..";
|
|
4
|
+
import { Button } from '@digigov/ui/form/Button';
|
|
24
5
|
var fields = [{
|
|
25
6
|
key: 'string',
|
|
26
7
|
type: 'string',
|
|
@@ -92,20 +73,18 @@ var fields = [{
|
|
|
92
73
|
}
|
|
93
74
|
}];
|
|
94
75
|
|
|
95
|
-
var _ref = /*#__PURE__*/
|
|
76
|
+
var _ref = /*#__PURE__*/React.createElement(Button, null, "\u03A3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1");
|
|
96
77
|
|
|
97
|
-
var Default = function Default() {
|
|
98
|
-
return /*#__PURE__*/
|
|
78
|
+
export var Default = function Default() {
|
|
79
|
+
return /*#__PURE__*/React.createElement(FormBuilder, {
|
|
99
80
|
onSubmit: function onSubmit(data) {
|
|
100
81
|
console.log(data);
|
|
101
82
|
}
|
|
102
|
-
}, /*#__PURE__*/
|
|
83
|
+
}, /*#__PURE__*/React.createElement(Field, _extends({
|
|
103
84
|
name: "string"
|
|
104
|
-
}, fields[0])), /*#__PURE__*/
|
|
85
|
+
}, fields[0])), /*#__PURE__*/React.createElement(Field, _extends({
|
|
105
86
|
name: "multiplicity"
|
|
106
|
-
}, fields[1])), /*#__PURE__*/
|
|
87
|
+
}, fields[1])), /*#__PURE__*/React.createElement(Field, _extends({
|
|
107
88
|
name: "phonenumber"
|
|
108
89
|
}, fields[2])), _ref);
|
|
109
|
-
};
|
|
110
|
-
|
|
111
|
-
exports.Default = Default;
|
|
90
|
+
};
|