@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,596 +0,0 @@
|
|
|
1
|
-
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
-
|
|
3
|
-
exports[`renders the Questions 1`] = `
|
|
4
|
-
<Questions
|
|
5
|
-
name="example"
|
|
6
|
-
onSubmit={[Function]}
|
|
7
|
-
steps={
|
|
8
|
-
Array [
|
|
9
|
-
Object {
|
|
10
|
-
"caption": "intro.caption",
|
|
11
|
-
"description": "intro.description",
|
|
12
|
-
"fields": Array [
|
|
13
|
-
Object {
|
|
14
|
-
"key": "name",
|
|
15
|
-
"label": Object {
|
|
16
|
-
"primary": "name.field.primary",
|
|
17
|
-
"secondary": "name.field.secondary",
|
|
18
|
-
},
|
|
19
|
-
"required": true,
|
|
20
|
-
"type": "string",
|
|
21
|
-
},
|
|
22
|
-
],
|
|
23
|
-
"name": "intro",
|
|
24
|
-
"title": "intro.title",
|
|
25
|
-
},
|
|
26
|
-
Object {
|
|
27
|
-
"caption": "age.caption",
|
|
28
|
-
"description": "age.description",
|
|
29
|
-
"fields": Array [
|
|
30
|
-
Object {
|
|
31
|
-
"key": "dateOfBirth",
|
|
32
|
-
"label": Object {
|
|
33
|
-
"primary": "age.field.primary",
|
|
34
|
-
"secondary": "age.field.secondary",
|
|
35
|
-
},
|
|
36
|
-
"required": true,
|
|
37
|
-
"type": "number",
|
|
38
|
-
},
|
|
39
|
-
],
|
|
40
|
-
"name": "age",
|
|
41
|
-
"title": "age.title",
|
|
42
|
-
},
|
|
43
|
-
]
|
|
44
|
-
}
|
|
45
|
-
>
|
|
46
|
-
<Step
|
|
47
|
-
name="intro"
|
|
48
|
-
>
|
|
49
|
-
<StepTitle>
|
|
50
|
-
<StepTitleBase
|
|
51
|
-
caption="intro.caption"
|
|
52
|
-
title="intro.title"
|
|
53
|
-
>
|
|
54
|
-
<withDeprecationComponent>
|
|
55
|
-
<ForwardRef(BackLink)>
|
|
56
|
-
<ForwardRef(Base)
|
|
57
|
-
as="a"
|
|
58
|
-
className="govgr-back-link"
|
|
59
|
-
onClick={[Function]}
|
|
60
|
-
printHidden={true}
|
|
61
|
-
tabIndex={0}
|
|
62
|
-
>
|
|
63
|
-
<a
|
|
64
|
-
className="govgr-back-link govgr-print-hidden"
|
|
65
|
-
onClick={[Function]}
|
|
66
|
-
tabIndex={0}
|
|
67
|
-
>
|
|
68
|
-
<CaretIcon
|
|
69
|
-
direction="left"
|
|
70
|
-
>
|
|
71
|
-
<ForwardRef(Icon)
|
|
72
|
-
direction="left"
|
|
73
|
-
icon="caret"
|
|
74
|
-
>
|
|
75
|
-
<ForwardRef(SvgIcon)
|
|
76
|
-
className="govgr-svg-icon--caret"
|
|
77
|
-
>
|
|
78
|
-
<ForwardRef(Base)
|
|
79
|
-
aria-hidden="true"
|
|
80
|
-
as="svg"
|
|
81
|
-
className="govgr-svg-icon--caret govgr-svg-icon"
|
|
82
|
-
focusable="false"
|
|
83
|
-
viewBox="0 0 24 24"
|
|
84
|
-
>
|
|
85
|
-
<svg
|
|
86
|
-
aria-hidden="true"
|
|
87
|
-
className="govgr-svg-icon--caret govgr-svg-icon"
|
|
88
|
-
focusable="false"
|
|
89
|
-
viewBox="0 0 24 24"
|
|
90
|
-
>
|
|
91
|
-
<caret
|
|
92
|
-
direction="left"
|
|
93
|
-
>
|
|
94
|
-
<path
|
|
95
|
-
d="M18,22V2L6,12L18,22z"
|
|
96
|
-
/>
|
|
97
|
-
</caret>
|
|
98
|
-
</svg>
|
|
99
|
-
</ForwardRef(Base)>
|
|
100
|
-
</ForwardRef(SvgIcon)>
|
|
101
|
-
</ForwardRef(Icon)>
|
|
102
|
-
</CaretIcon>
|
|
103
|
-
back.button
|
|
104
|
-
</a>
|
|
105
|
-
</ForwardRef(Base)>
|
|
106
|
-
</ForwardRef(BackLink)>
|
|
107
|
-
</withDeprecationComponent>
|
|
108
|
-
<ForwardRef(PageTitleContainer)>
|
|
109
|
-
<ForwardRef(Base)
|
|
110
|
-
as="div"
|
|
111
|
-
className="govgr-page-title"
|
|
112
|
-
>
|
|
113
|
-
<div
|
|
114
|
-
className="govgr-page-title"
|
|
115
|
-
>
|
|
116
|
-
<ForwardRef(PageTitleCaption)>
|
|
117
|
-
<ForwardRef(HeadingCaption)>
|
|
118
|
-
<ForwardRef(Base)
|
|
119
|
-
as="span"
|
|
120
|
-
className="govgr-caption-lg"
|
|
121
|
-
>
|
|
122
|
-
<span
|
|
123
|
-
className="govgr-caption-lg"
|
|
124
|
-
>
|
|
125
|
-
intro.caption
|
|
126
|
-
</span>
|
|
127
|
-
</ForwardRef(Base)>
|
|
128
|
-
</ForwardRef(HeadingCaption)>
|
|
129
|
-
</ForwardRef(PageTitleCaption)>
|
|
130
|
-
<StepTitleHeading>
|
|
131
|
-
<ForwardRef(PageTitleHeading)>
|
|
132
|
-
<ForwardRef(Heading)>
|
|
133
|
-
<ForwardRef(Base)
|
|
134
|
-
as="h1"
|
|
135
|
-
className="govgr-heading-xl"
|
|
136
|
-
>
|
|
137
|
-
<h1
|
|
138
|
-
className="govgr-heading-xl"
|
|
139
|
-
>
|
|
140
|
-
intro.title
|
|
141
|
-
</h1>
|
|
142
|
-
</ForwardRef(Base)>
|
|
143
|
-
</ForwardRef(Heading)>
|
|
144
|
-
</ForwardRef(PageTitleHeading)>
|
|
145
|
-
</StepTitleHeading>
|
|
146
|
-
</div>
|
|
147
|
-
</ForwardRef(Base)>
|
|
148
|
-
</ForwardRef(PageTitleContainer)>
|
|
149
|
-
</StepTitleBase>
|
|
150
|
-
</StepTitle>
|
|
151
|
-
<StepQuote>
|
|
152
|
-
<ForwardRef(Paragraph)>
|
|
153
|
-
<ForwardRef(Base)
|
|
154
|
-
as="p"
|
|
155
|
-
className="govgr-body"
|
|
156
|
-
>
|
|
157
|
-
<p
|
|
158
|
-
className="govgr-body"
|
|
159
|
-
>
|
|
160
|
-
This is the intro
|
|
161
|
-
</p>
|
|
162
|
-
</ForwardRef(Base)>
|
|
163
|
-
</ForwardRef(Paragraph)>
|
|
164
|
-
</StepQuote>
|
|
165
|
-
<StepForm
|
|
166
|
-
submitButton={true}
|
|
167
|
-
>
|
|
168
|
-
<ForwardRef(FormBuilder)
|
|
169
|
-
fields={
|
|
170
|
-
Array [
|
|
171
|
-
Object {
|
|
172
|
-
"key": "name",
|
|
173
|
-
"label": Object {
|
|
174
|
-
"primary": "name.field.primary",
|
|
175
|
-
"secondary": "name.field.secondary",
|
|
176
|
-
},
|
|
177
|
-
"required": true,
|
|
178
|
-
"type": "string",
|
|
179
|
-
},
|
|
180
|
-
]
|
|
181
|
-
}
|
|
182
|
-
onSubmit={[Function]}
|
|
183
|
-
>
|
|
184
|
-
<ForwardRef(FormBase)
|
|
185
|
-
criteriaMode="all"
|
|
186
|
-
fieldsMap={
|
|
187
|
-
Object {
|
|
188
|
-
"name": Object {
|
|
189
|
-
"key": "name",
|
|
190
|
-
"label": Object {
|
|
191
|
-
"primary": "name.field.primary",
|
|
192
|
-
"secondary": "name.field.secondary",
|
|
193
|
-
},
|
|
194
|
-
"required": true,
|
|
195
|
-
"type": "string",
|
|
196
|
-
},
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
grid={false}
|
|
200
|
-
initial={Object {}}
|
|
201
|
-
mode="onSubmit"
|
|
202
|
-
onSubmit={[Function]}
|
|
203
|
-
reValidateMode="onSubmit"
|
|
204
|
-
registerField={[Function]}
|
|
205
|
-
resolver={[Function]}
|
|
206
|
-
shouldFocusError={true}
|
|
207
|
-
>
|
|
208
|
-
<ForwardRef(Form)
|
|
209
|
-
grid={false}
|
|
210
|
-
onSubmit={[Function]}
|
|
211
|
-
>
|
|
212
|
-
<ForwardRef(Base)
|
|
213
|
-
as="form"
|
|
214
|
-
className="govgr-form"
|
|
215
|
-
onSubmit={[Function]}
|
|
216
|
-
>
|
|
217
|
-
<form
|
|
218
|
-
className="govgr-form"
|
|
219
|
-
onSubmit={[Function]}
|
|
220
|
-
>
|
|
221
|
-
<Field
|
|
222
|
-
key="name"
|
|
223
|
-
name="name"
|
|
224
|
-
>
|
|
225
|
-
<FieldBase
|
|
226
|
-
component={
|
|
227
|
-
Object {
|
|
228
|
-
"$$typeof": Symbol(react.forward_ref),
|
|
229
|
-
"render": [Function],
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
control={
|
|
233
|
-
Object {
|
|
234
|
-
"_defaultValues": Object {},
|
|
235
|
-
"_executeSchema": [Function],
|
|
236
|
-
"_fields": Object {
|
|
237
|
-
"name": Object {
|
|
238
|
-
"_f": Object {
|
|
239
|
-
"mount": true,
|
|
240
|
-
"name": "name",
|
|
241
|
-
"ref": <input
|
|
242
|
-
aria-required="true"
|
|
243
|
-
class="govgr-input"
|
|
244
|
-
name="name"
|
|
245
|
-
type="text"
|
|
246
|
-
/>,
|
|
247
|
-
},
|
|
248
|
-
},
|
|
249
|
-
},
|
|
250
|
-
"_formState": Object {
|
|
251
|
-
"dirtyFields": Object {},
|
|
252
|
-
"errors": Object {},
|
|
253
|
-
"isDirty": false,
|
|
254
|
-
"isSubmitSuccessful": false,
|
|
255
|
-
"isSubmitted": false,
|
|
256
|
-
"isSubmitting": false,
|
|
257
|
-
"isValid": false,
|
|
258
|
-
"isValidating": false,
|
|
259
|
-
"submitCount": 0,
|
|
260
|
-
"touchedFields": Object {},
|
|
261
|
-
},
|
|
262
|
-
"_formValues": Object {
|
|
263
|
-
"name": "",
|
|
264
|
-
},
|
|
265
|
-
"_getDirty": [Function],
|
|
266
|
-
"_getFieldArray": [Function],
|
|
267
|
-
"_getWatch": [Function],
|
|
268
|
-
"_names": Object {
|
|
269
|
-
"array": Set {},
|
|
270
|
-
"mount": Set {
|
|
271
|
-
"name",
|
|
272
|
-
},
|
|
273
|
-
"unMount": Set {},
|
|
274
|
-
"watch": Set {},
|
|
275
|
-
},
|
|
276
|
-
"_options": Object {
|
|
277
|
-
"criteriaMode": "all",
|
|
278
|
-
"defaultValues": Object {},
|
|
279
|
-
"mode": "onSubmit",
|
|
280
|
-
"reValidateMode": "onSubmit",
|
|
281
|
-
"resolver": [Function],
|
|
282
|
-
"shouldFocusError": true,
|
|
283
|
-
},
|
|
284
|
-
"_proxyFormState": Object {
|
|
285
|
-
"dirtyFields": false,
|
|
286
|
-
"errors": "all",
|
|
287
|
-
"isDirty": false,
|
|
288
|
-
"isValid": false,
|
|
289
|
-
"isValidating": false,
|
|
290
|
-
"touchedFields": false,
|
|
291
|
-
},
|
|
292
|
-
"_removeUnmounted": [Function],
|
|
293
|
-
"_stateFlags": Object {
|
|
294
|
-
"action": false,
|
|
295
|
-
"mount": true,
|
|
296
|
-
"watch": false,
|
|
297
|
-
},
|
|
298
|
-
"_subjects": Object {
|
|
299
|
-
"array": Object {
|
|
300
|
-
"next": [Function],
|
|
301
|
-
"observers": Array [],
|
|
302
|
-
"subscribe": [Function],
|
|
303
|
-
"unsubscribe": [Function],
|
|
304
|
-
},
|
|
305
|
-
"state": Object {
|
|
306
|
-
"next": [Function],
|
|
307
|
-
"observers": Array [
|
|
308
|
-
Object {
|
|
309
|
-
"next": [Function],
|
|
310
|
-
},
|
|
311
|
-
],
|
|
312
|
-
"subscribe": [Function],
|
|
313
|
-
"unsubscribe": [Function],
|
|
314
|
-
},
|
|
315
|
-
"watch": Object {
|
|
316
|
-
"next": [Function],
|
|
317
|
-
"observers": Array [
|
|
318
|
-
Object {
|
|
319
|
-
"next": [Function],
|
|
320
|
-
},
|
|
321
|
-
],
|
|
322
|
-
"subscribe": [Function],
|
|
323
|
-
"unsubscribe": [Function],
|
|
324
|
-
},
|
|
325
|
-
},
|
|
326
|
-
"_updateFieldArray": [Function],
|
|
327
|
-
"_updateValid": [Function],
|
|
328
|
-
"getFieldState": [Function],
|
|
329
|
-
"register": [Function],
|
|
330
|
-
"unregister": [Function],
|
|
331
|
-
}
|
|
332
|
-
}
|
|
333
|
-
controlled={false}
|
|
334
|
-
key="name"
|
|
335
|
-
label={
|
|
336
|
-
Object {
|
|
337
|
-
"primary": "name.field.primary",
|
|
338
|
-
"secondary": "name.field.secondary",
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
name="name"
|
|
342
|
-
register={[Function]}
|
|
343
|
-
required={true}
|
|
344
|
-
reset={[Function]}
|
|
345
|
-
type="string"
|
|
346
|
-
>
|
|
347
|
-
<FieldBaseContainer
|
|
348
|
-
label={
|
|
349
|
-
Object {
|
|
350
|
-
"primary": "name.field.primary",
|
|
351
|
-
"secondary": "name.field.secondary",
|
|
352
|
-
}
|
|
353
|
-
}
|
|
354
|
-
name="name"
|
|
355
|
-
>
|
|
356
|
-
<ForwardRef(FieldContainer)
|
|
357
|
-
error={false}
|
|
358
|
-
>
|
|
359
|
-
<ForwardRef(Grid)
|
|
360
|
-
className="govgr-field"
|
|
361
|
-
item={true}
|
|
362
|
-
xs={12}
|
|
363
|
-
>
|
|
364
|
-
<ForwardRef(Base)
|
|
365
|
-
as="div"
|
|
366
|
-
className="govgr-field xs:govgr-grid__col-span-12"
|
|
367
|
-
>
|
|
368
|
-
<div
|
|
369
|
-
className="govgr-field xs:govgr-grid__col-span-12"
|
|
370
|
-
>
|
|
371
|
-
<ForwardRef(LabelContainer)>
|
|
372
|
-
<ForwardRef(Base)
|
|
373
|
-
as="label"
|
|
374
|
-
className="govgr-label"
|
|
375
|
-
>
|
|
376
|
-
<label
|
|
377
|
-
className="govgr-label"
|
|
378
|
-
>
|
|
379
|
-
<Label
|
|
380
|
-
label={
|
|
381
|
-
Object {
|
|
382
|
-
"primary": "name.field.primary",
|
|
383
|
-
"secondary": "name.field.secondary",
|
|
384
|
-
}
|
|
385
|
-
}
|
|
386
|
-
>
|
|
387
|
-
<ForwardRef(LabelTitle)
|
|
388
|
-
size="sm"
|
|
389
|
-
>
|
|
390
|
-
<ForwardRef(Base)
|
|
391
|
-
as="span"
|
|
392
|
-
className="govgr-heading-sm"
|
|
393
|
-
>
|
|
394
|
-
<span
|
|
395
|
-
className="govgr-heading-sm"
|
|
396
|
-
>
|
|
397
|
-
name.field.primary
|
|
398
|
-
</span>
|
|
399
|
-
</ForwardRef(Base)>
|
|
400
|
-
</ForwardRef(LabelTitle)>
|
|
401
|
-
<ForwardRef(Hint)>
|
|
402
|
-
<ForwardRef(Base)
|
|
403
|
-
as="p"
|
|
404
|
-
className="govgr-hint"
|
|
405
|
-
>
|
|
406
|
-
<p
|
|
407
|
-
className="govgr-hint"
|
|
408
|
-
>
|
|
409
|
-
name.field.secondary
|
|
410
|
-
</p>
|
|
411
|
-
</ForwardRef(Base)>
|
|
412
|
-
</ForwardRef(Hint)>
|
|
413
|
-
</Label>
|
|
414
|
-
<ForwardRef(WrappedInput)
|
|
415
|
-
aria-required={true}
|
|
416
|
-
control={
|
|
417
|
-
Object {
|
|
418
|
-
"_defaultValues": Object {},
|
|
419
|
-
"_executeSchema": [Function],
|
|
420
|
-
"_fields": Object {
|
|
421
|
-
"name": Object {
|
|
422
|
-
"_f": Object {
|
|
423
|
-
"mount": true,
|
|
424
|
-
"name": "name",
|
|
425
|
-
"ref": <input
|
|
426
|
-
aria-required="true"
|
|
427
|
-
class="govgr-input"
|
|
428
|
-
name="name"
|
|
429
|
-
type="text"
|
|
430
|
-
/>,
|
|
431
|
-
},
|
|
432
|
-
},
|
|
433
|
-
},
|
|
434
|
-
"_formState": Object {
|
|
435
|
-
"dirtyFields": Object {},
|
|
436
|
-
"errors": Object {},
|
|
437
|
-
"isDirty": false,
|
|
438
|
-
"isSubmitSuccessful": false,
|
|
439
|
-
"isSubmitted": false,
|
|
440
|
-
"isSubmitting": false,
|
|
441
|
-
"isValid": false,
|
|
442
|
-
"isValidating": false,
|
|
443
|
-
"submitCount": 0,
|
|
444
|
-
"touchedFields": Object {},
|
|
445
|
-
},
|
|
446
|
-
"_formValues": Object {
|
|
447
|
-
"name": "",
|
|
448
|
-
},
|
|
449
|
-
"_getDirty": [Function],
|
|
450
|
-
"_getFieldArray": [Function],
|
|
451
|
-
"_getWatch": [Function],
|
|
452
|
-
"_names": Object {
|
|
453
|
-
"array": Set {},
|
|
454
|
-
"mount": Set {
|
|
455
|
-
"name",
|
|
456
|
-
},
|
|
457
|
-
"unMount": Set {},
|
|
458
|
-
"watch": Set {},
|
|
459
|
-
},
|
|
460
|
-
"_options": Object {
|
|
461
|
-
"criteriaMode": "all",
|
|
462
|
-
"defaultValues": Object {},
|
|
463
|
-
"mode": "onSubmit",
|
|
464
|
-
"reValidateMode": "onSubmit",
|
|
465
|
-
"resolver": [Function],
|
|
466
|
-
"shouldFocusError": true,
|
|
467
|
-
},
|
|
468
|
-
"_proxyFormState": Object {
|
|
469
|
-
"dirtyFields": false,
|
|
470
|
-
"errors": "all",
|
|
471
|
-
"isDirty": false,
|
|
472
|
-
"isValid": false,
|
|
473
|
-
"isValidating": false,
|
|
474
|
-
"touchedFields": false,
|
|
475
|
-
},
|
|
476
|
-
"_removeUnmounted": [Function],
|
|
477
|
-
"_stateFlags": Object {
|
|
478
|
-
"action": false,
|
|
479
|
-
"mount": true,
|
|
480
|
-
"watch": false,
|
|
481
|
-
},
|
|
482
|
-
"_subjects": Object {
|
|
483
|
-
"array": Object {
|
|
484
|
-
"next": [Function],
|
|
485
|
-
"observers": Array [],
|
|
486
|
-
"subscribe": [Function],
|
|
487
|
-
"unsubscribe": [Function],
|
|
488
|
-
},
|
|
489
|
-
"state": Object {
|
|
490
|
-
"next": [Function],
|
|
491
|
-
"observers": Array [
|
|
492
|
-
Object {
|
|
493
|
-
"next": [Function],
|
|
494
|
-
},
|
|
495
|
-
],
|
|
496
|
-
"subscribe": [Function],
|
|
497
|
-
"unsubscribe": [Function],
|
|
498
|
-
},
|
|
499
|
-
"watch": Object {
|
|
500
|
-
"next": [Function],
|
|
501
|
-
"observers": Array [
|
|
502
|
-
Object {
|
|
503
|
-
"next": [Function],
|
|
504
|
-
},
|
|
505
|
-
],
|
|
506
|
-
"subscribe": [Function],
|
|
507
|
-
"unsubscribe": [Function],
|
|
508
|
-
},
|
|
509
|
-
},
|
|
510
|
-
"_updateFieldArray": [Function],
|
|
511
|
-
"_updateValid": [Function],
|
|
512
|
-
"getFieldState": [Function],
|
|
513
|
-
"register": [Function],
|
|
514
|
-
"unregister": [Function],
|
|
515
|
-
}
|
|
516
|
-
}
|
|
517
|
-
disabled={false}
|
|
518
|
-
error={false}
|
|
519
|
-
extra={Object {}}
|
|
520
|
-
name="name"
|
|
521
|
-
onBlur={[Function]}
|
|
522
|
-
onChange={[Function]}
|
|
523
|
-
required={true}
|
|
524
|
-
reset={[Function]}
|
|
525
|
-
type="string"
|
|
526
|
-
>
|
|
527
|
-
<ForwardRef(TextInput)
|
|
528
|
-
aria-required={true}
|
|
529
|
-
disabled={false}
|
|
530
|
-
error={false}
|
|
531
|
-
name="name"
|
|
532
|
-
onBlur={[Function]}
|
|
533
|
-
onChange={[Function]}
|
|
534
|
-
type="text"
|
|
535
|
-
>
|
|
536
|
-
<ForwardRef(Base)
|
|
537
|
-
aria-required={true}
|
|
538
|
-
as="input"
|
|
539
|
-
className="govgr-input"
|
|
540
|
-
disabled={false}
|
|
541
|
-
name="name"
|
|
542
|
-
onBlur={[Function]}
|
|
543
|
-
onChange={[Function]}
|
|
544
|
-
type="text"
|
|
545
|
-
>
|
|
546
|
-
<input
|
|
547
|
-
aria-required={true}
|
|
548
|
-
className="govgr-input"
|
|
549
|
-
disabled={false}
|
|
550
|
-
name="name"
|
|
551
|
-
onBlur={[Function]}
|
|
552
|
-
onChange={[Function]}
|
|
553
|
-
type="text"
|
|
554
|
-
/>
|
|
555
|
-
</ForwardRef(Base)>
|
|
556
|
-
</ForwardRef(TextInput)>
|
|
557
|
-
</ForwardRef(WrappedInput)>
|
|
558
|
-
</label>
|
|
559
|
-
</ForwardRef(Base)>
|
|
560
|
-
</ForwardRef(LabelContainer)>
|
|
561
|
-
</div>
|
|
562
|
-
</ForwardRef(Base)>
|
|
563
|
-
</ForwardRef(Grid)>
|
|
564
|
-
</ForwardRef(FieldContainer)>
|
|
565
|
-
</FieldBaseContainer>
|
|
566
|
-
</FieldBase>
|
|
567
|
-
</Field>
|
|
568
|
-
<ForwardRef(Button)
|
|
569
|
-
type="submit"
|
|
570
|
-
>
|
|
571
|
-
<ForwardRef(Base)
|
|
572
|
-
as="button"
|
|
573
|
-
className="govgr-btn-primary govgr-btn"
|
|
574
|
-
printHidden={true}
|
|
575
|
-
type="submit"
|
|
576
|
-
>
|
|
577
|
-
<button
|
|
578
|
-
className="govgr-btn-primary govgr-btn govgr-print-hidden"
|
|
579
|
-
type="submit"
|
|
580
|
-
>
|
|
581
|
-
Συνέχεια
|
|
582
|
-
</button>
|
|
583
|
-
</ForwardRef(Base)>
|
|
584
|
-
</ForwardRef(Button)>
|
|
585
|
-
</form>
|
|
586
|
-
</ForwardRef(Base)>
|
|
587
|
-
</ForwardRef(Form)>
|
|
588
|
-
</ForwardRef(FormBase)>
|
|
589
|
-
</ForwardRef(FormBuilder)>
|
|
590
|
-
</StepForm>
|
|
591
|
-
</Step>
|
|
592
|
-
<Step
|
|
593
|
-
name="age"
|
|
594
|
-
/>
|
|
595
|
-
</Questions>
|
|
596
|
-
`;
|