@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,24 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import FormBuilder, { Field } from '@digigov/form';
|
|
3
|
-
import { Button } from '@digigov/ui/form/Button';
|
|
4
|
-
|
|
5
|
-
var _ref = /*#__PURE__*/React.createElement(Button, {
|
|
6
|
-
type: "submit"
|
|
7
|
-
}, "\u03A3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1");
|
|
8
|
-
|
|
9
|
-
export var MobilePhone = function MobilePhone() {
|
|
10
|
-
return /*#__PURE__*/React.createElement(FormBuilder, {
|
|
11
|
-
onSubmit: function onSubmit(data) {
|
|
12
|
-
console.log(data);
|
|
13
|
-
}
|
|
14
|
-
}, /*#__PURE__*/React.createElement(Field, {
|
|
15
|
-
key: "mobile-phone",
|
|
16
|
-
name: "mobile-phone",
|
|
17
|
-
type: "mobile_phone",
|
|
18
|
-
label: {
|
|
19
|
-
primary: 'Κινητό τηλέφωνο'
|
|
20
|
-
},
|
|
21
|
-
required: true
|
|
22
|
-
}), _ref);
|
|
23
|
-
};
|
|
24
|
-
export default MobilePhone;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import FormBuilder, { Field } from '@digigov/form';
|
|
3
|
-
import { Button } from '@digigov/ui/form/Button';
|
|
4
|
-
|
|
5
|
-
var _ref = /*#__PURE__*/React.createElement(Button, {
|
|
6
|
-
type: "submit"
|
|
7
|
-
}, "\u03A3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1");
|
|
8
|
-
|
|
9
|
-
export var PhoneNumber = function PhoneNumber() {
|
|
10
|
-
return /*#__PURE__*/React.createElement(FormBuilder, {
|
|
11
|
-
onSubmit: function onSubmit(data) {
|
|
12
|
-
console.log(data);
|
|
13
|
-
}
|
|
14
|
-
}, /*#__PURE__*/React.createElement(Field, {
|
|
15
|
-
key: "phone-number",
|
|
16
|
-
name: "phone-number",
|
|
17
|
-
type: "phone_number",
|
|
18
|
-
label: {
|
|
19
|
-
primary: 'Σταθερό τηλέφωνο'
|
|
20
|
-
},
|
|
21
|
-
required: true
|
|
22
|
-
}), _ref);
|
|
23
|
-
};
|
|
24
|
-
export default PhoneNumber;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import FormBuilder, { Field } from '@digigov/form';
|
|
3
|
-
import { Button } from '@digigov/ui/form/Button';
|
|
4
|
-
|
|
5
|
-
var _ref = /*#__PURE__*/React.createElement(Button, {
|
|
6
|
-
type: "submit"
|
|
7
|
-
}, "\u03A3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1");
|
|
8
|
-
|
|
9
|
-
export var PostalCode = function PostalCode() {
|
|
10
|
-
return /*#__PURE__*/React.createElement(FormBuilder, {
|
|
11
|
-
onSubmit: function onSubmit(data) {
|
|
12
|
-
console.log(data);
|
|
13
|
-
}
|
|
14
|
-
}, /*#__PURE__*/React.createElement(Field, {
|
|
15
|
-
key: "postal-code",
|
|
16
|
-
name: "postal-code",
|
|
17
|
-
type: "postal_code",
|
|
18
|
-
label: {
|
|
19
|
-
primary: 'Ταχυδρομικός κωδικός'
|
|
20
|
-
},
|
|
21
|
-
required: true,
|
|
22
|
-
extra: {
|
|
23
|
-
countries: ['GR']
|
|
24
|
-
}
|
|
25
|
-
}), _ref);
|
|
26
|
-
};
|
|
27
|
-
export default PostalCode;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import FormBuilder, { Field } from '@digigov/form';
|
|
3
|
-
import { Button } from '@digigov/ui/form';
|
|
4
|
-
|
|
5
|
-
var _ref = /*#__PURE__*/React.createElement(Button, {
|
|
6
|
-
type: "submit"
|
|
7
|
-
}, "\u03A3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1");
|
|
8
|
-
|
|
9
|
-
export var TextWithCharacterLimit = function TextWithCharacterLimit() {
|
|
10
|
-
return /*#__PURE__*/React.createElement(FormBuilder, {
|
|
11
|
-
onSubmit: function onSubmit(data) {
|
|
12
|
-
console.log(data);
|
|
13
|
-
}
|
|
14
|
-
}, /*#__PURE__*/React.createElement(Field, {
|
|
15
|
-
key: "text",
|
|
16
|
-
name: "text",
|
|
17
|
-
type: "text",
|
|
18
|
-
label: {
|
|
19
|
-
primary: 'Μπορείτε να δώσετε περισσότερες πληροφορίες;'
|
|
20
|
-
},
|
|
21
|
-
required: true,
|
|
22
|
-
extra: {
|
|
23
|
-
limit: {
|
|
24
|
-
min: 3,
|
|
25
|
-
max: 10
|
|
26
|
-
},
|
|
27
|
-
multiline: true
|
|
28
|
-
}
|
|
29
|
-
}), _ref);
|
|
30
|
-
};
|
|
31
|
-
export default TextWithCharacterLimit;
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/extends";
|
|
2
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
3
|
-
var _excluded = ["name", "control", "type", "extra"];
|
|
4
|
-
import React from 'react';
|
|
5
|
-
import TextInput from '@digigov/react-core/TextInput';
|
|
6
|
-
import TextArea from '@digigov/react-core/TextArea';
|
|
7
|
-
import { Hint } from '@digigov/react-core';
|
|
8
|
-
import { useWatch } from 'react-hook-form';
|
|
9
|
-
import { useTranslation } from '@digigov/ui/i18n';
|
|
10
|
-
var TYPES_MAP = {
|
|
11
|
-
string: 'text',
|
|
12
|
-
"int": 'text',
|
|
13
|
-
text: 'text',
|
|
14
|
-
date: 'date'
|
|
15
|
-
};
|
|
16
|
-
export var Input = /*#__PURE__*/React.forwardRef(function WrappedInput(_ref, ref) {
|
|
17
|
-
var name = _ref.name,
|
|
18
|
-
control = _ref.control,
|
|
19
|
-
type = _ref.type,
|
|
20
|
-
extra = _ref.extra,
|
|
21
|
-
props = _objectWithoutProperties(_ref, _excluded);
|
|
22
|
-
|
|
23
|
-
// eslint-disable-next-line prefer-const
|
|
24
|
-
var _ref2 = extra || {},
|
|
25
|
-
_ref2$multiline = _ref2.multiline,
|
|
26
|
-
multiline = _ref2$multiline === void 0 ? false : _ref2$multiline,
|
|
27
|
-
rows = _ref2.rows,
|
|
28
|
-
limit = _ref2.limit;
|
|
29
|
-
|
|
30
|
-
var _ref3 = extra || {},
|
|
31
|
-
className = _ref3.className; // if enforced to multiline use true. Derive from type otherwise.
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
multiline = multiline === true || type === 'text'; // use explicit rows value if set. Derive from multiline otherwise.
|
|
35
|
-
|
|
36
|
-
rows = rows || (multiline ? 4 : 1); // translate dilosi type to HTML Input type
|
|
37
|
-
|
|
38
|
-
var fieldType = TYPES_MAP[type || 'text'] || 'text';
|
|
39
|
-
|
|
40
|
-
var _useTranslation = useTranslation(),
|
|
41
|
-
t = _useTranslation.t;
|
|
42
|
-
|
|
43
|
-
var currentValue = useWatch({
|
|
44
|
-
control: control,
|
|
45
|
-
name: name
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
if (multiline === true) {
|
|
49
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(TextArea, _extends({
|
|
50
|
-
name: name,
|
|
51
|
-
className: className,
|
|
52
|
-
rows: rows,
|
|
53
|
-
ref: ref
|
|
54
|
-
}, _extends({}, props, {
|
|
55
|
-
reset: undefined,
|
|
56
|
-
required: undefined,
|
|
57
|
-
type: fieldType
|
|
58
|
-
}))), (limit === null || limit === void 0 ? void 0 : limit.max) && /*#__PURE__*/React.createElement(Hint, null, currentValue === undefined || (currentValue === null || currentValue === void 0 ? void 0 : currentValue.length) >= 0 && (currentValue === null || currentValue === void 0 ? void 0 : currentValue.length) <= (limit === null || limit === void 0 ? void 0 : limit.max) ? /*#__PURE__*/React.createElement("span", null, t('form.info.text.you_have'), ' ', /*#__PURE__*/React.createElement("b", null, !currentValue ? limit.max : (limit === null || limit === void 0 ? void 0 : limit.max) - (currentValue === null || currentValue === void 0 ? void 0 : currentValue.length)), ' ', currentValue && (limit === null || limit === void 0 ? void 0 : limit.max) - (currentValue === null || currentValue === void 0 ? void 0 : currentValue.length) === 1 ? "".concat(t('form.info.text.character')) : "".concat(t('form.info.text.characters')), ' ', t('form.info.text.remaining'), ".") : /*#__PURE__*/React.createElement("span", {
|
|
59
|
-
style: {
|
|
60
|
-
color: '#b60202'
|
|
61
|
-
}
|
|
62
|
-
}, t('form.info.text.you_have'), ' ', /*#__PURE__*/React.createElement("b", null, currentValue && (currentValue === null || currentValue === void 0 ? void 0 : currentValue.length) - (limit === null || limit === void 0 ? void 0 : limit.max)), ' ', (currentValue === null || currentValue === void 0 ? void 0 : currentValue.length) - (limit === null || limit === void 0 ? void 0 : limit.max) === 1 ? "".concat(t('form.info.text.character')) : "".concat(t('form.info.text.characters')), ' ', t('form.info.text.too_many'), ".")));
|
|
63
|
-
} else {
|
|
64
|
-
return /*#__PURE__*/React.createElement(TextInput, _extends({
|
|
65
|
-
name: name,
|
|
66
|
-
type: fieldType,
|
|
67
|
-
className: className,
|
|
68
|
-
ref: ref
|
|
69
|
-
}, _extends({}, props, {
|
|
70
|
-
reset: undefined,
|
|
71
|
-
required: undefined
|
|
72
|
-
})));
|
|
73
|
-
}
|
|
74
|
-
});
|
|
75
|
-
export default Input;
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "4",
|
|
3
|
-
"stories": {
|
|
4
|
-
"digigov-form-inputs-label--default": {
|
|
5
|
-
"actionSets": [
|
|
6
|
-
{
|
|
7
|
-
"actions": [
|
|
8
|
-
{
|
|
9
|
-
"name": "click",
|
|
10
|
-
"args": {
|
|
11
|
-
"selector": "html>body>div:nth-child(5)>form>button"
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
],
|
|
15
|
-
"id": "ooEeQHqEWAfT",
|
|
16
|
-
"title": "Validation"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"actions": [
|
|
20
|
-
{
|
|
21
|
-
"name": "type",
|
|
22
|
-
"args": {
|
|
23
|
-
"selector": "html>body>div:nth-child(5)>form>div>label>input",
|
|
24
|
-
"text": "Hello"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"name": "click",
|
|
29
|
-
"args": {
|
|
30
|
-
"selector": "html>body>div:nth-child(5)>form>button"
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
|
-
"id": "q4WekeUxbs0v",
|
|
35
|
-
"title": "add text"
|
|
36
|
-
}
|
|
37
|
-
]
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import FormBuilder, { Field, Label } from '@digigov/form';
|
|
3
|
-
import { Button } from '@digigov/ui/form/Button';
|
|
4
|
-
|
|
5
|
-
var _ref = /*#__PURE__*/React.createElement(Button, {
|
|
6
|
-
type: "submit"
|
|
7
|
-
}, "\u03A3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1");
|
|
8
|
-
|
|
9
|
-
export var Default = function Default() {
|
|
10
|
-
return /*#__PURE__*/React.createElement(FormBuilder, {
|
|
11
|
-
onSubmit: function onSubmit(data) {
|
|
12
|
-
console.log(data);
|
|
13
|
-
}
|
|
14
|
-
}, /*#__PURE__*/React.createElement(Label, {
|
|
15
|
-
label: {
|
|
16
|
-
primary: 'Στοιχεία επιχείρησης',
|
|
17
|
-
secondary: 'Συμπληρώστε τα στοιχεία'
|
|
18
|
-
}
|
|
19
|
-
}), /*#__PURE__*/React.createElement(Field, {
|
|
20
|
-
key: "business-title",
|
|
21
|
-
name: "business-title",
|
|
22
|
-
type: "string",
|
|
23
|
-
label: {
|
|
24
|
-
primary: 'Όνομα επιχείρησης'
|
|
25
|
-
},
|
|
26
|
-
required: true
|
|
27
|
-
}), _ref);
|
|
28
|
-
};
|
|
29
|
-
export default Default;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import Hint from '@digigov/react-core/Hint';
|
|
3
|
-
import LabelTitle from '@digigov/react-core/LabelTitle';
|
|
4
|
-
import { useTranslation } from '@digigov/ui/i18n';
|
|
5
|
-
export var Label = function Label(_ref) {
|
|
6
|
-
var className = _ref.className,
|
|
7
|
-
label = _ref.label,
|
|
8
|
-
value = _ref.value;
|
|
9
|
-
|
|
10
|
-
var _useTranslation = useTranslation(),
|
|
11
|
-
t = _useTranslation.t;
|
|
12
|
-
|
|
13
|
-
if ((!label || label && !label.primary && !label.secondary) && !value) {
|
|
14
|
-
return null;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(LabelTitle, {
|
|
18
|
-
className: className,
|
|
19
|
-
size: "sm"
|
|
20
|
-
}, label && label.primary && t(label.primary) || value), label && label.secondary && /*#__PURE__*/React.createElement(Hint, null, t(label.secondary)));
|
|
21
|
-
};
|
|
22
|
-
Label.defaultProps = {
|
|
23
|
-
label: {}
|
|
24
|
-
};
|
|
25
|
-
export default Label;
|
|
File without changes
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import FormBuilder, { Field, Fieldset } from '@digigov/form';
|
|
3
|
-
import { Button } from '@digigov/ui/form/Button';
|
|
4
|
-
var FIELDS = [{
|
|
5
|
-
key: 'otp',
|
|
6
|
-
type: 'otp',
|
|
7
|
-
maxLength: 6,
|
|
8
|
-
required: true,
|
|
9
|
-
label: {
|
|
10
|
-
primary: 'Κωδικός Επιβεβαίωσης'
|
|
11
|
-
}
|
|
12
|
-
}];
|
|
13
|
-
|
|
14
|
-
var _ref = /*#__PURE__*/React.createElement(Button, {
|
|
15
|
-
type: "submit"
|
|
16
|
-
}, "\u03A3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1");
|
|
17
|
-
|
|
18
|
-
export var Default = function Default() {
|
|
19
|
-
return /*#__PURE__*/React.createElement(FormBuilder, {
|
|
20
|
-
fields: FIELDS,
|
|
21
|
-
onSubmit: function onSubmit(data) {
|
|
22
|
-
console.log(data);
|
|
23
|
-
}
|
|
24
|
-
}, /*#__PURE__*/React.createElement(Fieldset, null, FIELDS.map(function (field) {
|
|
25
|
-
return /*#__PURE__*/React.createElement(Field, {
|
|
26
|
-
key: field.key,
|
|
27
|
-
name: field.key
|
|
28
|
-
});
|
|
29
|
-
})), _ref);
|
|
30
|
-
};
|
|
31
|
-
export default Default;
|
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
2
|
-
import _extends from "@babel/runtime/helpers/extends";
|
|
3
|
-
import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
|
4
|
-
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
5
|
-
var _excluded = ["name", "maxLength"];
|
|
6
|
-
import React, { useState, useCallback } from 'react';
|
|
7
|
-
import SingleCharacterInputs, { SingleCharacterInput } from '@digigov/ui/form/SingleCharacterInputs';
|
|
8
|
-
export var RE_DIGIT = new RegExp(/^\d+$/);
|
|
9
|
-
export var REMOVE_SPACES = new RegExp(/\s+/g);
|
|
10
|
-
|
|
11
|
-
function useOtp(onChange, maxLength) {
|
|
12
|
-
var _useState = useState(Array(maxLength).fill('')),
|
|
13
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
14
|
-
otpValues = _useState2[0],
|
|
15
|
-
setOtpValues = _useState2[1];
|
|
16
|
-
|
|
17
|
-
var handleChange = useCallback(function (otp) {
|
|
18
|
-
setOtpValues(otp);
|
|
19
|
-
var otpValue = otp.join('');
|
|
20
|
-
onChange(otpValue);
|
|
21
|
-
}, [onChange]);
|
|
22
|
-
|
|
23
|
-
var setOtp = function setOtp(item, idx) {
|
|
24
|
-
var updatedOTPValues = _toConsumableArray(otpValues);
|
|
25
|
-
|
|
26
|
-
if (item.length === 1 || item.length === 0) {
|
|
27
|
-
updatedOTPValues[idx] = item[0] || '';
|
|
28
|
-
handleChange(updatedOTPValues);
|
|
29
|
-
} else if (item.length === maxLength) {
|
|
30
|
-
var valueArray = item.split('').slice(0, maxLength);
|
|
31
|
-
handleChange(valueArray);
|
|
32
|
-
}
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
var setSelectionRange = useCallback(function (target) {
|
|
36
|
-
return target.setSelectionRange(0, target.value.length);
|
|
37
|
-
}, []);
|
|
38
|
-
var focusToNextInput = useCallback(function (target) {
|
|
39
|
-
var nextElement = target.nextElementSibling;
|
|
40
|
-
|
|
41
|
-
if (nextElement) {
|
|
42
|
-
nextElement.focus();
|
|
43
|
-
}
|
|
44
|
-
}, []);
|
|
45
|
-
var focusToPrevInput = useCallback(function (target) {
|
|
46
|
-
var previousElement = target.previousElementSibling;
|
|
47
|
-
|
|
48
|
-
if (previousElement) {
|
|
49
|
-
previousElement.focus();
|
|
50
|
-
}
|
|
51
|
-
}, []);
|
|
52
|
-
var handleKeyDown = useCallback(function (e, idx) {
|
|
53
|
-
var key = e.key;
|
|
54
|
-
var target = e.target;
|
|
55
|
-
var targetValue = target.value;
|
|
56
|
-
setSelectionRange(target);
|
|
57
|
-
|
|
58
|
-
if (key === 'ArrowRight' || key === 'ArrowDown') {
|
|
59
|
-
e.preventDefault();
|
|
60
|
-
return focusToNextInput(target);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
if (key === 'ArrowLeft' || key === 'ArrowUp') {
|
|
64
|
-
e.preventDefault();
|
|
65
|
-
return focusToPrevInput(target);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
if (e.key === 'Backspace' || e.key === 'Delete') {
|
|
69
|
-
if (targetValue !== '') {
|
|
70
|
-
targetValue = '';
|
|
71
|
-
} else {
|
|
72
|
-
focusToPrevInput(target);
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
setOtp(targetValue, idx);
|
|
76
|
-
return e.preventDefault();
|
|
77
|
-
}
|
|
78
|
-
}, [setOtp, focusToPrevInput, focusToNextInput]);
|
|
79
|
-
var handleFocus = useCallback(function (e) {
|
|
80
|
-
var target = e.target;
|
|
81
|
-
setSelectionRange(target);
|
|
82
|
-
}, [setSelectionRange]);
|
|
83
|
-
var handleOtpChange = useCallback(function (e, idx) {
|
|
84
|
-
var target = e.target;
|
|
85
|
-
var targetValue = target.value;
|
|
86
|
-
var isTargetValueDigit = RE_DIGIT.test(targetValue); // We want to pass the empty string when the value is deleted
|
|
87
|
-
// emptry string replaces the deleted value
|
|
88
|
-
|
|
89
|
-
if (isTargetValueDigit || targetValue === '') {
|
|
90
|
-
setOtp(targetValue, idx);
|
|
91
|
-
|
|
92
|
-
if (target.value.length > 1) {
|
|
93
|
-
target.blur();
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
focusToNextInput(target);
|
|
97
|
-
}
|
|
98
|
-
}, [setOtp, handleKeyDown, handleFocus]);
|
|
99
|
-
var handlePaste = useCallback(function (e) {
|
|
100
|
-
e.preventDefault();
|
|
101
|
-
var pastedData = e.clipboardData.getData('text/plain').replace(REMOVE_SPACES, '');
|
|
102
|
-
|
|
103
|
-
if (pastedData) {
|
|
104
|
-
setOtp(pastedData, 0);
|
|
105
|
-
}
|
|
106
|
-
}, []);
|
|
107
|
-
return {
|
|
108
|
-
otpValues: otpValues,
|
|
109
|
-
handleOtpChange: handleOtpChange,
|
|
110
|
-
handleKeyDown: handleKeyDown,
|
|
111
|
-
handleFocus: handleFocus,
|
|
112
|
-
handlePaste: handlePaste
|
|
113
|
-
};
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
var SingleCharacterInputPart = function SingleCharacterInputPart(_ref) {
|
|
117
|
-
var props = _extends({}, _ref);
|
|
118
|
-
|
|
119
|
-
return /*#__PURE__*/React.createElement(SingleCharacterInput, props);
|
|
120
|
-
};
|
|
121
|
-
|
|
122
|
-
export var OtpInput = function OtpInput(_ref2) {
|
|
123
|
-
var name = _ref2.name,
|
|
124
|
-
_ref2$maxLength = _ref2.maxLength,
|
|
125
|
-
maxLength = _ref2$maxLength === void 0 ? 6 : _ref2$maxLength,
|
|
126
|
-
props = _objectWithoutProperties(_ref2, _excluded);
|
|
127
|
-
|
|
128
|
-
var otp = useOtp(props.onChange, maxLength);
|
|
129
|
-
return /*#__PURE__*/React.createElement(SingleCharacterInputs, null, otp.otpValues.map(function (digit, idx) {
|
|
130
|
-
return /*#__PURE__*/React.createElement(SingleCharacterInputPart, {
|
|
131
|
-
name: "".concat(name, "-").concat(idx),
|
|
132
|
-
type: "text",
|
|
133
|
-
key: idx,
|
|
134
|
-
autoComplete: "one-time-code",
|
|
135
|
-
pattern: "\\d{1}",
|
|
136
|
-
maxLength: maxLength,
|
|
137
|
-
value: digit,
|
|
138
|
-
disabled: props.disabled,
|
|
139
|
-
"aria-required": props['aria-required'],
|
|
140
|
-
onChange: function onChange(e) {
|
|
141
|
-
return otp.handleOtpChange(e, idx);
|
|
142
|
-
},
|
|
143
|
-
onInput: function onInput(e) {
|
|
144
|
-
if (e.target.value === digit) {
|
|
145
|
-
otp.handleOtpChange(e, idx);
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
onKeyDown: function onKeyDown(e) {
|
|
149
|
-
return otp.handleKeyDown(e, idx);
|
|
150
|
-
},
|
|
151
|
-
onFocus: otp.handleFocus,
|
|
152
|
-
onPaste: otp.handlePaste,
|
|
153
|
-
error: !digit ? props.error : false
|
|
154
|
-
});
|
|
155
|
-
}));
|
|
156
|
-
};
|
|
157
|
-
export default OtpInput;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import Radio from '@digigov/form/inputs/Radio';
|
|
2
|
-
export default {
|
|
3
|
-
title: 'Digigov Form/inputs/Radio',
|
|
4
|
-
component: Radio,
|
|
5
|
-
displayName: 'Radio'
|
|
6
|
-
};
|
|
7
|
-
export * from '@digigov/form/inputs/Radio/__stories__/Default';
|
|
8
|
-
export * from '@digigov/form/inputs/Radio/__stories__/WithDivider';
|
|
9
|
-
export * from '@digigov/form/inputs/Radio/__stories__/Conditional';
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "4",
|
|
3
|
-
"stories": {
|
|
4
|
-
"digigov-form-inputs-radio--default": {
|
|
5
|
-
"actionSets": [
|
|
6
|
-
{
|
|
7
|
-
"actions": [
|
|
8
|
-
{
|
|
9
|
-
"name": "click",
|
|
10
|
-
"args": {
|
|
11
|
-
"selector": "html>body>div:nth-child(5)>form>button"
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
],
|
|
15
|
-
"id": "keMAaO2G4EzT",
|
|
16
|
-
"title": "validation error"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"actions": [
|
|
20
|
-
{
|
|
21
|
-
"name": "keyboard.press",
|
|
22
|
-
"args": {
|
|
23
|
-
"key": "Tab"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"name": "keyboard.press",
|
|
28
|
-
"args": {
|
|
29
|
-
"key": "ArrowDown"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "keyboard.press",
|
|
34
|
-
"args": {
|
|
35
|
-
"key": "ArrowDown"
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"name": "keyboard.press",
|
|
40
|
-
"args": {
|
|
41
|
-
"key": "Tab"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"name": "keyboard.press",
|
|
46
|
-
"args": {
|
|
47
|
-
"key": "Enter"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
],
|
|
51
|
-
"id": "KOjNMdAt5T_R",
|
|
52
|
-
"title": "select option with keyboard and submit"
|
|
53
|
-
}
|
|
54
|
-
]
|
|
55
|
-
},
|
|
56
|
-
"digigov-form-inputs-radio--conditional": {
|
|
57
|
-
"actionSets": [
|
|
58
|
-
{
|
|
59
|
-
"actions": [
|
|
60
|
-
{
|
|
61
|
-
"name": "click",
|
|
62
|
-
"args": {
|
|
63
|
-
"selector": "html>body>div:nth-child(5)>form>div>fieldset>div>div:nth-child(1)>div>label>input"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
],
|
|
67
|
-
"id": "LAUEuHh58XiI",
|
|
68
|
-
"title": "Radio conditional action"
|
|
69
|
-
}
|
|
70
|
-
]
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import FormBuilder, { Field } from '@digigov/form';
|
|
3
|
-
import { Button } from '@digigov/ui/form/Button';
|
|
4
|
-
var fields = [{
|
|
5
|
-
key: 'landline',
|
|
6
|
-
type: 'phone_number',
|
|
7
|
-
label: {
|
|
8
|
-
secondary: 'Εισάγετε το νούμερο του σταθερού σας τηλεφώνου.'
|
|
9
|
-
},
|
|
10
|
-
enabled: false,
|
|
11
|
-
condition: {
|
|
12
|
-
auth_form: {
|
|
13
|
-
is: 'via_mobile_phone',
|
|
14
|
-
then: {
|
|
15
|
-
enabled: true,
|
|
16
|
-
required: true
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
}, {
|
|
21
|
-
key: 'mobile_phone',
|
|
22
|
-
type: 'mobile_phone',
|
|
23
|
-
label: {
|
|
24
|
-
secondary: 'Εισάγετε το νούμερο του κινητού σας τηλεφώνου.'
|
|
25
|
-
},
|
|
26
|
-
enabled: false,
|
|
27
|
-
condition: {
|
|
28
|
-
auth_form: {
|
|
29
|
-
is: 'via_mobile_phone',
|
|
30
|
-
then: {
|
|
31
|
-
enabled: true,
|
|
32
|
-
required: true
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}, {
|
|
37
|
-
key: 'email',
|
|
38
|
-
type: 'email',
|
|
39
|
-
label: {
|
|
40
|
-
secondary: 'Εισάγετε την διεύθυνση του ηλεκτρονικού σας ταχυδρομείου.'
|
|
41
|
-
},
|
|
42
|
-
enabled: false,
|
|
43
|
-
condition: {
|
|
44
|
-
auth_form: {
|
|
45
|
-
is: 'via_email',
|
|
46
|
-
then: {
|
|
47
|
-
enabled: true,
|
|
48
|
-
required: true
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}, {
|
|
53
|
-
key: 'auth_form',
|
|
54
|
-
type: 'choice:single',
|
|
55
|
-
required: true,
|
|
56
|
-
label: {
|
|
57
|
-
primary: 'Επιλέξτε μέθοδο πιστοποίησης',
|
|
58
|
-
secondary: 'Για την ολοκλήρωση της δήλωσης σας, θα χρειαστεί επιπλέον πιστοποίηση. Θα σας στείλουμε ένα κωδικό μιας χρήσης είτε στο τηλέφωνο είτε στην ηλεκτρονική σας διεύθυνση.'
|
|
59
|
-
},
|
|
60
|
-
extra: {
|
|
61
|
-
options: [{
|
|
62
|
-
key: 'via_mobile_phone',
|
|
63
|
-
label: {
|
|
64
|
-
primary: 'Mέσω κινητού τηλεφώνου'
|
|
65
|
-
},
|
|
66
|
-
value: 'via_mobile_phone',
|
|
67
|
-
show: ['mobile_phone', 'landline']
|
|
68
|
-
}, {
|
|
69
|
-
key: 'via_email',
|
|
70
|
-
label: {
|
|
71
|
-
primary: 'Μέσω διεύθυνσης ηλεκτρονικού ταχυδρομείου (e-mail)'
|
|
72
|
-
},
|
|
73
|
-
value: 'via_email',
|
|
74
|
-
show: ['email']
|
|
75
|
-
}]
|
|
76
|
-
}
|
|
77
|
-
}];
|
|
78
|
-
|
|
79
|
-
var _ref = /*#__PURE__*/React.createElement(Field, {
|
|
80
|
-
key: "auth_form",
|
|
81
|
-
name: "auth_form"
|
|
82
|
-
});
|
|
83
|
-
|
|
84
|
-
var _ref2 = /*#__PURE__*/React.createElement(Button, {
|
|
85
|
-
type: "submit"
|
|
86
|
-
}, "\u03A3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1");
|
|
87
|
-
|
|
88
|
-
export var Conditional = function Conditional() {
|
|
89
|
-
return /*#__PURE__*/React.createElement(FormBuilder, {
|
|
90
|
-
onSubmit: function onSubmit(data) {
|
|
91
|
-
console.log(data);
|
|
92
|
-
},
|
|
93
|
-
fields: fields
|
|
94
|
-
}, _ref, _ref2);
|
|
95
|
-
};
|