@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,41 +0,0 @@
|
|
|
1
|
-
import React, { useContext, useMemo } from 'react';
|
|
2
|
-
import Field from '@digigov/form/Field';
|
|
3
|
-
import { Fieldset, FieldsetLabel, FieldsetCaption, FieldsetBody } from '@digigov/form/Fieldset/';
|
|
4
|
-
import { FormContext } from '@digigov/form/FormContext';
|
|
5
|
-
import { useTranslation } from '@digigov/ui/i18n';
|
|
6
|
-
export var FieldsetWithContext = function FieldsetWithContext(_ref) {
|
|
7
|
-
var name = _ref.name;
|
|
8
|
-
|
|
9
|
-
var _useFieldset = useFieldset(name),
|
|
10
|
-
label = _useFieldset.label,
|
|
11
|
-
body = _useFieldset.body,
|
|
12
|
-
fields = _useFieldset.fields;
|
|
13
|
-
|
|
14
|
-
var _useTranslation = useTranslation(),
|
|
15
|
-
t = _useTranslation.t;
|
|
16
|
-
|
|
17
|
-
var _ref2 = /*#__PURE__*/React.createElement(FieldsetBody, null, body);
|
|
18
|
-
|
|
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, {
|
|
22
|
-
key: field,
|
|
23
|
-
name: field
|
|
24
|
-
});
|
|
25
|
-
}));
|
|
26
|
-
}, [label === null || label === void 0 ? void 0 : label.primary, label === null || label === void 0 ? void 0 : label.secondary, body, fields]);
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
var useFieldset = function useFieldset(name) {
|
|
30
|
-
var _useContext = useContext(FormContext),
|
|
31
|
-
fieldsetsMap = _useContext.fieldsetsMap;
|
|
32
|
-
|
|
33
|
-
if (fieldsetsMap && fieldsetsMap[name]) {
|
|
34
|
-
return useMemo(function () {
|
|
35
|
-
return fieldsetsMap[name];
|
|
36
|
-
}, [name]);
|
|
37
|
-
} else {
|
|
38
|
-
if (!fieldsetsMap) throw new Error("Fieldsets is not defined");
|
|
39
|
-
throw new Error("No fieldset with name ".concat(name, " found"));
|
|
40
|
-
}
|
|
41
|
-
};
|
package/esm/Fieldset/index.js
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
3
|
-
var _excluded = ["children"],
|
|
4
|
-
_excluded2 = ["children"];
|
|
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) {
|
|
12
|
-
var children = _ref.children,
|
|
13
|
-
props = _objectWithoutProperties(_ref, _excluded);
|
|
14
|
-
|
|
15
|
-
return /*#__PURE__*/React.createElement(FieldsetLegend, _extends({
|
|
16
|
-
heading: true,
|
|
17
|
-
size: "xl"
|
|
18
|
-
}, props), children);
|
|
19
|
-
};
|
|
20
|
-
export var FieldsetCaption = function FieldsetCaption(_ref2) {
|
|
21
|
-
var children = _ref2.children,
|
|
22
|
-
props = _objectWithoutProperties(_ref2, _excluded2);
|
|
23
|
-
|
|
24
|
-
return /*#__PURE__*/React.createElement(Hint, props, children);
|
|
25
|
-
};
|
|
26
|
-
export var FieldsetBody = function FieldsetBody(_ref3) {
|
|
27
|
-
var children = _ref3.children;
|
|
28
|
-
return /*#__PURE__*/React.createElement(Grid, {
|
|
29
|
-
item: true,
|
|
30
|
-
xs: 12
|
|
31
|
-
}, /*#__PURE__*/React.createElement(NormalText, null, children));
|
|
32
|
-
};
|
|
33
|
-
export { Fieldset };
|
|
34
|
-
export default Fieldset;
|
package/esm/Fieldset/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/esm/Form.stories.js
DELETED
|
@@ -1,256 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
id: FormBuilder
|
|
3
|
-
title: FormBuilder
|
|
4
|
-
sidebar_label: FormBuilder
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
`FormBuilder` is a React component that provides an easy way to efficiently create reusable form page. Forms are a flexible mechanism for collecting user input because there are suitable widgets for entering many different types of data, including text boxes, checkboxes, radio buttons, dropdowns and so on for submission to a server. Actually when we use `stepForm` for building step-forms all we do is to render `FormBuilder` component.
|
|
8
|
-
|
|
9
|
-
`stepForm` component:
|
|
10
|
-
|
|
11
|
-
<Story
|
|
12
|
-
packageName="@digigov/form"
|
|
13
|
-
component="FormBuilder"
|
|
14
|
-
story="Default.tsx"
|
|
15
|
-
/>
|
|
16
|
-
|
|
17
|
-
### Importing and using FormBuilder Component
|
|
18
|
-
|
|
19
|
-
To import `FormBuilder` component simply import it from `'@digigov/form`.
|
|
20
|
-
|
|
21
|
-
```javascript
|
|
22
|
-
import { FormBuilder } from '@digigov/form';
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
Now you can use the current component inisde of your component
|
|
26
|
-
|
|
27
|
-
```javascript
|
|
28
|
-
import BasicLayout, {
|
|
29
|
-
Top,
|
|
30
|
-
Content,
|
|
31
|
-
Main,
|
|
32
|
-
Bottom,
|
|
33
|
-
} from '@digigov/ui/layouts/Basic';
|
|
34
|
-
import {FormBuilder} from '@digigov/form';
|
|
35
|
-
|
|
36
|
-
export default function MyComponent({ props }) {
|
|
37
|
-
|
|
38
|
-
return (
|
|
39
|
-
<BasicLayout>
|
|
40
|
-
.
|
|
41
|
-
.
|
|
42
|
-
<Content>
|
|
43
|
-
<Main>
|
|
44
|
-
.
|
|
45
|
-
.
|
|
46
|
-
<FormBuilder></FormBuilder>
|
|
47
|
-
.
|
|
48
|
-
.
|
|
49
|
-
</Main>
|
|
50
|
-
</Content>
|
|
51
|
-
<Bottom>
|
|
52
|
-
<GovGRFooter />
|
|
53
|
-
</Bottom>
|
|
54
|
-
</BasicLayout>
|
|
55
|
-
);
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
### Props
|
|
61
|
-
|
|
62
|
-
`FormBuilder` component accepts several arguments as input props.
|
|
63
|
-
|
|
64
|
-
| Name | Type | Default | Description |
|
|
65
|
-
| ------------ | :-----: | :-----: | :------------------------------------------------------------------------------------: |
|
|
66
|
-
| children | node | | allow you to pass components as data. |
|
|
67
|
-
| steps | array | | an array which includes each step-form format data |
|
|
68
|
-
| name | string | | the name of the step. |
|
|
69
|
-
| title | string | | the title from each step |
|
|
70
|
-
| fields | array | | an array of object fields which they describe each field for each step-form |
|
|
71
|
-
| key | string | | the key value of the input field |
|
|
72
|
-
| label | object | | an object prop which describes the label primary and the secondary name of the field |
|
|
73
|
-
| primary | string | | the name of te field |
|
|
74
|
-
| required | boolean | false | describes the validation of the field |
|
|
75
|
-
| submitButton | boolean | false | if true, it creates a button to continue to the next step |
|
|
76
|
-
| type | string | | describes the format of each field, e.x `type:'string'` is a simple input format field |
|
|
77
|
-
|
|
78
|
-
### Field types
|
|
79
|
-
|
|
80
|
-
Below are demostrated some examples for each type of field
|
|
81
|
-
|
|
82
|
-
### FormBuilder implementation
|
|
83
|
-
|
|
84
|
-
The examples above are implemented by using the code below
|
|
85
|
-
|
|
86
|
-
```javascript
|
|
87
|
-
import React, { useState } from 'react';
|
|
88
|
-
import BasicLayout, {
|
|
89
|
-
Top,
|
|
90
|
-
Content,
|
|
91
|
-
Main,
|
|
92
|
-
Bottom,
|
|
93
|
-
} from '@digigov/ui/layouts/Basic';
|
|
94
|
-
import Header, { HeaderTitle } from '@digigov/ui/app/Header';
|
|
95
|
-
import GovGRLogo from '@digigov/ui/govgr/GovGRLogo';
|
|
96
|
-
import GovGRFooter from '@digigov/ui/govgr/Footer';
|
|
97
|
-
import Button from '@digigov/ui/form/Button';
|
|
98
|
-
import PageTitleContainer, {
|
|
99
|
-
PageTitleCaption,
|
|
100
|
-
PageTitleHeading,
|
|
101
|
-
} from '@digigov/ui/app/PageTitleContainer';
|
|
102
|
-
import BackButton from '@digigov/ui/form/Button/BackButton';
|
|
103
|
-
import FormBuilder, { Fieldset, FieldsetLabel, Field } from '@digigov/form';
|
|
104
|
-
import { useTranslation } from '@digigov/ui/i18n';
|
|
105
|
-
|
|
106
|
-
const FIELDS = [
|
|
107
|
-
{
|
|
108
|
-
key: 'phone',
|
|
109
|
-
label: {
|
|
110
|
-
primary: 'Mobile phone',
|
|
111
|
-
secondary: 'A valid mobile number, eg. +306988848888',
|
|
112
|
-
},
|
|
113
|
-
required: true,
|
|
114
|
-
type: 'mobile_phone',
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
key: 'choice_single',
|
|
118
|
-
label: { primary: 'Is this true or not' },
|
|
119
|
-
type: 'choice:single',
|
|
120
|
-
required: true,
|
|
121
|
-
extra: {
|
|
122
|
-
options: [
|
|
123
|
-
{
|
|
124
|
-
label: { primary: 'Yes' },
|
|
125
|
-
value: 'yes',
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
label: { primary: 'No', secondary: 'Explanation about no option' },
|
|
129
|
-
value: 'no',
|
|
130
|
-
},
|
|
131
|
-
],
|
|
132
|
-
},
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
key: 'choice_single_notitle',
|
|
136
|
-
type: 'choice:single',
|
|
137
|
-
extra: {
|
|
138
|
-
options: [
|
|
139
|
-
{
|
|
140
|
-
label: { primary: 'One' },
|
|
141
|
-
value: '1',
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
label: { primary: 'Two' },
|
|
145
|
-
value: '2',
|
|
146
|
-
},
|
|
147
|
-
],
|
|
148
|
-
},
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
key: 'choice_multiple',
|
|
152
|
-
label: 'Select from below',
|
|
153
|
-
type: 'choice:multiple',
|
|
154
|
-
extra: {
|
|
155
|
-
options: [
|
|
156
|
-
{
|
|
157
|
-
label: { primary: 'Choice 1', secondary: 'Choice 1 explanation' },
|
|
158
|
-
value: 'choice_1',
|
|
159
|
-
},
|
|
160
|
-
{
|
|
161
|
-
label: { primary: 'Choice 2' },
|
|
162
|
-
value: 'choice_2',
|
|
163
|
-
},
|
|
164
|
-
],
|
|
165
|
-
},
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
key: 'choice_single_select',
|
|
169
|
-
label: 'Select from below',
|
|
170
|
-
type: 'choice:single',
|
|
171
|
-
extra: {
|
|
172
|
-
options: [
|
|
173
|
-
{
|
|
174
|
-
label: { primary: 'Choice 1', secondary: 'Choice 1 explanation' },
|
|
175
|
-
value: 'choice_1',
|
|
176
|
-
},
|
|
177
|
-
{
|
|
178
|
-
label: { primary: 'Choice 2 lenghty explanation without reason' },
|
|
179
|
-
value: 'choice_2',
|
|
180
|
-
},
|
|
181
|
-
],
|
|
182
|
-
component: 'Select',
|
|
183
|
-
},
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
key: 'number',
|
|
187
|
-
label: { primary: 'A positive number' },
|
|
188
|
-
required: true,
|
|
189
|
-
width: '100px',
|
|
190
|
-
type: 'int',
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
key: 'string',
|
|
194
|
-
label: null,
|
|
195
|
-
width: '100px',
|
|
196
|
-
required: true,
|
|
197
|
-
type: 'string',
|
|
198
|
-
},
|
|
199
|
-
];
|
|
200
|
-
const initialValues = {
|
|
201
|
-
phone: '6988888888',
|
|
202
|
-
choice_multiple: ['choice_2'],
|
|
203
|
-
string: 'default content',
|
|
204
|
-
};
|
|
205
|
-
|
|
206
|
-
const useStyles = makeStyles(
|
|
207
|
-
{
|
|
208
|
-
top: { minHeight: '75px' },
|
|
209
|
-
main: {},
|
|
210
|
-
side: {},
|
|
211
|
-
},
|
|
212
|
-
{ name: 'MuiSite' }
|
|
213
|
-
);
|
|
214
|
-
|
|
215
|
-
export default function Index() {
|
|
216
|
-
const styles = useStyles();
|
|
217
|
-
const [data, setData] = useState(null);
|
|
218
|
-
const { t } = useTranslation();
|
|
219
|
-
return (
|
|
220
|
-
<BasicLayout>
|
|
221
|
-
<Top className={styles.top}>
|
|
222
|
-
<Header>
|
|
223
|
-
<GovGRLogo />
|
|
224
|
-
<HeaderTitle>Service name</HeaderTitle>
|
|
225
|
-
</Header>
|
|
226
|
-
</Top>
|
|
227
|
-
<Content>
|
|
228
|
-
<Main className={styles.main}>
|
|
229
|
-
<BackButton>{t('button.back')}</BackButton>
|
|
230
|
-
<PageTitleContainer>
|
|
231
|
-
<PageTitleCaption>Before we start</PageTitleCaption>
|
|
232
|
-
<PageTitleHeading>Submit a form</PageTitleHeading>
|
|
233
|
-
</PageTitleContainer>
|
|
234
|
-
<FormBuilder
|
|
235
|
-
fields={FIELDS}
|
|
236
|
-
onSubmit={setData}
|
|
237
|
-
initial={initialValues}
|
|
238
|
-
>
|
|
239
|
-
<Fieldset>
|
|
240
|
-
<FieldsetLabel>This is a fieldset</FieldsetLabel>
|
|
241
|
-
{FIELDS.map((field) => (
|
|
242
|
-
<Field key={field.key} name={field.key} />
|
|
243
|
-
))}
|
|
244
|
-
</Fieldset>
|
|
245
|
-
<Button type="submit">{t('button.continue')}</Button>
|
|
246
|
-
</FormBuilder>
|
|
247
|
-
{data && <pre>{JSON.stringify(data, null, 2)}</pre>}
|
|
248
|
-
</Main>
|
|
249
|
-
</Content>
|
|
250
|
-
<Bottom>
|
|
251
|
-
<GovGRFooter />
|
|
252
|
-
</Bottom>
|
|
253
|
-
</BasicLayout>
|
|
254
|
-
);
|
|
255
|
-
}
|
|
256
|
-
```
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "4",
|
|
3
|
-
"stories": {
|
|
4
|
-
"digigov-form-formbuilder--default": {
|
|
5
|
-
"actionSets": [
|
|
6
|
-
{
|
|
7
|
-
"actions": [
|
|
8
|
-
{
|
|
9
|
-
"name": "type",
|
|
10
|
-
"args": {
|
|
11
|
-
"selector": "html>body>div:nth-child(5)>form>div>label>input",
|
|
12
|
-
"text": "hello"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"name": "click",
|
|
17
|
-
"args": {
|
|
18
|
-
"selector": "html>body>div:nth-child(5)>form>button"
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
],
|
|
22
|
-
"id": "96MZZJqDNLCc",
|
|
23
|
-
"title": "type and submit"
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"actions": [
|
|
27
|
-
{
|
|
28
|
-
"name": "keyboard.press",
|
|
29
|
-
"args": {
|
|
30
|
-
"key": "Tab"
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"name": "keyboard.press",
|
|
35
|
-
"args": {
|
|
36
|
-
"key": "Tab"
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"name": "keyboard.press",
|
|
41
|
-
"args": {
|
|
42
|
-
"key": "Enter"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
],
|
|
46
|
-
"id": "El5R6WiI7IMr",
|
|
47
|
-
"title": "focus and show validation error"
|
|
48
|
-
}
|
|
49
|
-
]
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import FormBuilder, { Field } from '@digigov/form';
|
|
3
|
-
import { Button } from '@digigov/ui/form/Button';
|
|
4
|
-
var initialValues = {
|
|
5
|
-
'business-title': null
|
|
6
|
-
};
|
|
7
|
-
|
|
8
|
-
var _ref = /*#__PURE__*/React.createElement(Button, {
|
|
9
|
-
type: "submit"
|
|
10
|
-
}, "\u03A3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1");
|
|
11
|
-
|
|
12
|
-
export var Default = function Default() {
|
|
13
|
-
return /*#__PURE__*/React.createElement(FormBuilder, {
|
|
14
|
-
onSubmit: function onSubmit(data) {
|
|
15
|
-
console.log(data);
|
|
16
|
-
},
|
|
17
|
-
initial: initialValues
|
|
18
|
-
}, /*#__PURE__*/React.createElement(Field, {
|
|
19
|
-
key: "business-title",
|
|
20
|
-
name: "business-title",
|
|
21
|
-
type: "string",
|
|
22
|
-
label: {
|
|
23
|
-
primary: 'Όνομα επιχείρησης'
|
|
24
|
-
},
|
|
25
|
-
required: true
|
|
26
|
-
}), _ref);
|
|
27
|
-
};
|
|
28
|
-
export default Default;
|
package/esm/FormBuilder/index.js
DELETED