@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.
Files changed (468) hide show
  1. package/Field/FieldBase.js +14 -31
  2. package/Field/FieldBaseContainer.js +19 -41
  3. package/Field/FieldConditional.js +14 -33
  4. package/Field/index.js +18 -45
  5. package/Field/package.json +6 -0
  6. package/Field/types.js +1 -5
  7. package/Field/utils.js +30 -63
  8. package/FieldArray/FieldArray.stories.js +5 -42
  9. package/FieldArray/__stories__/Default.js +11 -32
  10. package/FieldArray/__stories__/WithExactLength.js +11 -32
  11. package/FieldArray/index.js +19 -41
  12. package/FieldArray/package.json +6 -0
  13. package/FieldObject/index.js +16 -41
  14. package/FieldObject/package.json +6 -0
  15. package/Fieldset/FieldsetWithContext.js +13 -35
  16. package/Fieldset/index.js +21 -51
  17. package/Fieldset/package.json +6 -0
  18. package/Fieldset/types.js +1 -5
  19. package/Form.stories.js +2 -9
  20. package/FormBuilder/FormBuilder.js +33 -62
  21. package/FormBuilder/FormBuilder.stories.js +4 -28
  22. package/FormBuilder/__stories__/Default.js +8 -29
  23. package/FormBuilder/index.js +2 -11
  24. package/FormBuilder/package.json +6 -0
  25. package/FormContext.js +3 -12
  26. package/MultiplicityField/MultiplicityField.stories.js +9 -98
  27. package/MultiplicityField/__stories__/Default.js +11 -32
  28. package/MultiplicityField/__stories__/PreviewDisplay.js +29 -52
  29. package/MultiplicityField/__stories__/WithExactLength.js +11 -32
  30. package/MultiplicityField/__stories__/WithMaxLength.js +11 -32
  31. package/MultiplicityField/__stories__/WithMinAndMaxLength.js +11 -32
  32. package/MultiplicityField/__stories__/WithMinLength.js +11 -32
  33. package/MultiplicityField/add-objects.js +25 -49
  34. package/MultiplicityField/index.js +26 -55
  35. package/MultiplicityField/package.json +6 -0
  36. package/Questions/Questions.js +14 -35
  37. package/Questions/Questions.stories.js +4 -28
  38. package/Questions/QuestionsContext.js +3 -12
  39. package/Questions/Step/ReviewStep.js +21 -47
  40. package/Questions/Step/Step.js +18 -42
  41. package/Questions/Step/StepArrayReview.js +23 -52
  42. package/Questions/Step/StepContext.js +3 -13
  43. package/Questions/Step/StepDescription.js +14 -42
  44. package/Questions/Step/StepForm.js +19 -45
  45. package/Questions/Step/StepQuote.js +8 -23
  46. package/Questions/Step/StepTitle.js +17 -48
  47. package/Questions/Step/getAddMoreFields.js +2 -11
  48. package/Questions/Step/index.js +13 -170
  49. package/Questions/Step/package.json +6 -0
  50. package/Questions/Step/types.js +1 -5
  51. package/Questions/__stories__/Default.js +24 -51
  52. package/Questions/getNextStep.js +1 -8
  53. package/Questions/index.js +3 -25
  54. package/Questions/index.spec.js +12 -23
  55. package/Questions/package.json +6 -0
  56. package/Questions/types.js +1 -5
  57. package/{es → cjs}/Field/FieldBase.js +31 -14
  58. package/cjs/Field/FieldBaseContainer.js +65 -0
  59. package/cjs/Field/FieldConditional.js +81 -0
  60. package/cjs/Field/index.js +103 -0
  61. package/cjs/Field/types.js +5 -0
  62. package/{es → cjs}/Field/utils.js +63 -30
  63. package/cjs/FieldArray/FieldArray.stories.js +45 -0
  64. package/cjs/FieldArray/__stories__/Default.js +111 -0
  65. package/cjs/FieldArray/__stories__/WithExactLength.js +111 -0
  66. package/cjs/FieldArray/index.js +87 -0
  67. package/cjs/FieldObject/index.js +83 -0
  68. package/cjs/Fieldset/FieldsetWithContext.js +63 -0
  69. package/cjs/Fieldset/index.js +64 -0
  70. package/cjs/Fieldset/types.js +5 -0
  71. package/cjs/Form.stories.js +10 -0
  72. package/{esm → cjs}/FormBuilder/FormBuilder.js +62 -33
  73. package/cjs/FormBuilder/FormBuilder.stories.js +31 -0
  74. package/cjs/FormBuilder/__stories__/Default.js +49 -0
  75. package/cjs/FormBuilder/index.js +11 -0
  76. package/cjs/FormContext.js +14 -0
  77. package/cjs/MultiplicityField/MultiplicityField.stories.js +101 -0
  78. package/{es → cjs}/MultiplicityField/__stories__/Default.js +32 -11
  79. package/cjs/MultiplicityField/__stories__/PreviewDisplay.js +106 -0
  80. package/{esm → cjs}/MultiplicityField/__stories__/WithExactLength.js +32 -11
  81. package/{es → cjs}/MultiplicityField/__stories__/WithMaxLength.js +32 -11
  82. package/{es → cjs}/MultiplicityField/__stories__/WithMinAndMaxLength.js +32 -11
  83. package/{esm → cjs}/MultiplicityField/__stories__/WithMinLength.js +32 -11
  84. package/{esm → cjs}/MultiplicityField/add-objects.js +49 -25
  85. package/cjs/MultiplicityField/index.js +143 -0
  86. package/cjs/Questions/Questions.js +105 -0
  87. package/cjs/Questions/Questions.stories.js +31 -0
  88. package/cjs/Questions/QuestionsContext.js +20 -0
  89. package/cjs/Questions/Step/ReviewStep.js +79 -0
  90. package/cjs/Questions/Step/Step.js +93 -0
  91. package/cjs/Questions/Step/StepArrayReview.js +79 -0
  92. package/{esm → cjs}/Questions/Step/StepContext.js +13 -3
  93. package/cjs/Questions/Step/StepDescription.js +55 -0
  94. package/cjs/Questions/Step/StepForm.js +74 -0
  95. package/cjs/Questions/Step/StepQuote.js +26 -0
  96. package/cjs/Questions/Step/StepTitle.js +75 -0
  97. package/{es → cjs}/Questions/Step/getAddMoreFields.js +11 -2
  98. package/cjs/Questions/Step/index.js +170 -0
  99. package/cjs/Questions/Step/types.js +5 -0
  100. package/cjs/Questions/__stories__/Default.js +135 -0
  101. package/{es → cjs}/Questions/getNextStep.js +8 -1
  102. package/cjs/Questions/index.js +25 -0
  103. package/cjs/Questions/index.spec.js +73 -0
  104. package/cjs/Questions/types.js +5 -0
  105. package/cjs/index.js +28 -0
  106. package/cjs/inputs/AutoComplete/AutoComplete.stories.js +31 -0
  107. package/cjs/inputs/AutoComplete/__stories__/Default.js +71 -0
  108. package/cjs/inputs/AutoComplete/index.js +68 -0
  109. package/cjs/inputs/Checkboxes/Checkboxes.stories.js +59 -0
  110. package/{es → cjs}/inputs/Checkboxes/__stories__/Conditional.js +28 -8
  111. package/cjs/inputs/Checkboxes/__stories__/Default.js +62 -0
  112. package/cjs/inputs/Checkboxes/__stories__/WithDivider.js +63 -0
  113. package/cjs/inputs/Checkboxes/index.js +127 -0
  114. package/cjs/inputs/DateInput/DateInput.stories.js +31 -0
  115. package/cjs/inputs/DateInput/__stories__/Default.js +45 -0
  116. package/cjs/inputs/DateInput/index.js +181 -0
  117. package/cjs/inputs/FileInput/FileInput.stories.js +31 -0
  118. package/cjs/inputs/FileInput/__stories__/Default.js +42 -0
  119. package/cjs/inputs/FileInput/index.js +92 -0
  120. package/cjs/inputs/Input/Input.stories.js +143 -0
  121. package/cjs/inputs/Input/__stories__/AFM.js +44 -0
  122. package/cjs/inputs/Input/__stories__/Boolean.js +45 -0
  123. package/cjs/inputs/Input/__stories__/Default.js +45 -0
  124. package/cjs/inputs/Input/__stories__/IBAN.js +45 -0
  125. package/cjs/inputs/Input/__stories__/Integer.js +53 -0
  126. package/cjs/inputs/Input/__stories__/MobilePhone.js +44 -0
  127. package/cjs/inputs/Input/__stories__/PhoneNumber.js +44 -0
  128. package/cjs/inputs/Input/__stories__/PostalCode.js +47 -0
  129. package/cjs/inputs/Input/__stories__/TextWithCharacterLimit.js +51 -0
  130. package/cjs/inputs/Input/index.js +96 -0
  131. package/cjs/inputs/Label/Label.stories.js +31 -0
  132. package/cjs/inputs/Label/__stories__/Default.js +49 -0
  133. package/cjs/inputs/Label/index.js +41 -0
  134. package/cjs/inputs/OtpInput/OtpInput.stories.js +31 -0
  135. package/cjs/inputs/OtpInput/__stories__/Default.js +52 -0
  136. package/cjs/inputs/OtpInput/index.js +182 -0
  137. package/cjs/inputs/Radio/Radio.stories.js +59 -0
  138. package/{es → cjs}/inputs/Radio/__stories__/Conditional.js +28 -8
  139. package/cjs/inputs/Radio/__stories__/Default.js +67 -0
  140. package/cjs/inputs/Radio/__stories__/WithDivider.js +68 -0
  141. package/cjs/inputs/Radio/index.js +82 -0
  142. package/cjs/inputs/Select/Select.stories.js +31 -0
  143. package/cjs/inputs/Select/__stories__/Default.js +73 -0
  144. package/cjs/inputs/Select/index.js +49 -0
  145. package/cjs/inputs/index.js +71 -0
  146. package/cjs/internal.js +391 -0
  147. package/cjs/registry.js +208 -0
  148. package/cjs/types.js +5 -0
  149. package/{es → cjs}/utils.js +26 -12
  150. package/{es → cjs}/validators/index.js +54 -26
  151. package/cjs/validators/types.js +5 -0
  152. package/{es → cjs}/validators/utils/afm.js +13 -3
  153. package/{es → cjs}/validators/utils/file.js +12 -2
  154. package/{esm → cjs}/validators/utils/iban.js +13 -2
  155. package/cjs/validators/utils/index.js +229 -0
  156. package/{es → cjs}/validators/utils/int.js +14 -3
  157. package/cjs/validators/utils/number.js +27 -0
  158. package/{esm → cjs}/validators/utils/otp.js +14 -3
  159. package/{esm → cjs}/validators/utils/phone.js +28 -6
  160. package/{es → cjs}/validators/utils/postal_code.js +14 -3
  161. package/{esm → cjs}/validators/utils/text_limit.js +14 -3
  162. package/{es → cjs}/validators/utils/uuid4.js +13 -3
  163. package/cjs/validators/validators.spec.js +88 -0
  164. package/index.js +8 -28
  165. package/inputs/AutoComplete/AutoComplete.stories.js +4 -28
  166. package/inputs/AutoComplete/__stories__/Default.js +13 -35
  167. package/inputs/AutoComplete/index.js +12 -35
  168. package/inputs/AutoComplete/package.json +6 -0
  169. package/inputs/Checkboxes/Checkboxes.stories.js +6 -56
  170. package/inputs/Checkboxes/__stories__/Conditional.js +8 -28
  171. package/inputs/Checkboxes/__stories__/Default.js +8 -28
  172. package/inputs/Checkboxes/__stories__/WithDivider.js +8 -28
  173. package/inputs/Checkboxes/index.js +25 -52
  174. package/inputs/Checkboxes/package.json +6 -0
  175. package/inputs/DateInput/DateInput.stories.js +4 -28
  176. package/inputs/DateInput/__stories__/Default.js +8 -28
  177. package/inputs/DateInput/index.js +26 -52
  178. package/inputs/DateInput/package.json +6 -0
  179. package/inputs/FileInput/FileInput.stories.js +4 -28
  180. package/inputs/FileInput/__stories__/Default.js +8 -28
  181. package/inputs/FileInput/index.js +22 -52
  182. package/inputs/FileInput/package.json +6 -0
  183. package/inputs/Input/Input.stories.js +12 -140
  184. package/inputs/Input/__stories__/AFM.js +8 -28
  185. package/inputs/Input/__stories__/Boolean.js +8 -28
  186. package/inputs/Input/__stories__/Default.js +8 -28
  187. package/inputs/Input/__stories__/IBAN.js +8 -28
  188. package/inputs/Input/__stories__/Integer.js +9 -29
  189. package/inputs/Input/__stories__/MobilePhone.js +8 -28
  190. package/inputs/Input/__stories__/PhoneNumber.js +8 -28
  191. package/inputs/Input/__stories__/PostalCode.js +8 -28
  192. package/inputs/Input/__stories__/TextWithCharacterLimit.js +8 -28
  193. package/inputs/Input/index.js +19 -40
  194. package/inputs/Input/package.json +6 -0
  195. package/inputs/Label/Label.stories.js +4 -28
  196. package/inputs/Label/__stories__/Default.js +9 -29
  197. package/inputs/Label/index.js +9 -25
  198. package/inputs/Label/package.json +6 -0
  199. package/inputs/OtpInput/OtpInput.stories.js +4 -28
  200. package/inputs/OtpInput/__stories__/Default.js +9 -30
  201. package/inputs/OtpInput/index.js +28 -53
  202. package/inputs/OtpInput/package.json +6 -0
  203. package/inputs/Radio/Radio.stories.js +6 -56
  204. package/inputs/Radio/__stories__/Conditional.js +8 -28
  205. package/inputs/Radio/__stories__/Default.js +8 -28
  206. package/inputs/Radio/__stories__/WithDivider.js +8 -28
  207. package/inputs/Radio/index.js +24 -45
  208. package/inputs/Radio/package.json +6 -0
  209. package/inputs/Select/Select.stories.js +4 -28
  210. package/inputs/Select/__stories__/Default.js +8 -28
  211. package/inputs/Select/index.js +12 -29
  212. package/inputs/Select/package.json +6 -0
  213. package/inputs/index.js +8 -71
  214. package/inputs/package.json +6 -0
  215. package/internal.js +34 -391
  216. package/package.json +6 -6
  217. package/registry.js +61 -133
  218. package/types.js +1 -5
  219. package/utils.js +12 -26
  220. package/validators/index.js +26 -54
  221. package/validators/package.json +6 -0
  222. package/validators/types.js +1 -5
  223. package/validators/utils/afm.js +3 -13
  224. package/validators/utils/file.js +2 -12
  225. package/validators/utils/iban.js +2 -13
  226. package/validators/utils/index.js +12 -139
  227. package/validators/utils/int.js +3 -14
  228. package/validators/utils/number.js +3 -14
  229. package/validators/utils/otp.js +3 -14
  230. package/validators/utils/package.json +6 -0
  231. package/validators/utils/phone.js +6 -28
  232. package/validators/utils/postal_code.js +3 -14
  233. package/validators/utils/text_limit.js +3 -14
  234. package/validators/utils/uuid4.js +3 -13
  235. package/validators/validators.spec.js +29 -32
  236. package/es/Field/FieldBaseContainer.js +0 -43
  237. package/es/Field/FieldConditional.js +0 -62
  238. package/es/Field/index.js +0 -76
  239. package/es/Field/types.js +0 -1
  240. package/es/FieldArray/FieldArray.stories.js +0 -8
  241. package/es/FieldArray/__stories__/Default.js +0 -90
  242. package/es/FieldArray/__stories__/WithExactLength.js +0 -90
  243. package/es/FieldArray/index.js +0 -65
  244. package/es/FieldObject/index.js +0 -58
  245. package/es/Fieldset/FieldsetWithContext.js +0 -41
  246. package/es/Fieldset/index.js +0 -34
  247. package/es/Fieldset/types.js +0 -1
  248. package/es/Form.stories.js +0 -3
  249. package/es/FormBuilder/FormBuilder.js +0 -160
  250. package/es/FormBuilder/FormBuilder.stories.js +0 -7
  251. package/es/FormBuilder/__stories__/Default.js +0 -28
  252. package/es/FormBuilder/index.js +0 -2
  253. package/es/FormContext.js +0 -5
  254. package/es/MultiplicityField/MultiplicityField.stories.js +0 -12
  255. package/es/MultiplicityField/__stories__/PreviewDisplay.js +0 -83
  256. package/es/MultiplicityField/__stories__/WithExactLength.js +0 -92
  257. package/es/MultiplicityField/__stories__/WithMinLength.js +0 -95
  258. package/es/MultiplicityField/add-objects.js +0 -160
  259. package/es/MultiplicityField/index.js +0 -114
  260. package/es/Questions/Questions.js +0 -84
  261. package/es/Questions/Questions.stories.js +0 -7
  262. package/es/Questions/QuestionsContext.js +0 -11
  263. package/es/Questions/Step/ReviewStep.js +0 -53
  264. package/es/Questions/Step/Step.js +0 -69
  265. package/es/Questions/Step/StepArrayReview.js +0 -50
  266. package/es/Questions/Step/StepContext.js +0 -27
  267. package/es/Questions/Step/StepDescription.js +0 -27
  268. package/es/Questions/Step/StepForm.js +0 -48
  269. package/es/Questions/Step/StepQuote.js +0 -11
  270. package/es/Questions/Step/StepTitle.js +0 -44
  271. package/es/Questions/Step/index.js +0 -13
  272. package/es/Questions/Step/types.js +0 -1
  273. package/es/Questions/__stories__/Default.js +0 -108
  274. package/es/Questions/index.js +0 -3
  275. package/es/Questions/index.spec.js +0 -62
  276. package/es/Questions/types.js +0 -1
  277. package/es/index.js +0 -3
  278. package/es/inputs/AutoComplete/AutoComplete.stories.js +0 -7
  279. package/es/inputs/AutoComplete/__stories__/Default.js +0 -49
  280. package/es/inputs/AutoComplete/index.js +0 -45
  281. package/es/inputs/Checkboxes/Checkboxes.stories.js +0 -9
  282. package/es/inputs/Checkboxes/__stories__/Default.js +0 -42
  283. package/es/inputs/Checkboxes/__stories__/WithDivider.js +0 -43
  284. package/es/inputs/Checkboxes/index.js +0 -100
  285. package/es/inputs/DateInput/DateInput.stories.js +0 -7
  286. package/es/inputs/DateInput/__stories__/Default.js +0 -25
  287. package/es/inputs/DateInput/index.js +0 -155
  288. package/es/inputs/FileInput/FileInput.stories.js +0 -7
  289. package/es/inputs/FileInput/__stories__/Default.js +0 -22
  290. package/es/inputs/FileInput/index.js +0 -62
  291. package/es/inputs/Input/Input.stories.js +0 -15
  292. package/es/inputs/Input/__stories__/AFM.js +0 -24
  293. package/es/inputs/Input/__stories__/Boolean.js +0 -25
  294. package/es/inputs/Input/__stories__/Default.js +0 -25
  295. package/es/inputs/Input/__stories__/IBAN.js +0 -25
  296. package/es/inputs/Input/__stories__/Integer.js +0 -33
  297. package/es/inputs/Input/__stories__/MobilePhone.js +0 -24
  298. package/es/inputs/Input/__stories__/PhoneNumber.js +0 -24
  299. package/es/inputs/Input/__stories__/PostalCode.js +0 -27
  300. package/es/inputs/Input/__stories__/TextWithCharacterLimit.js +0 -31
  301. package/es/inputs/Input/index.js +0 -75
  302. package/es/inputs/Label/Label.stories.js +0 -7
  303. package/es/inputs/Label/__stories__/Default.js +0 -29
  304. package/es/inputs/Label/index.js +0 -25
  305. package/es/inputs/OtpInput/OtpInput.stories.js +0 -7
  306. package/es/inputs/OtpInput/__stories__/Default.js +0 -31
  307. package/es/inputs/OtpInput/index.js +0 -157
  308. package/es/inputs/Radio/Radio.stories.js +0 -9
  309. package/es/inputs/Radio/__stories__/Default.js +0 -47
  310. package/es/inputs/Radio/__stories__/WithDivider.js +0 -48
  311. package/es/inputs/Radio/index.js +0 -61
  312. package/es/inputs/Select/Select.stories.js +0 -7
  313. package/es/inputs/Select/__stories__/Default.js +0 -53
  314. package/es/inputs/Select/index.js +0 -32
  315. package/es/inputs/index.js +0 -8
  316. package/es/internal.js +0 -34
  317. package/es/registry.js +0 -136
  318. package/es/types.js +0 -1
  319. package/es/validators/types.js +0 -1
  320. package/es/validators/utils/iban.js +0 -123
  321. package/es/validators/utils/index.js +0 -102
  322. package/es/validators/utils/number.js +0 -16
  323. package/es/validators/utils/otp.js +0 -26
  324. package/es/validators/utils/phone.js +0 -122
  325. package/es/validators/utils/text_limit.js +0 -54
  326. package/es/validators/validators.spec.js +0 -85
  327. package/esm/Field/FieldBase.js +0 -84
  328. package/esm/Field/FieldBaseContainer.js +0 -43
  329. package/esm/Field/FieldConditional.js +0 -62
  330. package/esm/Field/index.js +0 -76
  331. package/esm/Field/index.mdx +0 -6
  332. package/esm/Field/types.js +0 -1
  333. package/esm/Field/utils.js +0 -162
  334. package/esm/FieldArray/FieldArray.stories.js +0 -8
  335. package/esm/FieldArray/FieldArray.stories.playwright.json +0 -353
  336. package/esm/FieldArray/__stories__/Default.js +0 -90
  337. package/esm/FieldArray/__stories__/WithExactLength.js +0 -90
  338. package/esm/FieldArray/index.js +0 -65
  339. package/esm/FieldObject/index.js +0 -58
  340. package/esm/Fieldset/FieldsetWithContext.js +0 -41
  341. package/esm/Fieldset/index.js +0 -34
  342. package/esm/Fieldset/types.js +0 -1
  343. package/esm/Form.stories.js +0 -3
  344. package/esm/FormBuilder/FormBuilder.mdx +0 -256
  345. package/esm/FormBuilder/FormBuilder.stories.js +0 -7
  346. package/esm/FormBuilder/FormBuilder.stories.playwright.json +0 -52
  347. package/esm/FormBuilder/__stories__/Default.js +0 -28
  348. package/esm/FormBuilder/index.js +0 -2
  349. package/esm/FormContext.js +0 -5
  350. package/esm/MultiplicityField/MultiplicityField.mdx +0 -590
  351. package/esm/MultiplicityField/MultiplicityField.stories.js +0 -12
  352. package/esm/MultiplicityField/MultiplicityField.stories.playwright.json +0 -1370
  353. package/esm/MultiplicityField/__stories__/Default.js +0 -97
  354. package/esm/MultiplicityField/__stories__/PreviewDisplay.js +0 -83
  355. package/esm/MultiplicityField/__stories__/WithMaxLength.js +0 -95
  356. package/esm/MultiplicityField/__stories__/WithMinAndMaxLength.js +0 -96
  357. package/esm/MultiplicityField/index.js +0 -114
  358. package/esm/Questions/Questions.js +0 -84
  359. package/esm/Questions/Questions.stories.js +0 -7
  360. package/esm/Questions/QuestionsContext.js +0 -11
  361. package/esm/Questions/Step/ReviewStep.js +0 -53
  362. package/esm/Questions/Step/Step.js +0 -69
  363. package/esm/Questions/Step/StepArrayReview.js +0 -50
  364. package/esm/Questions/Step/StepDescription.js +0 -27
  365. package/esm/Questions/Step/StepForm.js +0 -48
  366. package/esm/Questions/Step/StepQuote.js +0 -11
  367. package/esm/Questions/Step/StepTitle.js +0 -44
  368. package/esm/Questions/Step/getAddMoreFields.js +0 -22
  369. package/esm/Questions/Step/index.js +0 -13
  370. package/esm/Questions/Step/types.js +0 -1
  371. package/esm/Questions/__snapshots__/index.spec.tsx.snap +0 -596
  372. package/esm/Questions/__stories__/Default.js +0 -108
  373. package/esm/Questions/getNextStep.js +0 -23
  374. package/esm/Questions/index.js +0 -3
  375. package/esm/Questions/index.mdx +0 -415
  376. package/esm/Questions/index.spec.js +0 -62
  377. package/esm/Questions/types.js +0 -1
  378. package/esm/create-simple-form.mdx +0 -539
  379. package/esm/index.js +0 -8
  380. package/esm/index.mdx +0 -51
  381. package/esm/inputs/AutoComplete/AutoComplete.stories.js +0 -7
  382. package/esm/inputs/AutoComplete/__stories__/Default.js +0 -49
  383. package/esm/inputs/AutoComplete/index.js +0 -45
  384. package/esm/inputs/Checkboxes/Checkboxes.stories.js +0 -9
  385. package/esm/inputs/Checkboxes/Checkboxes.stories.playwright.json +0 -85
  386. package/esm/inputs/Checkboxes/__stories__/Conditional.js +0 -95
  387. package/esm/inputs/Checkboxes/__stories__/Default.js +0 -42
  388. package/esm/inputs/Checkboxes/__stories__/WithDivider.js +0 -43
  389. package/esm/inputs/Checkboxes/index.js +0 -100
  390. package/esm/inputs/Checkboxes/index.mdx +0 -0
  391. package/esm/inputs/DateInput/DateInput.stories.js +0 -7
  392. package/esm/inputs/DateInput/DateInput.stories.playwright.json +0 -72
  393. package/esm/inputs/DateInput/__stories__/Default.js +0 -25
  394. package/esm/inputs/DateInput/index.js +0 -155
  395. package/esm/inputs/FileInput/FileInput.stories.js +0 -7
  396. package/esm/inputs/FileInput/FileInput.stories.playwright.json +0 -75
  397. package/esm/inputs/FileInput/__stories__/Default.js +0 -22
  398. package/esm/inputs/FileInput/index.js +0 -62
  399. package/esm/inputs/Input/Input.stories.js +0 -15
  400. package/esm/inputs/Input/Input.stories.playwright.json +0 -376
  401. package/esm/inputs/Input/__stories__/AFM.js +0 -24
  402. package/esm/inputs/Input/__stories__/Boolean.js +0 -25
  403. package/esm/inputs/Input/__stories__/Default.js +0 -25
  404. package/esm/inputs/Input/__stories__/IBAN.js +0 -25
  405. package/esm/inputs/Input/__stories__/Integer.js +0 -33
  406. package/esm/inputs/Input/__stories__/MobilePhone.js +0 -24
  407. package/esm/inputs/Input/__stories__/PhoneNumber.js +0 -24
  408. package/esm/inputs/Input/__stories__/PostalCode.js +0 -27
  409. package/esm/inputs/Input/__stories__/TextWithCharacterLimit.js +0 -31
  410. package/esm/inputs/Input/index.js +0 -75
  411. package/esm/inputs/Input/index.mdx +0 -8
  412. package/esm/inputs/Label/Label.stories.js +0 -7
  413. package/esm/inputs/Label/Label.stories.playwright.json +0 -40
  414. package/esm/inputs/Label/__stories__/Default.js +0 -29
  415. package/esm/inputs/Label/index.js +0 -25
  416. package/esm/inputs/Label/index.mdx +0 -0
  417. package/esm/inputs/OtpInput/OtpInput.stories.js +0 -7
  418. package/esm/inputs/OtpInput/__stories__/Default.js +0 -31
  419. package/esm/inputs/OtpInput/index.js +0 -157
  420. package/esm/inputs/Radio/Radio.stories.js +0 -9
  421. package/esm/inputs/Radio/Radio.stories.playwright.json +0 -73
  422. package/esm/inputs/Radio/__stories__/Conditional.js +0 -95
  423. package/esm/inputs/Radio/__stories__/Default.js +0 -47
  424. package/esm/inputs/Radio/__stories__/WithDivider.js +0 -48
  425. package/esm/inputs/Radio/index.js +0 -61
  426. package/esm/inputs/Radio/index.mdx +0 -0
  427. package/esm/inputs/Select/Select.stories.js +0 -7
  428. package/esm/inputs/Select/Select.stories.playwright.json +0 -22
  429. package/esm/inputs/Select/__stories__/Default.js +0 -53
  430. package/esm/inputs/Select/index.js +0 -32
  431. package/esm/inputs/index.js +0 -8
  432. package/esm/installation.mdx +0 -68
  433. package/esm/internal.js +0 -34
  434. package/esm/registry.js +0 -136
  435. package/esm/types.js +0 -1
  436. package/esm/utils.js +0 -99
  437. package/esm/validators/index.js +0 -186
  438. package/esm/validators/types.js +0 -1
  439. package/esm/validators/utils/afm.js +0 -35
  440. package/esm/validators/utils/file.js +0 -52
  441. package/esm/validators/utils/index.js +0 -102
  442. package/esm/validators/utils/int.js +0 -20
  443. package/esm/validators/utils/number.js +0 -16
  444. package/esm/validators/utils/postal_code.js +0 -29
  445. package/esm/validators/utils/uuid4.js +0 -20
  446. package/esm/validators/validators.spec.js +0 -85
  447. /package/{es → cjs}/Field/index.mdx +0 -0
  448. /package/{es → cjs}/FieldArray/FieldArray.stories.playwright.json +0 -0
  449. /package/{es → cjs}/FormBuilder/FormBuilder.mdx +0 -0
  450. /package/{es → cjs}/FormBuilder/FormBuilder.stories.playwright.json +0 -0
  451. /package/{es → cjs}/MultiplicityField/MultiplicityField.mdx +0 -0
  452. /package/{es → cjs}/MultiplicityField/MultiplicityField.stories.playwright.json +0 -0
  453. /package/{es → cjs}/Questions/__snapshots__/index.spec.tsx.snap +0 -0
  454. /package/{es → cjs}/Questions/index.mdx +0 -0
  455. /package/{es → cjs}/create-simple-form.mdx +0 -0
  456. /package/{es → cjs}/index.mdx +0 -0
  457. /package/{es → cjs}/inputs/Checkboxes/Checkboxes.stories.playwright.json +0 -0
  458. /package/{es → cjs}/inputs/Checkboxes/index.mdx +0 -0
  459. /package/{es → cjs}/inputs/DateInput/DateInput.stories.playwright.json +0 -0
  460. /package/{es → cjs}/inputs/FileInput/FileInput.stories.playwright.json +0 -0
  461. /package/{es → cjs}/inputs/Input/Input.stories.playwright.json +0 -0
  462. /package/{es → cjs}/inputs/Input/index.mdx +0 -0
  463. /package/{es → cjs}/inputs/Label/Label.stories.playwright.json +0 -0
  464. /package/{es → cjs}/inputs/Label/index.mdx +0 -0
  465. /package/{es → cjs}/inputs/Radio/Radio.stories.playwright.json +0 -0
  466. /package/{es → cjs}/inputs/Radio/index.mdx +0 -0
  467. /package/{es → cjs}/inputs/Select/Select.stories.playwright.json +0 -0
  468. /package/{es → cjs}/installation.mdx +0 -0
@@ -1,143 +1,17 @@
1
- "use strict";
2
-
3
- var _typeof = require("@babel/runtime/helpers/typeof");
4
-
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- var _exportNames = {
9
- getYupField: true,
10
- computeShape: true,
11
- getYupObjectShape: true
12
- };
13
- exports.computeShape = computeShape;
14
- exports.getYupField = getYupField;
15
- exports.getYupObjectShape = getYupObjectShape;
16
-
17
- var yup = _interopRequireWildcard(require("yup"));
18
-
19
- var _afm = require("@digigov/form/validators/utils/afm");
20
-
21
- Object.keys(_afm).forEach(function (key) {
22
- if (key === "default" || key === "__esModule") return;
23
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
24
- if (key in exports && exports[key] === _afm[key]) return;
25
- Object.defineProperty(exports, key, {
26
- enumerable: true,
27
- get: function get() {
28
- return _afm[key];
29
- }
30
- });
31
- });
32
-
33
- var _file = require("@digigov/form/validators/utils/file");
34
-
35
- Object.keys(_file).forEach(function (key) {
36
- if (key === "default" || key === "__esModule") return;
37
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
38
- if (key in exports && exports[key] === _file[key]) return;
39
- Object.defineProperty(exports, key, {
40
- enumerable: true,
41
- get: function get() {
42
- return _file[key];
43
- }
44
- });
45
- });
46
-
47
- var _iban = require("@digigov/form/validators/utils/iban");
48
-
49
- Object.keys(_iban).forEach(function (key) {
50
- if (key === "default" || key === "__esModule") return;
51
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
52
- if (key in exports && exports[key] === _iban[key]) return;
53
- Object.defineProperty(exports, key, {
54
- enumerable: true,
55
- get: function get() {
56
- return _iban[key];
57
- }
58
- });
59
- });
60
-
61
- var _otp = require("@digigov/form/validators/utils/otp");
62
-
63
- Object.keys(_otp).forEach(function (key) {
64
- if (key === "default" || key === "__esModule") return;
65
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
66
- if (key in exports && exports[key] === _otp[key]) return;
67
- Object.defineProperty(exports, key, {
68
- enumerable: true,
69
- get: function get() {
70
- return _otp[key];
71
- }
72
- });
73
- });
74
-
75
- var _phone = require("@digigov/form/validators/utils/phone");
76
-
77
- Object.keys(_phone).forEach(function (key) {
78
- if (key === "default" || key === "__esModule") return;
79
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
80
- if (key in exports && exports[key] === _phone[key]) return;
81
- Object.defineProperty(exports, key, {
82
- enumerable: true,
83
- get: function get() {
84
- return _phone[key];
85
- }
86
- });
87
- });
88
-
89
- var _postal_code = require("@digigov/form/validators/utils/postal_code");
90
-
91
- Object.keys(_postal_code).forEach(function (key) {
92
- if (key === "default" || key === "__esModule") return;
93
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
94
- if (key in exports && exports[key] === _postal_code[key]) return;
95
- Object.defineProperty(exports, key, {
96
- enumerable: true,
97
- get: function get() {
98
- return _postal_code[key];
99
- }
100
- });
101
- });
102
-
103
- var _uuid = require("@digigov/form/validators/utils/uuid4");
104
-
105
- Object.keys(_uuid).forEach(function (key) {
106
- if (key === "default" || key === "__esModule") return;
107
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
108
- if (key in exports && exports[key] === _uuid[key]) return;
109
- Object.defineProperty(exports, key, {
110
- enumerable: true,
111
- get: function get() {
112
- return _uuid[key];
113
- }
114
- });
115
- });
116
-
117
- var _text_limit = require("@digigov/form/validators/utils/text_limit");
118
-
119
- Object.keys(_text_limit).forEach(function (key) {
120
- if (key === "default" || key === "__esModule") return;
121
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
122
- if (key in exports && exports[key] === _text_limit[key]) return;
123
- Object.defineProperty(exports, key, {
124
- enumerable: true,
125
- get: function get() {
126
- return _text_limit[key];
127
- }
128
- });
129
- });
130
-
131
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
132
-
133
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
134
-
135
- function getYupField(field, yupTypeMap) {
1
+ import * as yup from 'yup';
2
+ export * from "./afm";
3
+ export * from "./file";
4
+ export * from "./iban";
5
+ export * from "./otp";
6
+ export * from "./phone";
7
+ export * from "./postal_code";
8
+ export * from "./uuid4";
9
+ export * from "./text_limit";
10
+ export function getYupField(field, yupTypeMap) {
136
11
  var yupField = yupTypeMap[(field === null || field === void 0 ? void 0 : field.type) || 'string'] || yupTypeMap['string'];
137
12
  return yupField(field);
138
13
  }
139
-
140
- function computeShape(fields, yupTypeMap, validatorRegistry) {
14
+ export function computeShape(fields, yupTypeMap, validatorRegistry) {
141
15
  var fieldSchemas = {};
142
16
  var objectFields = {};
143
17
  fields.forEach(function (field) {
@@ -214,8 +88,7 @@ function computeShape(fields, yupTypeMap, validatorRegistry) {
214
88
 
215
89
  return fieldSchemas;
216
90
  }
217
-
218
- function getYupObjectShape( // eslint-disable-next-line @typescript-eslint/no-explicit-any
91
+ export function getYupObjectShape( // eslint-disable-next-line @typescript-eslint/no-explicit-any
219
92
  fields, yupTypeMap, validatorRegistry) {
220
93
  if (!fields.current) {
221
94
  var fieldSchemas = computeShape(fields, yupTypeMap, validatorRegistry);
@@ -1,20 +1,11 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.INT_VALIDATOR = void 0;
7
- exports.validateIntNumber = validateIntNumber;
8
-
9
- function validateIntNumber(number) {
1
+ export function validateIntNumber(number) {
10
2
  if (number === undefined) {
11
3
  return false;
12
4
  } else {
13
5
  return Number.isInteger(number) && Number(number) > 0;
14
6
  }
15
7
  }
16
-
17
- var INT_VALIDATOR = function INT_VALIDATOR() {
8
+ export var INT_VALIDATOR = function INT_VALIDATOR() {
18
9
  return {
19
10
  name: 'int-validator',
20
11
  message: 'form.error.positive_integer_number',
@@ -26,6 +17,4 @@ var INT_VALIDATOR = function INT_VALIDATOR() {
26
17
  return validateIntNumber(value);
27
18
  }
28
19
  };
29
- };
30
-
31
- exports.INT_VALIDATOR = INT_VALIDATOR;
20
+ };
@@ -1,16 +1,7 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.NUMBER_VALIDATOR = void 0;
7
- exports.validateNumber = validateNumber;
8
-
9
- function validateNumber(number) {
1
+ export function validateNumber(number) {
10
2
  return !Number.isNaN(number);
11
3
  }
12
-
13
- var NUMBER_VALIDATOR = function NUMBER_VALIDATOR() {
4
+ export var NUMBER_VALIDATOR = function NUMBER_VALIDATOR() {
14
5
  return {
15
6
  name: 'number-validator',
16
7
  message: 'form.error.number',
@@ -22,6 +13,4 @@ var NUMBER_VALIDATOR = function NUMBER_VALIDATOR() {
22
13
  return validateNumber(value);
23
14
  }
24
15
  };
25
- };
26
-
27
- exports.NUMBER_VALIDATOR = NUMBER_VALIDATOR;
16
+ };
@@ -1,20 +1,11 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.OTP_VALIDATOR = void 0;
7
- exports.validateOtp = validateOtp;
8
-
9
- function validateOtp(value, maxLength) {
1
+ export function validateOtp(value, maxLength) {
10
2
  if (value.length === maxLength) {
11
3
  return true;
12
4
  } else {
13
5
  return false;
14
6
  }
15
7
  }
16
-
17
- var OTP_VALIDATOR = function OTP_VALIDATOR(field) {
8
+ export var OTP_VALIDATOR = function OTP_VALIDATOR(field) {
18
9
  var maxLength = field === null || field === void 0 ? void 0 : field.maxLength;
19
10
  return {
20
11
  name: 'otp-validator',
@@ -32,6 +23,4 @@ var OTP_VALIDATOR = function OTP_VALIDATOR(field) {
32
23
  return validateOtp(value, maxLength);
33
24
  }
34
25
  };
35
- };
36
-
37
- exports.OTP_VALIDATOR = OTP_VALIDATOR;
26
+ };
@@ -0,0 +1,6 @@
1
+ {
2
+ "sideEffects": false,
3
+ "module": "./index.js",
4
+ "types": "./index.d.ts",
5
+ "main": "../../cjs/validators/utils/index.js"
6
+ }
@@ -1,21 +1,5 @@
1
- "use strict";
2
-
3
- var _typeof = require("@babel/runtime/helpers/typeof");
4
-
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.PHONE_NUMBER_VALIDATOR = exports.MOBILE_PHONE_VALIDATOR = void 0;
9
- exports.matchTypeOfPhoneNumber = matchTypeOfPhoneNumber;
10
- exports.validatePhoneNumber = validatePhoneNumber;
11
-
12
- var gPhoneNumber = _interopRequireWildcard(require("google-libphonenumber"));
13
-
14
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
15
-
16
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
17
-
18
- function validatePhoneNumber(phoneNumber) {
1
+ import * as gPhoneNumber from 'google-libphonenumber';
2
+ export function validatePhoneNumber(phoneNumber) {
19
3
  var countries = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ['gr'];
20
4
  var typeOfPhoneNumber = arguments.length > 2 ? arguments[2] : undefined;
21
5
  var phoneUtil = gPhoneNumber.PhoneNumberUtil.getInstance();
@@ -47,14 +31,12 @@ function validatePhoneNumber(phoneNumber) {
47
31
  }
48
32
  });
49
33
  }
50
-
51
34
  var phoneNumberTypes = {
52
35
  0: 'landline',
53
36
  1: 'mobile',
54
37
  2: 'landline_or_mobile'
55
38
  };
56
-
57
- function matchTypeOfPhoneNumber(phone, type, phoneUtil) {
39
+ export function matchTypeOfPhoneNumber(phone, type, phoneUtil) {
58
40
  try {
59
41
  var phoneNumberType = phoneUtil.getNumberType(phone);
60
42
  var numberType = phoneNumberTypes[phoneNumberType];
@@ -100,7 +82,7 @@ function validateMobile(value) {
100
82
  }
101
83
  }
102
84
 
103
- var MOBILE_PHONE_VALIDATOR = {
85
+ export var MOBILE_PHONE_VALIDATOR = {
104
86
  name: 'mobile-phone-validator',
105
87
  message: 'form.error.mobile_phone',
106
88
  test: function test(value) {
@@ -111,9 +93,7 @@ var MOBILE_PHONE_VALIDATOR = {
111
93
  return true;
112
94
  }
113
95
  };
114
- exports.MOBILE_PHONE_VALIDATOR = MOBILE_PHONE_VALIDATOR;
115
-
116
- var PHONE_NUMBER_VALIDATOR = function PHONE_NUMBER_VALIDATOR(field) {
96
+ export var PHONE_NUMBER_VALIDATOR = function PHONE_NUMBER_VALIDATOR(field) {
117
97
  var _field$extra, _field$extra2;
118
98
 
119
99
  var countryCode = field === null || field === void 0 ? void 0 : (_field$extra = field.extra) === null || _field$extra === void 0 ? void 0 : _field$extra.countries;
@@ -139,6 +119,4 @@ var PHONE_NUMBER_VALIDATOR = function PHONE_NUMBER_VALIDATOR(field) {
139
119
  return validatePhoneNumber(value, countryCode, typeOfPhone);
140
120
  }
141
121
  };
142
- };
143
-
144
- exports.PHONE_NUMBER_VALIDATOR = PHONE_NUMBER_VALIDATOR;
122
+ };
@@ -1,13 +1,5 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.POSTALCODE_VALIDATOR = void 0;
7
- exports.validatePostalCode = validatePostalCode;
8
1
  var CODE_REGEX = /^[12345678][0-9]{4}$/;
9
-
10
- function validatePostalCode(number, countries) {
2
+ export function validatePostalCode(number, countries) {
11
3
  if (!countries) {
12
4
  return false;
13
5
  } else {
@@ -19,8 +11,7 @@ function validatePostalCode(number, countries) {
19
11
  }
20
12
  }
21
13
  }
22
-
23
- var POSTALCODE_VALIDATOR = function POSTALCODE_VALIDATOR(field) {
14
+ export var POSTALCODE_VALIDATOR = function POSTALCODE_VALIDATOR(field) {
24
15
  var _field$extra;
25
16
 
26
17
  var countryCode = field === null || field === void 0 ? void 0 : (_field$extra = field.extra) === null || _field$extra === void 0 ? void 0 : _field$extra.countries;
@@ -35,6 +26,4 @@ var POSTALCODE_VALIDATOR = function POSTALCODE_VALIDATOR(field) {
35
26
  return validatePostalCode(value, countryCode);
36
27
  }
37
28
  };
38
- };
39
-
40
- exports.POSTALCODE_VALIDATOR = POSTALCODE_VALIDATOR;
29
+ };
@@ -1,12 +1,4 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.TEXT_LIMIT_VALIDATOR = void 0;
7
- exports.validateText = validateText;
8
-
9
- function validateText(value, min, max) {
1
+ export function validateText(value, min, max) {
10
2
  var validator;
11
3
 
12
4
  if (min || max) {
@@ -19,8 +11,7 @@ function validateText(value, min, max) {
19
11
 
20
12
  return validator;
21
13
  }
22
-
23
- var TEXT_LIMIT_VALIDATOR = function TEXT_LIMIT_VALIDATOR(field) {
14
+ export var TEXT_LIMIT_VALIDATOR = function TEXT_LIMIT_VALIDATOR(field) {
24
15
  var _field$extra, _field$extra$limit, _field$extra2, _field$extra2$limit;
25
16
 
26
17
  var min = field === null || field === void 0 ? void 0 : (_field$extra = field.extra) === null || _field$extra === void 0 ? void 0 : (_field$extra$limit = _field$extra.limit) === null || _field$extra$limit === void 0 ? void 0 : _field$extra$limit.min;
@@ -60,6 +51,4 @@ var TEXT_LIMIT_VALIDATOR = function TEXT_LIMIT_VALIDATOR(field) {
60
51
  return validateText(value, min, max);
61
52
  }
62
53
  };
63
- };
64
-
65
- exports.TEXT_LIMIT_VALIDATOR = TEXT_LIMIT_VALIDATOR;
54
+ };
@@ -1,13 +1,5 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.UUID4_VALIDATOR = void 0;
7
- exports.validateUUID4 = validateUUID4;
8
1
  var UUID4_PATTERN = /^[0-9A-F]{8}-[0-9A-F]{4}-[4][0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i;
9
-
10
- function validateUUID4(uuid4) {
2
+ export function validateUUID4(uuid4) {
11
3
  if (uuid4.length !== 36) {
12
4
  // This uuid4 should be 36 characters long
13
5
  return false;
@@ -15,8 +7,7 @@ function validateUUID4(uuid4) {
15
7
 
16
8
  return UUID4_PATTERN.test(uuid4);
17
9
  }
18
-
19
- var UUID4_VALIDATOR = {
10
+ export var UUID4_VALIDATOR = {
20
11
  name: 'uuid4-validator',
21
12
  message: 'form.error.uuid4',
22
13
  test: function test(value) {
@@ -26,5 +17,4 @@ var UUID4_VALIDATOR = {
26
17
 
27
18
  return true;
28
19
  }
29
- };
30
- exports.UUID4_VALIDATOR = UUID4_VALIDATOR;
20
+ };
@@ -1,88 +1,85 @@
1
- "use strict";
2
-
3
- var _utils = require("@digigov/form/validators/utils");
4
-
1
+ import { validateUUID4, validateIban, validatePostalCode, validatePhoneNumber } from "./utils";
5
2
  it('validates wrong uuid4 for empty value', function () {
6
- expect((0, _utils.validateUUID4)('')).toBe(false);
3
+ expect(validateUUID4('')).toBe(false);
7
4
  });
8
5
  it('validates wrong uuid4 because of length', function () {
9
- expect((0, _utils.validateUUID4)('9e463bc44a294bab8ee23af6cc3cbbe3')).toBe(false);
6
+ expect(validateUUID4('9e463bc44a294bab8ee23af6cc3cbbe3')).toBe(false);
10
7
  });
11
8
  it('validates wrong uuid4 with correct length and wrong form', function () {
12
- expect((0, _utils.validateUUID4)('ab123cd1-1234-ad34-ad45-12345abcdefg')).toBe(false);
9
+ expect(validateUUID4('ab123cd1-1234-ad34-ad45-12345abcdefg')).toBe(false);
13
10
  });
14
11
  it('validates correct uuid4 validator', function () {
15
- expect((0, _utils.validateUUID4)('9e463bc4-4a29-4bab-8ee2-3af6cc3cbbe3')).toBe(true);
12
+ expect(validateUUID4('9e463bc4-4a29-4bab-8ee2-3af6cc3cbbe3')).toBe(true);
16
13
  });
17
14
  it('validates correct gr iban', function () {
18
- expect((0, _utils.validateIban)('GR7801100800000008009825202', 'GR')).toBe(true);
15
+ expect(validateIban('GR7801100800000008009825202', 'GR')).toBe(true);
19
16
  });
20
17
  it('validates correct iban with spaces and dashes', function () {
21
- expect((0, _utils.validateIban)('GR 7801-1008 0000-0008 0098-25202', 'GR')).toBe(true);
18
+ expect(validateIban('GR 7801-1008 0000-0008 0098-25202', 'GR')).toBe(true);
22
19
  });
23
20
  it('validates correct foreign iban', function () {
24
- expect((0, _utils.validateIban)('DE75512108001245126199', 'DE')).toBe(true);
21
+ expect(validateIban('DE75512108001245126199', 'DE')).toBe(true);
25
22
  });
26
23
  it('validates wrong iban for empty value', function () {
27
- expect((0, _utils.validateIban)('', '')).toBe(false);
24
+ expect(validateIban('', '')).toBe(false);
28
25
  });
29
26
  it('validates wrong greek iban for wrong length', function () {
30
- expect((0, _utils.validateIban)('GR78011008000000080098252020', 'gr')).toBe(false);
27
+ expect(validateIban('GR78011008000000080098252020', 'gr')).toBe(false);
31
28
  });
32
29
  it('validates wrong iban for non existing country code', function () {
33
- expect((0, _utils.validateIban)('AAA78011008000000080098252020', 'aaa')).toBe(false);
30
+ expect(validateIban('AAA78011008000000080098252020', 'aaa')).toBe(false);
34
31
  });
35
32
  it('validates correct greek iban whithout country code', function () {
36
- expect((0, _utils.validateIban)('7801100800000008009825202', '')).toBe(true);
33
+ expect(validateIban('7801100800000008009825202', '')).toBe(true);
37
34
  });
38
35
  it('validates wrong postal code without country code', function () {
39
- expect((0, _utils.validatePostalCode)('123', [])).toBe(true);
36
+ expect(validatePostalCode('123', [])).toBe(true);
40
37
  });
41
38
  it('validates wrong postal code with wrong country code', function () {
42
- expect((0, _utils.validatePostalCode)('123', ['FR'])).toBe(true);
39
+ expect(validatePostalCode('123', ['FR'])).toBe(true);
43
40
  });
44
41
  it('validates wrong postal code with greek country code', function () {
45
- expect((0, _utils.validatePostalCode)('123', ['GR'])).toBe(false);
42
+ expect(validatePostalCode('123', ['GR'])).toBe(false);
46
43
  });
47
44
  it('validates postal code with greek country code', function () {
48
- expect((0, _utils.validatePostalCode)('11143', ['GR'])).toBe(true);
45
+ expect(validatePostalCode('11143', ['GR'])).toBe(true);
49
46
  });
50
47
  it('validates phone number type landline with greek country code', function () {
51
- expect((0, _utils.validatePhoneNumber)('2102934896', ['GR'], 'landline')).toBe(true);
48
+ expect(validatePhoneNumber('2102934896', ['GR'], 'landline')).toBe(true);
52
49
  });
53
50
  it('validates phone number type landline with ch country code', function () {
54
- expect((0, _utils.validatePhoneNumber)('2102934896', ['CH'], 'landline')).toBe(false);
51
+ expect(validatePhoneNumber('2102934896', ['CH'], 'landline')).toBe(false);
55
52
  });
56
53
  it('validates phone number type landline with ch and gr countries code', function () {
57
- expect((0, _utils.validatePhoneNumber)('2102934896', ['GR', 'CH'], 'landline')).toBe(true);
54
+ expect(validatePhoneNumber('2102934896', ['GR', 'CH'], 'landline')).toBe(true);
58
55
  });
59
56
  it('validatesphone number type landline with ch and gr countries code', function () {
60
- expect((0, _utils.validatePhoneNumber)('41446681800', ['GR', 'CH'], 'landline')).toBe(true);
57
+ expect(validatePhoneNumber('41446681800', ['GR', 'CH'], 'landline')).toBe(true);
61
58
  });
62
59
  it('validates phone number type landline with ch and gr countries code but phone number is mobile', function () {
63
- expect((0, _utils.validatePhoneNumber)('2102934896', ['GR', 'CH'], 'mobile')).toBe(false);
60
+ expect(validatePhoneNumber('2102934896', ['GR', 'CH'], 'mobile')).toBe(false);
64
61
  });
65
62
  it('validates phone number type mobile with ch and gr countries code', function () {
66
- expect((0, _utils.validatePhoneNumber)('6934100982', ['GR', 'CH'], 'mobile')).toBe(true);
63
+ expect(validatePhoneNumber('6934100982', ['GR', 'CH'], 'mobile')).toBe(true);
67
64
  });
68
65
  it('validates phone number type mobile with gr country code', function () {
69
- expect((0, _utils.validatePhoneNumber)('6934100982', ['GR'], 'mobile')).toBe(true);
66
+ expect(validatePhoneNumber('6934100982', ['GR'], 'mobile')).toBe(true);
70
67
  });
71
68
  it('validates phone number type mobile with ch country code', function () {
72
- expect((0, _utils.validatePhoneNumber)('6934100982', ['CH'], 'mobile')).toBe(false);
69
+ expect(validatePhoneNumber('6934100982', ['CH'], 'mobile')).toBe(false);
73
70
  });
74
71
  it('validates phone number with no type and ch country code', function () {
75
- expect((0, _utils.validatePhoneNumber)('6934100982', ['CH'], null)).toBe(false);
72
+ expect(validatePhoneNumber('6934100982', ['CH'], null)).toBe(false);
76
73
  });
77
74
  it('validates phone number with no type and gr country code', function () {
78
- expect((0, _utils.validatePhoneNumber)('6934100982', ['gr'], null)).toBe(true);
75
+ expect(validatePhoneNumber('6934100982', ['gr'], null)).toBe(true);
79
76
  });
80
77
  it('validates phone number with no type and ch country code', function () {
81
- expect((0, _utils.validatePhoneNumber)('41446681800', ['CH'], null)).toBe(true);
78
+ expect(validatePhoneNumber('41446681800', ['CH'], null)).toBe(true);
82
79
  });
83
80
  it('validates phone number with no type and gr country code', function () {
84
- expect((0, _utils.validatePhoneNumber)('41446681800', ['gr'], null)).toBe(false);
81
+ expect(validatePhoneNumber('41446681800', ['gr'], null)).toBe(false);
85
82
  });
86
83
  it('validates phone number with no type and gr and ch countries code', function () {
87
- expect((0, _utils.validatePhoneNumber)('41446681800', ['gr', 'ch'], null)).toBe(true);
84
+ expect(validatePhoneNumber('41446681800', ['gr', 'ch'], null)).toBe(true);
88
85
  });
@@ -1,43 +0,0 @@
1
- import _extends from "@babel/runtime/helpers/extends";
2
- import React from 'react';
3
- import Label from '@digigov/form/inputs/Label';
4
- import ErrorMessage from '@digigov/react-core/ErrorMessage';
5
- import FieldContainer from '@digigov/react-core/FieldContainer';
6
- import CoreFieldset from '@digigov/react-core/Fieldset';
7
- import FieldsetLegend from '@digigov/react-core/FieldsetLegend';
8
- import Hint from '@digigov/react-core/Hint';
9
- import LabelContainer from '@digigov/react-core/LabelContainer';
10
- import { useTranslation } from '@digigov/ui/i18n';
11
- export var FieldBaseContainer = function FieldBaseContainer(_ref) {
12
- var name = _ref.name,
13
- wrapper = _ref.wrapper,
14
- label = _ref.label,
15
- children = _ref.children,
16
- error = _ref.error,
17
- layout = _ref.layout;
18
-
19
- var _useTranslation = useTranslation(),
20
- t = _useTranslation.t;
21
-
22
- var errorMessage = error !== null && error !== void 0 && error.message.key ? error.message.key : (error === null || error === void 0 ? void 0 : error.message) || '';
23
- var errorContext = (error === null || error === void 0 ? void 0 : error.message.context) || {};
24
-
25
- if (wrapper === 'fieldset') {
26
- return /*#__PURE__*/React.createElement(FieldContainer, _extends({
27
- error: !!error
28
- }, layout), /*#__PURE__*/React.createElement(CoreFieldset, null, /*#__PURE__*/React.createElement(FieldsetLegend, {
29
- size: "sm"
30
- }, label && label.primary), label && label.secondary && /*#__PURE__*/React.createElement(Hint, null, t(label.secondary)), error && /*#__PURE__*/React.createElement(ErrorMessage, {
31
- id: "".concat(name, "-error")
32
- }, t(errorMessage, errorContext)), children));
33
- } else {
34
- return /*#__PURE__*/React.createElement(FieldContainer, _extends({
35
- error: !!error
36
- }, layout), /*#__PURE__*/React.createElement(LabelContainer, null, label && /*#__PURE__*/React.createElement(Label, {
37
- label: label
38
- }), error && /*#__PURE__*/React.createElement(ErrorMessage, {
39
- id: "".concat(name, "-error")
40
- }, t(errorMessage, errorContext)), children));
41
- }
42
- };
43
- export default FieldBaseContainer;
@@ -1,62 +0,0 @@
1
- import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- import _extends from "@babel/runtime/helpers/extends";
3
- import React from 'react';
4
- import { useWatch } from 'react-hook-form';
5
- import { FieldBase } from '@digigov/form/Field/FieldBase';
6
- import { evaluateFieldWithConditions } from '@digigov/form/Field/utils';
7
- var ChildFieldMemo = /*#__PURE__*/React.memo(function ChildField(_ref) {
8
- var dependencies = _ref.dependencies,
9
- field = _ref.field,
10
- control = _ref.control,
11
- reset = _ref.reset,
12
- register = _ref.register,
13
- error = _ref.error;
14
- var newField = evaluateFieldWithConditions(field, dependencies);
15
- return /*#__PURE__*/React.createElement(FieldBase, _extends({}, newField, {
16
- name: newField.key,
17
- reset: reset,
18
- control: control,
19
- register: register,
20
- error: error
21
- }));
22
- }, function (prev, next) {
23
- if (!prev || !prev.dependencies) {
24
- return false;
25
- }
26
-
27
- if (prev.error !== next.error) {
28
- return false;
29
- }
30
-
31
- for (var dep in next.dependencies) {
32
- if (next.dependencies[dep] !== prev.dependencies[dep]) {
33
- return false;
34
- }
35
- }
36
-
37
- return true;
38
- });
39
- export var FieldConditional = function FieldConditional(_ref2) {
40
- var control = _ref2.control,
41
- field = _ref2.field,
42
- register = _ref2.register,
43
- reset = _ref2.reset,
44
- error = _ref2.error;
45
- var dependencyKeys = Object.keys(field.condition);
46
- var dependencyValues = useWatch({
47
- name: dependencyKeys,
48
- control: control
49
- });
50
- var variables = dependencyKeys.reduce(function (data, fieldKey, index) {
51
- return _extends({}, data, _defineProperty({}, fieldKey, dependencyValues[index]));
52
- }, {});
53
- return /*#__PURE__*/React.createElement(ChildFieldMemo, {
54
- dependencies: variables,
55
- field: field,
56
- control: control,
57
- register: register,
58
- reset: reset,
59
- error: error
60
- });
61
- };
62
- export default FieldConditional;