@digigov/form 1.0.0-8ae63a77 → 1.0.0-8b33e4c8
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/{esm → 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/{esm → 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/{esm → cjs}/MultiplicityField/__stories__/WithMinLength.js +32 -11
- package/{esm → 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/{esm → 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/{esm → 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/{esm → cjs}/validators/utils/otp.js +14 -3
- package/{esm → cjs}/validators/utils/phone.js +28 -6
- package/{es → cjs}/validators/utils/postal_code.js +14 -3
- package/{esm → 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.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/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.js +0 -160
- 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/__stories__/WithExactLength.js +0 -92
- package/es/MultiplicityField/__stories__/WithMinLength.js +0 -95
- package/es/MultiplicityField/add-objects.js +0 -160
- 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/StepContext.js +0 -27
- 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/iban.js +0 -123
- package/es/validators/utils/index.js +0 -102
- package/es/validators/utils/number.js +0 -16
- package/es/validators/utils/otp.js +0 -26
- package/es/validators/utils/phone.js +0 -122
- package/es/validators/utils/text_limit.js +0 -54
- package/es/validators/validators.spec.js +0 -85
- package/esm/Field/FieldBase.js +0 -84
- package/esm/Field/FieldBaseContainer.js +0 -43
- package/esm/Field/FieldConditional.js +0 -62
- package/esm/Field/index.js +0 -76
- package/esm/Field/index.mdx +0 -6
- package/esm/Field/types.js +0 -1
- package/esm/Field/utils.js +0 -162
- package/esm/FieldArray/FieldArray.stories.js +0 -8
- package/esm/FieldArray/FieldArray.stories.playwright.json +0 -353
- package/esm/FieldArray/__stories__/Default.js +0 -90
- package/esm/FieldArray/__stories__/WithExactLength.js +0 -90
- package/esm/FieldArray/index.js +0 -65
- package/esm/FieldObject/index.js +0 -58
- package/esm/Fieldset/FieldsetWithContext.js +0 -41
- package/esm/Fieldset/index.js +0 -34
- package/esm/Fieldset/types.js +0 -1
- package/esm/Form.stories.js +0 -3
- package/esm/FormBuilder/FormBuilder.mdx +0 -256
- package/esm/FormBuilder/FormBuilder.stories.js +0 -7
- package/esm/FormBuilder/FormBuilder.stories.playwright.json +0 -52
- package/esm/FormBuilder/__stories__/Default.js +0 -28
- package/esm/FormBuilder/index.js +0 -2
- package/esm/FormContext.js +0 -5
- package/esm/MultiplicityField/MultiplicityField.mdx +0 -590
- package/esm/MultiplicityField/MultiplicityField.stories.js +0 -12
- package/esm/MultiplicityField/MultiplicityField.stories.playwright.json +0 -1370
- package/esm/MultiplicityField/__stories__/Default.js +0 -97
- package/esm/MultiplicityField/__stories__/PreviewDisplay.js +0 -83
- package/esm/MultiplicityField/__stories__/WithMaxLength.js +0 -95
- package/esm/MultiplicityField/__stories__/WithMinAndMaxLength.js +0 -96
- package/esm/MultiplicityField/index.js +0 -114
- package/esm/Questions/Questions.js +0 -84
- package/esm/Questions/Questions.stories.js +0 -7
- package/esm/Questions/QuestionsContext.js +0 -11
- package/esm/Questions/Step/ReviewStep.js +0 -53
- package/esm/Questions/Step/Step.js +0 -69
- package/esm/Questions/Step/StepArrayReview.js +0 -50
- package/esm/Questions/Step/StepDescription.js +0 -27
- package/esm/Questions/Step/StepForm.js +0 -48
- package/esm/Questions/Step/StepQuote.js +0 -11
- package/esm/Questions/Step/StepTitle.js +0 -44
- package/esm/Questions/Step/getAddMoreFields.js +0 -22
- package/esm/Questions/Step/index.js +0 -13
- package/esm/Questions/Step/types.js +0 -1
- package/esm/Questions/__snapshots__/index.spec.tsx.snap +0 -596
- package/esm/Questions/__stories__/Default.js +0 -108
- package/esm/Questions/getNextStep.js +0 -23
- package/esm/Questions/index.js +0 -3
- package/esm/Questions/index.mdx +0 -415
- package/esm/Questions/index.spec.js +0 -62
- package/esm/Questions/types.js +0 -1
- package/esm/create-simple-form.mdx +0 -539
- package/esm/index.js +0 -8
- package/esm/index.mdx +0 -51
- package/esm/inputs/AutoComplete/AutoComplete.stories.js +0 -7
- package/esm/inputs/AutoComplete/__stories__/Default.js +0 -49
- package/esm/inputs/AutoComplete/index.js +0 -45
- package/esm/inputs/Checkboxes/Checkboxes.stories.js +0 -9
- package/esm/inputs/Checkboxes/Checkboxes.stories.playwright.json +0 -85
- package/esm/inputs/Checkboxes/__stories__/Conditional.js +0 -95
- package/esm/inputs/Checkboxes/__stories__/Default.js +0 -42
- package/esm/inputs/Checkboxes/__stories__/WithDivider.js +0 -43
- package/esm/inputs/Checkboxes/index.js +0 -100
- package/esm/inputs/Checkboxes/index.mdx +0 -0
- package/esm/inputs/DateInput/DateInput.stories.js +0 -7
- package/esm/inputs/DateInput/DateInput.stories.playwright.json +0 -72
- package/esm/inputs/DateInput/__stories__/Default.js +0 -25
- package/esm/inputs/DateInput/index.js +0 -155
- package/esm/inputs/FileInput/FileInput.stories.js +0 -7
- package/esm/inputs/FileInput/FileInput.stories.playwright.json +0 -75
- package/esm/inputs/FileInput/__stories__/Default.js +0 -22
- package/esm/inputs/FileInput/index.js +0 -62
- package/esm/inputs/Input/Input.stories.js +0 -15
- package/esm/inputs/Input/Input.stories.playwright.json +0 -376
- package/esm/inputs/Input/__stories__/AFM.js +0 -24
- package/esm/inputs/Input/__stories__/Boolean.js +0 -25
- package/esm/inputs/Input/__stories__/Default.js +0 -25
- package/esm/inputs/Input/__stories__/IBAN.js +0 -25
- package/esm/inputs/Input/__stories__/Integer.js +0 -33
- package/esm/inputs/Input/__stories__/MobilePhone.js +0 -24
- package/esm/inputs/Input/__stories__/PhoneNumber.js +0 -24
- package/esm/inputs/Input/__stories__/PostalCode.js +0 -27
- package/esm/inputs/Input/__stories__/TextWithCharacterLimit.js +0 -31
- package/esm/inputs/Input/index.js +0 -75
- package/esm/inputs/Input/index.mdx +0 -8
- package/esm/inputs/Label/Label.stories.js +0 -7
- package/esm/inputs/Label/Label.stories.playwright.json +0 -40
- package/esm/inputs/Label/__stories__/Default.js +0 -29
- package/esm/inputs/Label/index.js +0 -25
- package/esm/inputs/Label/index.mdx +0 -0
- package/esm/inputs/OtpInput/OtpInput.stories.js +0 -7
- package/esm/inputs/OtpInput/__stories__/Default.js +0 -31
- package/esm/inputs/OtpInput/index.js +0 -157
- package/esm/inputs/Radio/Radio.stories.js +0 -9
- package/esm/inputs/Radio/Radio.stories.playwright.json +0 -73
- package/esm/inputs/Radio/__stories__/Conditional.js +0 -95
- package/esm/inputs/Radio/__stories__/Default.js +0 -47
- package/esm/inputs/Radio/__stories__/WithDivider.js +0 -48
- package/esm/inputs/Radio/index.js +0 -61
- package/esm/inputs/Radio/index.mdx +0 -0
- package/esm/inputs/Select/Select.stories.js +0 -7
- package/esm/inputs/Select/Select.stories.playwright.json +0 -22
- package/esm/inputs/Select/__stories__/Default.js +0 -53
- package/esm/inputs/Select/index.js +0 -32
- package/esm/inputs/index.js +0 -8
- package/esm/installation.mdx +0 -68
- package/esm/internal.js +0 -34
- package/esm/registry.js +0 -136
- package/esm/types.js +0 -1
- package/esm/utils.js +0 -99
- package/esm/validators/index.js +0 -186
- package/esm/validators/types.js +0 -1
- package/esm/validators/utils/afm.js +0 -35
- package/esm/validators/utils/file.js +0 -52
- package/esm/validators/utils/index.js +0 -102
- package/esm/validators/utils/int.js +0 -20
- package/esm/validators/utils/number.js +0 -16
- package/esm/validators/utils/postal_code.js +0 -29
- package/esm/validators/utils/uuid4.js +0 -20
- package/esm/validators/validators.spec.js +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
|
@@ -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.WithExactLength = void 0;
|
|
11
|
-
|
|
12
|
-
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
13
|
-
|
|
14
|
-
var _react = _interopRequireDefault(require("react"));
|
|
15
|
-
|
|
16
|
-
var _form = _interopRequireWildcard(require("@digigov/form"));
|
|
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 WithExactLength = function WithExactLength() {
|
|
98
|
-
return /*#__PURE__*/
|
|
78
|
+
export var WithExactLength = function WithExactLength() {
|
|
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.WithExactLength = WithExactLength;
|
|
90
|
+
};
|
package/FieldArray/index.js
CHANGED
|
@@ -1,33 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports["default"] = exports.FieldArray = 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("@digigov/form/Field/FieldBaseContainer"));
|
|
19
|
-
|
|
20
|
-
var _FieldObject = _interopRequireDefault(require("@digigov/form/FieldObject"));
|
|
21
|
-
|
|
22
|
-
var _Fieldset = require("@digigov/form/Fieldset");
|
|
23
|
-
|
|
24
|
-
var _Fieldset2 = _interopRequireDefault(require("@digigov/react-core/Fieldset"));
|
|
25
|
-
|
|
26
|
-
var _ui = require("@digigov/ui");
|
|
27
|
-
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
28
3
|
var _excluded = ["name", "register", "control", "formState", "error", "layout", "label"];
|
|
29
|
-
|
|
30
|
-
|
|
4
|
+
import React from 'react';
|
|
5
|
+
import { useFieldArray } from 'react-hook-form';
|
|
6
|
+
import FieldContainer from "../Field/FieldBaseContainer";
|
|
7
|
+
import FieldObject from "../FieldObject";
|
|
8
|
+
import { FieldsetLabel } from "../Fieldset";
|
|
9
|
+
import Fieldset from '@digigov/react-core/Fieldset';
|
|
10
|
+
import { Button, Card, Hint } from '@digigov/ui';
|
|
11
|
+
export var FieldArray = function FieldArray(_ref) {
|
|
31
12
|
var _customField$extra, _customField$extra$la, _customField$extra4, _customField$extra4$l;
|
|
32
13
|
|
|
33
14
|
var name = _ref.name,
|
|
@@ -37,9 +18,9 @@ var FieldArray = function FieldArray(_ref) {
|
|
|
37
18
|
error = _ref.error,
|
|
38
19
|
layout = _ref.layout,
|
|
39
20
|
label = _ref.label,
|
|
40
|
-
customField = (
|
|
21
|
+
customField = _objectWithoutProperties(_ref, _excluded);
|
|
41
22
|
|
|
42
|
-
var _useFieldArray =
|
|
23
|
+
var _useFieldArray = useFieldArray({
|
|
43
24
|
control: control,
|
|
44
25
|
name: name
|
|
45
26
|
}),
|
|
@@ -47,32 +28,32 @@ var FieldArray = function FieldArray(_ref) {
|
|
|
47
28
|
append = _useFieldArray.append,
|
|
48
29
|
remove = _useFieldArray.remove;
|
|
49
30
|
|
|
50
|
-
return /*#__PURE__*/
|
|
31
|
+
return /*#__PURE__*/React.createElement(FieldContainer, {
|
|
51
32
|
label: label,
|
|
52
33
|
layout: layout,
|
|
53
34
|
error: formState.isSubmitted && !formState.isSubmitting && error !== null && error !== void 0 && error.message && error ? error : undefined,
|
|
54
35
|
wrapper: "fieldset",
|
|
55
36
|
name: name
|
|
56
|
-
}, fields.length === 0 && /*#__PURE__*/
|
|
37
|
+
}, fields.length === 0 && /*#__PURE__*/React.createElement(Hint, null, (_customField$extra = customField.extra) === null || _customField$extra === void 0 ? void 0 : (_customField$extra$la = _customField$extra.label.object) === null || _customField$extra$la === void 0 ? void 0 : _customField$extra$la.nothing_added), fields.map(function (field, index) {
|
|
57
38
|
var _customField$extra2, _customField$extra3;
|
|
58
39
|
|
|
59
|
-
return /*#__PURE__*/
|
|
40
|
+
return /*#__PURE__*/React.createElement(Card, {
|
|
60
41
|
variant: "border",
|
|
61
42
|
key: field.id
|
|
62
|
-
}, /*#__PURE__*/
|
|
43
|
+
}, /*#__PURE__*/React.createElement(Fieldset, null, /*#__PURE__*/React.createElement(FieldsetLabel, null, (_customField$extra2 = customField.extra) === null || _customField$extra2 === void 0 ? void 0 : _customField$extra2.label.object.title, " ", index + 1), /*#__PURE__*/React.createElement(FieldObject, _extends({
|
|
63
44
|
name: "".concat(name, ".").concat(index),
|
|
64
45
|
error: Array.isArray(error) && error[index],
|
|
65
46
|
formState: formState,
|
|
66
47
|
register: register,
|
|
67
48
|
control: control
|
|
68
|
-
}, (_customField$extra3 = customField.extra) === null || _customField$extra3 === void 0 ? void 0 : _customField$extra3.of)), /*#__PURE__*/
|
|
49
|
+
}, (_customField$extra3 = customField.extra) === null || _customField$extra3 === void 0 ? void 0 : _customField$extra3.of)), /*#__PURE__*/React.createElement(Button, {
|
|
69
50
|
type: "button",
|
|
70
51
|
color: "warning",
|
|
71
52
|
onClick: function onClick() {
|
|
72
53
|
return remove(index);
|
|
73
54
|
}
|
|
74
55
|
}, "Remove")));
|
|
75
|
-
}), /*#__PURE__*/
|
|
56
|
+
}), /*#__PURE__*/React.createElement(Button, {
|
|
76
57
|
type: "button",
|
|
77
58
|
color: "secondary",
|
|
78
59
|
onClick: function onClick(ev) {
|
|
@@ -81,7 +62,4 @@ var FieldArray = function FieldArray(_ref) {
|
|
|
81
62
|
}
|
|
82
63
|
}, (_customField$extra4 = customField.extra) === null || _customField$extra4 === void 0 ? void 0 : (_customField$extra4$l = _customField$extra4.label.object) === null || _customField$extra4$l === void 0 ? void 0 : _customField$extra4$l.add));
|
|
83
64
|
};
|
|
84
|
-
|
|
85
|
-
exports.FieldArray = FieldArray;
|
|
86
|
-
var _default = FieldArray;
|
|
87
|
-
exports["default"] = _default;
|
|
65
|
+
export default FieldArray;
|
package/FieldObject/index.js
CHANGED
|
@@ -1,33 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
});
|
|
10
|
-
exports["default"] = exports.FieldObject = void 0;
|
|
11
|
-
|
|
12
|
-
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
13
|
-
|
|
14
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
15
|
-
|
|
16
|
-
var _FieldBase = require("@digigov/form/Field/FieldBase");
|
|
17
|
-
|
|
18
|
-
var _utils = require("@digigov/form/Field/utils");
|
|
19
|
-
|
|
20
|
-
var _Fieldset = _interopRequireWildcard(require("@digigov/form/Fieldset"));
|
|
21
|
-
|
|
22
|
-
var _reactCore = require("@digigov/react-core");
|
|
23
|
-
|
|
24
|
-
var _i18n = require("@digigov/ui/i18n");
|
|
25
|
-
|
|
26
|
-
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); }
|
|
27
|
-
|
|
28
|
-
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; }
|
|
29
|
-
|
|
30
|
-
var FieldObject = function FieldObject(_ref) {
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import React, { useMemo } from 'react';
|
|
3
|
+
import { FieldBase } from "../Field/FieldBase";
|
|
4
|
+
import { calculateField } from "../Field/utils";
|
|
5
|
+
import Fieldset, { FieldsetCaption } from "../Fieldset";
|
|
6
|
+
import { FieldsetLegend } from '@digigov/react-core';
|
|
7
|
+
import { useTranslation } from '@digigov/ui/i18n';
|
|
8
|
+
export var FieldObject = function FieldObject(_ref) {
|
|
31
9
|
var name = _ref.name,
|
|
32
10
|
label = _ref.label,
|
|
33
11
|
extra = _ref.extra,
|
|
@@ -36,13 +14,13 @@ var FieldObject = function FieldObject(_ref) {
|
|
|
36
14
|
reset = _ref.reset,
|
|
37
15
|
formState = _ref.formState;
|
|
38
16
|
|
|
39
|
-
var _useTranslation =
|
|
17
|
+
var _useTranslation = useTranslation(),
|
|
40
18
|
t = _useTranslation.t;
|
|
41
19
|
|
|
42
|
-
return /*#__PURE__*/
|
|
20
|
+
return /*#__PURE__*/React.createElement(Fieldset, null, (label === null || label === void 0 ? void 0 : label.primary) && /*#__PURE__*/React.createElement(FieldsetLegend, {
|
|
43
21
|
size: "sm"
|
|
44
|
-
}, t(label.primary)), (label === null || label === void 0 ? void 0 : label.secondary) && /*#__PURE__*/
|
|
45
|
-
return /*#__PURE__*/
|
|
22
|
+
}, t(label.primary)), (label === null || label === void 0 ? void 0 : label.secondary) && /*#__PURE__*/React.createElement(FieldsetCaption, null, t(label.secondary)), extra === null || extra === void 0 ? void 0 : extra.fields.map(function (field) {
|
|
23
|
+
return /*#__PURE__*/React.createElement(FieldObjectItem, {
|
|
46
24
|
key: "".concat(name, ".").concat(field.key),
|
|
47
25
|
name: "".concat(name, ".").concat(field.key),
|
|
48
26
|
control: control,
|
|
@@ -55,8 +33,6 @@ var FieldObject = function FieldObject(_ref) {
|
|
|
55
33
|
}));
|
|
56
34
|
};
|
|
57
35
|
|
|
58
|
-
exports.FieldObject = FieldObject;
|
|
59
|
-
|
|
60
36
|
var FieldObjectItem = function FieldObjectItem(_ref2) {
|
|
61
37
|
var name = _ref2.name,
|
|
62
38
|
children = _ref2.children,
|
|
@@ -66,11 +42,11 @@ var FieldObjectItem = function FieldObjectItem(_ref2) {
|
|
|
66
42
|
formState = _ref2.formState,
|
|
67
43
|
reset = _ref2.reset,
|
|
68
44
|
register = _ref2.register;
|
|
69
|
-
var calculatedField =
|
|
70
|
-
return
|
|
45
|
+
var calculatedField = useMemo(function () {
|
|
46
|
+
return calculateField(children, field);
|
|
71
47
|
}, [field]);
|
|
72
48
|
var customError = error ? error : formState === null || formState === void 0 ? void 0 : formState.errors[name];
|
|
73
|
-
return /*#__PURE__*/
|
|
49
|
+
return /*#__PURE__*/React.createElement(FieldBase, _extends({}, calculatedField, {
|
|
74
50
|
name: name,
|
|
75
51
|
control: control,
|
|
76
52
|
reset: reset,
|
|
@@ -79,5 +55,4 @@ var FieldObjectItem = function FieldObjectItem(_ref2) {
|
|
|
79
55
|
}));
|
|
80
56
|
};
|
|
81
57
|
|
|
82
|
-
|
|
83
|
-
exports["default"] = _default;
|
|
58
|
+
export default FieldObject;
|
|
@@ -1,29 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Object.defineProperty(exports, "__esModule", {
|
|
8
|
-
value: true
|
|
9
|
-
});
|
|
10
|
-
exports.FieldsetWithContext = void 0;
|
|
11
|
-
|
|
12
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
13
|
-
|
|
14
|
-
var _Field = _interopRequireDefault(require("@digigov/form/Field"));
|
|
15
|
-
|
|
16
|
-
var _Fieldset = require("@digigov/form/Fieldset/");
|
|
17
|
-
|
|
18
|
-
var _FormContext = require("@digigov/form/FormContext");
|
|
19
|
-
|
|
20
|
-
var _i18n = require("@digigov/ui/i18n");
|
|
21
|
-
|
|
22
|
-
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); }
|
|
23
|
-
|
|
24
|
-
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; }
|
|
25
|
-
|
|
26
|
-
var FieldsetWithContext = function FieldsetWithContext(_ref) {
|
|
1
|
+
import React, { useContext, useMemo } from 'react';
|
|
2
|
+
import Field from "../Field";
|
|
3
|
+
import { Fieldset, FieldsetLabel, FieldsetCaption, FieldsetBody } from "./";
|
|
4
|
+
import { FormContext } from "../FormContext";
|
|
5
|
+
import { useTranslation } from '@digigov/ui/i18n';
|
|
6
|
+
export var FieldsetWithContext = function FieldsetWithContext(_ref) {
|
|
27
7
|
var name = _ref.name;
|
|
28
8
|
|
|
29
9
|
var _useFieldset = useFieldset(name),
|
|
@@ -31,14 +11,14 @@ var FieldsetWithContext = function FieldsetWithContext(_ref) {
|
|
|
31
11
|
body = _useFieldset.body,
|
|
32
12
|
fields = _useFieldset.fields;
|
|
33
13
|
|
|
34
|
-
var _useTranslation =
|
|
14
|
+
var _useTranslation = useTranslation(),
|
|
35
15
|
t = _useTranslation.t;
|
|
36
16
|
|
|
37
|
-
var _ref2 = /*#__PURE__*/
|
|
17
|
+
var _ref2 = /*#__PURE__*/React.createElement(FieldsetBody, null, body);
|
|
38
18
|
|
|
39
|
-
return
|
|
40
|
-
return /*#__PURE__*/
|
|
41
|
-
return /*#__PURE__*/
|
|
19
|
+
return useMemo(function () {
|
|
20
|
+
return /*#__PURE__*/React.createElement(Fieldset, null, (label === null || label === void 0 ? void 0 : label.primary) && /*#__PURE__*/React.createElement(FieldsetLabel, null, t(label.primary)), (label === null || label === void 0 ? void 0 : label.secondary) && /*#__PURE__*/React.createElement(FieldsetCaption, null, t(label.secondary)), body && _ref2, fields.map(function (field) {
|
|
21
|
+
return /*#__PURE__*/React.createElement(Field, {
|
|
42
22
|
key: field,
|
|
43
23
|
name: field
|
|
44
24
|
});
|
|
@@ -46,14 +26,12 @@ var FieldsetWithContext = function FieldsetWithContext(_ref) {
|
|
|
46
26
|
}, [label === null || label === void 0 ? void 0 : label.primary, label === null || label === void 0 ? void 0 : label.secondary, body, fields]);
|
|
47
27
|
};
|
|
48
28
|
|
|
49
|
-
exports.FieldsetWithContext = FieldsetWithContext;
|
|
50
|
-
|
|
51
29
|
var useFieldset = function useFieldset(name) {
|
|
52
|
-
var _useContext =
|
|
30
|
+
var _useContext = useContext(FormContext),
|
|
53
31
|
fieldsetsMap = _useContext.fieldsetsMap;
|
|
54
32
|
|
|
55
33
|
if (fieldsetsMap && fieldsetsMap[name]) {
|
|
56
|
-
return
|
|
34
|
+
return useMemo(function () {
|
|
57
35
|
return fieldsetsMap[name];
|
|
58
36
|
}, [name]);
|
|
59
37
|
} else {
|
package/Fieldset/index.js
CHANGED
|
@@ -1,64 +1,34 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
Object.defineProperty(exports, "Fieldset", {
|
|
9
|
-
enumerable: true,
|
|
10
|
-
get: function get() {
|
|
11
|
-
return _Fieldset["default"];
|
|
12
|
-
}
|
|
13
|
-
});
|
|
14
|
-
exports["default"] = exports.FieldsetLabel = exports.FieldsetCaption = exports.FieldsetBody = void 0;
|
|
15
|
-
|
|
16
|
-
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
17
|
-
|
|
18
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
19
|
-
|
|
20
|
-
var _react = _interopRequireDefault(require("react"));
|
|
21
|
-
|
|
22
|
-
var _Fieldset = _interopRequireDefault(require("@digigov/react-core/Fieldset"));
|
|
23
|
-
|
|
24
|
-
var _FieldsetLegend = _interopRequireDefault(require("@digigov/react-core/FieldsetLegend"));
|
|
25
|
-
|
|
26
|
-
var _Hint = _interopRequireDefault(require("@digigov/react-core/Hint"));
|
|
27
|
-
|
|
28
|
-
var _Grid = _interopRequireDefault(require("@digigov/ui/layouts/Grid"));
|
|
29
|
-
|
|
30
|
-
var _NormalText = _interopRequireDefault(require("@digigov/ui/typography/NormalText"));
|
|
31
|
-
|
|
1
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
32
3
|
var _excluded = ["children"],
|
|
33
4
|
_excluded2 = ["children"];
|
|
34
|
-
|
|
35
|
-
|
|
5
|
+
import React from 'react';
|
|
6
|
+
import Fieldset from '@digigov/react-core/Fieldset';
|
|
7
|
+
import FieldsetLegend from '@digigov/react-core/FieldsetLegend';
|
|
8
|
+
import Hint from '@digigov/react-core/Hint';
|
|
9
|
+
import Grid from '@digigov/ui/layouts/Grid';
|
|
10
|
+
import NormalText from '@digigov/ui/typography/NormalText';
|
|
11
|
+
export var FieldsetLabel = function FieldsetLabel(_ref) {
|
|
36
12
|
var children = _ref.children,
|
|
37
|
-
props = (
|
|
38
|
-
|
|
13
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
14
|
+
|
|
15
|
+
return /*#__PURE__*/React.createElement(FieldsetLegend, _extends({
|
|
39
16
|
heading: true,
|
|
40
17
|
size: "xl"
|
|
41
18
|
}, props), children);
|
|
42
19
|
};
|
|
43
|
-
|
|
44
|
-
exports.FieldsetLabel = FieldsetLabel;
|
|
45
|
-
|
|
46
|
-
var FieldsetCaption = function FieldsetCaption(_ref2) {
|
|
20
|
+
export var FieldsetCaption = function FieldsetCaption(_ref2) {
|
|
47
21
|
var children = _ref2.children,
|
|
48
|
-
props = (
|
|
49
|
-
return /*#__PURE__*/_react["default"].createElement(_Hint["default"], props, children);
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
exports.FieldsetCaption = FieldsetCaption;
|
|
22
|
+
props = _objectWithoutProperties(_ref2, _excluded2);
|
|
53
23
|
|
|
54
|
-
|
|
24
|
+
return /*#__PURE__*/React.createElement(Hint, props, children);
|
|
25
|
+
};
|
|
26
|
+
export var FieldsetBody = function FieldsetBody(_ref3) {
|
|
55
27
|
var children = _ref3.children;
|
|
56
|
-
return /*#__PURE__*/
|
|
28
|
+
return /*#__PURE__*/React.createElement(Grid, {
|
|
57
29
|
item: true,
|
|
58
30
|
xs: 12
|
|
59
|
-
}, /*#__PURE__*/
|
|
31
|
+
}, /*#__PURE__*/React.createElement(NormalText, null, children));
|
|
60
32
|
};
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
var _default = _Fieldset["default"];
|
|
64
|
-
exports["default"] = _default;
|
|
33
|
+
export { Fieldset };
|
|
34
|
+
export default Fieldset;
|
package/Fieldset/types.js
CHANGED
package/Form.stories.js
CHANGED
|
@@ -1,44 +1,19 @@
|
|
|
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"] = exports.FormBuilder = exports.FormBase = void 0;
|
|
11
|
-
|
|
12
|
-
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
13
|
-
|
|
14
|
-
var _extends4 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
15
|
-
|
|
16
|
-
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
17
|
-
|
|
18
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
19
|
-
|
|
20
|
-
var _reactHookForm = require("react-hook-form");
|
|
21
|
-
|
|
22
|
-
var _Field = _interopRequireDefault(require("@digigov/form/Field"));
|
|
23
|
-
|
|
24
|
-
var _Fieldset = _interopRequireDefault(require("@digigov/form/Fieldset"));
|
|
25
|
-
|
|
26
|
-
var _FormContext = require("@digigov/form/FormContext");
|
|
27
|
-
|
|
28
|
-
var _utils = require("@digigov/form/utils");
|
|
29
|
-
|
|
30
|
-
var _validators = require("@digigov/form/validators");
|
|
31
|
-
|
|
32
|
-
var _Form = require("@digigov/react-core/Form");
|
|
33
|
-
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
|
+
import _extends from "@babel/runtime/helpers/extends";
|
|
3
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
34
4
|
var _excluded = ["onSubmit", "children", "registerField", "fieldsMap", "fieldsetsMap", "resolver", "mode", "initial", "reValidateMode", "shouldFocusError", "criteriaMode", "componentRegistry", "grid"],
|
|
35
5
|
_excluded2 = ["fields", "fieldsets", "initial", "onSubmit", "children", "reValidateMode", "mode", "shouldFocusError", "criteriaMode", "auto", "validatorRegistry", "componentRegistry", "grid"];
|
|
36
6
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
7
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
8
|
+
import React, { useCallback, useRef } from 'react';
|
|
9
|
+
import { useForm } from 'react-hook-form';
|
|
10
|
+
import Field from "../Field";
|
|
11
|
+
import Fieldset from "../Fieldset";
|
|
12
|
+
import { FormContext } from "../FormContext";
|
|
13
|
+
import { yupResolver } from "../utils";
|
|
14
|
+
import { useValidationSchema } from "../validators";
|
|
15
|
+
import { Form } from '@digigov/react-core/Form';
|
|
16
|
+
export var FormBase = /*#__PURE__*/React.forwardRef(function FormBase(_ref, ref) {
|
|
42
17
|
var onSubmit = _ref.onSubmit,
|
|
43
18
|
children = _ref.children,
|
|
44
19
|
registerField = _ref.registerField,
|
|
@@ -52,8 +27,9 @@ var FormBase = /*#__PURE__*/_react["default"].forwardRef(function FormBase(_ref,
|
|
|
52
27
|
criteriaMode = _ref.criteriaMode,
|
|
53
28
|
componentRegistry = _ref.componentRegistry,
|
|
54
29
|
grid = _ref.grid,
|
|
55
|
-
props = (
|
|
56
|
-
|
|
30
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
31
|
+
|
|
32
|
+
var form = useForm({
|
|
57
33
|
resolver: resolver,
|
|
58
34
|
mode: mode,
|
|
59
35
|
defaultValues: initial,
|
|
@@ -61,7 +37,7 @@ var FormBase = /*#__PURE__*/_react["default"].forwardRef(function FormBase(_ref,
|
|
|
61
37
|
shouldFocusError: shouldFocusError,
|
|
62
38
|
criteriaMode: criteriaMode
|
|
63
39
|
});
|
|
64
|
-
var handleSubmit =
|
|
40
|
+
var handleSubmit = useCallback(function (data) {
|
|
65
41
|
onSubmit && onSubmit(data);
|
|
66
42
|
}, [onSubmit]);
|
|
67
43
|
var ctx = {
|
|
@@ -83,18 +59,15 @@ var FormBase = /*#__PURE__*/_react["default"].forwardRef(function FormBase(_ref,
|
|
|
83
59
|
componentRegistry: componentRegistry,
|
|
84
60
|
setError: form.setError
|
|
85
61
|
};
|
|
86
|
-
return /*#__PURE__*/
|
|
62
|
+
return /*#__PURE__*/React.createElement(FormContext.Provider, {
|
|
87
63
|
value: ctx
|
|
88
|
-
}, /*#__PURE__*/
|
|
64
|
+
}, /*#__PURE__*/React.createElement(Form, _extends({
|
|
89
65
|
grid: grid,
|
|
90
66
|
onSubmit: form.handleSubmit(handleSubmit),
|
|
91
67
|
ref: ref
|
|
92
68
|
}, props), children));
|
|
93
69
|
});
|
|
94
|
-
|
|
95
|
-
exports.FormBase = FormBase;
|
|
96
|
-
|
|
97
|
-
var FormBuilder = /*#__PURE__*/_react["default"].forwardRef(function FormBuilder(_ref2, ref) {
|
|
70
|
+
export var FormBuilder = /*#__PURE__*/React.forwardRef(function FormBuilder(_ref2, ref) {
|
|
98
71
|
var _ref2$fields = _ref2.fields,
|
|
99
72
|
fields = _ref2$fields === void 0 ? [] : _ref2$fields,
|
|
100
73
|
fieldsets = _ref2.fieldsets,
|
|
@@ -116,13 +89,14 @@ var FormBuilder = /*#__PURE__*/_react["default"].forwardRef(function FormBuilder
|
|
|
116
89
|
componentRegistry = _ref2.componentRegistry,
|
|
117
90
|
_ref2$grid = _ref2.grid,
|
|
118
91
|
grid = _ref2$grid === void 0 ? false : _ref2$grid,
|
|
119
|
-
props = (
|
|
120
|
-
|
|
121
|
-
var
|
|
92
|
+
props = _objectWithoutProperties(_ref2, _excluded2);
|
|
93
|
+
|
|
94
|
+
var fieldsState = useRef(fields);
|
|
95
|
+
var setFieldsState = useCallback(function (newFields) {
|
|
122
96
|
fieldsState.current = newFields;
|
|
123
97
|
}, []);
|
|
124
|
-
var schema =
|
|
125
|
-
var registerField =
|
|
98
|
+
var schema = useValidationSchema(fieldsState, validatorRegistry);
|
|
99
|
+
var registerField = useCallback(function (field) {
|
|
126
100
|
var fieldIndex = fieldsState.current.findIndex(function (f) {
|
|
127
101
|
return f.key === field.key;
|
|
128
102
|
});
|
|
@@ -141,24 +115,24 @@ var FormBuilder = /*#__PURE__*/_react["default"].forwardRef(function FormBuilder
|
|
|
141
115
|
var fieldChildren;
|
|
142
116
|
|
|
143
117
|
if (schema) {
|
|
144
|
-
resolver =
|
|
118
|
+
resolver = yupResolver(schema);
|
|
145
119
|
fieldsMap = fields ? fields.reduce(function (map, field) {
|
|
146
|
-
return (
|
|
120
|
+
return _extends({}, map, _defineProperty({}, field.key, field));
|
|
147
121
|
}, {}) : {};
|
|
148
122
|
fieldsetsMap = fieldsets && fieldsets.reduce(function (map, fieldset) {
|
|
149
|
-
return (
|
|
123
|
+
return _extends({}, map, _defineProperty({}, fieldset.key, fieldset));
|
|
150
124
|
}, {});
|
|
151
125
|
|
|
152
126
|
if (auto) {
|
|
153
127
|
if (fieldsets) {
|
|
154
128
|
fieldChildren = fieldsets.map(function (fieldset) {
|
|
155
|
-
return /*#__PURE__*/
|
|
129
|
+
return /*#__PURE__*/React.createElement(Fieldset, {
|
|
156
130
|
key: fieldset.key
|
|
157
131
|
});
|
|
158
132
|
});
|
|
159
133
|
} else if (fields) {
|
|
160
134
|
fieldChildren = fields.map(function (field) {
|
|
161
|
-
return /*#__PURE__*/
|
|
135
|
+
return /*#__PURE__*/React.createElement(Field, {
|
|
162
136
|
key: field.key,
|
|
163
137
|
name: field.key
|
|
164
138
|
});
|
|
@@ -167,7 +141,7 @@ var FormBuilder = /*#__PURE__*/_react["default"].forwardRef(function FormBuilder
|
|
|
167
141
|
}
|
|
168
142
|
}
|
|
169
143
|
|
|
170
|
-
return /*#__PURE__*/
|
|
144
|
+
return /*#__PURE__*/React.createElement(FormBase, _extends({
|
|
171
145
|
resolver: resolver,
|
|
172
146
|
fieldsetsMap: fieldsetsMap,
|
|
173
147
|
fieldsMap: fieldsMap,
|
|
@@ -183,7 +157,4 @@ var FormBuilder = /*#__PURE__*/_react["default"].forwardRef(function FormBuilder
|
|
|
183
157
|
grid: grid
|
|
184
158
|
}, props), fieldChildren, children);
|
|
185
159
|
});
|
|
186
|
-
|
|
187
|
-
exports.FormBuilder = FormBuilder;
|
|
188
|
-
var _default = FormBuilder;
|
|
189
|
-
exports["default"] = _default;
|
|
160
|
+
export default FormBuilder;
|