@digigov/form 0.6.9 → 0.7.1

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 (307) hide show
  1. package/CHANGELOG.md +24 -1
  2. package/Field/FieldBase.js +110 -0
  3. package/Field/{ConditionalField.js → FieldConditional.js} +9 -29
  4. package/Field/FieldContainer.js +62 -0
  5. package/Field/index.js +11 -251
  6. package/Field/types.js +5 -0
  7. package/Field/utils.js +146 -0
  8. package/Fieldset/FieldsetWithContext.js +63 -0
  9. package/Fieldset/index.js +4 -63
  10. package/Fieldset/types.js +5 -0
  11. package/FormBuilder.js +178 -0
  12. package/FormContext.js +14 -0
  13. package/Questions/Questions.js +105 -0
  14. package/Questions/QuestionsContext.js +20 -0
  15. package/Questions/Step/ReviewStep.js +11 -7
  16. package/Questions/Step/Step.js +93 -0
  17. package/Questions/Step/StepArrayReview.js +79 -0
  18. package/Questions/Step/StepContext.js +37 -0
  19. package/Questions/Step/StepDescription.js +2 -2
  20. package/Questions/Step/StepForm.js +10 -6
  21. package/Questions/Step/StepTitle.js +2 -2
  22. package/Questions/Step/getAddMoreFields.js +31 -0
  23. package/Questions/Step/index.js +81 -200
  24. package/Questions/Step/types.js +5 -0
  25. package/Questions/__snapshots__/index.spec.tsx.snap +461 -2499
  26. package/Questions/getNextStep.js +30 -0
  27. package/Questions/index.js +4 -150
  28. package/Questions/types.js +5 -0
  29. package/es/Field/FieldBase.js +93 -0
  30. package/es/Field/{ConditionalField.js → FieldConditional.js} +5 -28
  31. package/es/Field/FieldContainer.js +40 -0
  32. package/es/Field/index.js +8 -233
  33. package/es/Field/types.js +1 -0
  34. package/es/Field/utils.js +122 -0
  35. package/es/Fieldset/FieldsetWithContext.js +41 -0
  36. package/es/Fieldset/index.js +3 -51
  37. package/es/Fieldset/types.js +1 -0
  38. package/es/FormBuilder.js +148 -0
  39. package/es/FormContext.js +5 -0
  40. package/es/Questions/Questions.js +84 -0
  41. package/es/Questions/QuestionsContext.js +11 -0
  42. package/es/Questions/Step/ReviewStep.js +5 -3
  43. package/es/Questions/Step/Step.js +69 -0
  44. package/es/Questions/Step/StepArrayReview.js +50 -0
  45. package/es/Questions/Step/StepContext.js +27 -0
  46. package/es/Questions/Step/StepDescription.js +1 -1
  47. package/es/Questions/Step/StepForm.js +4 -2
  48. package/es/Questions/Step/StepTitle.js +1 -1
  49. package/es/Questions/Step/getAddMoreFields.js +22 -0
  50. package/es/Questions/Step/index.js +13 -165
  51. package/es/Questions/Step/types.js +1 -0
  52. package/es/Questions/__snapshots__/index.spec.tsx.snap +461 -2499
  53. package/es/Questions/getNextStep.js +23 -0
  54. package/es/Questions/index.js +2 -119
  55. package/es/Questions/index.spec.js +2 -1
  56. package/es/Questions/types.js +1 -0
  57. package/es/index.js +2 -153
  58. package/es/inputs/index.js +5 -4
  59. package/es/internal.js +31 -0
  60. package/es/types.js +1 -0
  61. package/es/utils.js +5 -3
  62. package/es/validators/index.js +155 -0
  63. package/es/validators/types.js +1 -0
  64. package/es/validators/utils/afm.js +35 -0
  65. package/es/validators/utils/file.js +52 -0
  66. package/es/validators/utils/iban.js +123 -0
  67. package/es/validators/utils/index.js +105 -0
  68. package/es/validators/utils/phone.js +122 -0
  69. package/es/validators/utils/postal_code.js +29 -0
  70. package/es/validators/utils/uuid4.js +20 -0
  71. package/{esm → es/validators}/validators.spec.js +1 -1
  72. package/esm/Field/FieldBase.js +93 -0
  73. package/esm/Field/{ConditionalField.js → FieldConditional.js} +5 -28
  74. package/esm/Field/FieldContainer.js +40 -0
  75. package/esm/Field/index.js +8 -233
  76. package/esm/Field/types.js +1 -0
  77. package/esm/Field/utils.js +122 -0
  78. package/esm/Fieldset/FieldsetWithContext.js +41 -0
  79. package/esm/Fieldset/index.js +3 -51
  80. package/esm/Fieldset/types.js +1 -0
  81. package/esm/FormBuilder.js +148 -0
  82. package/esm/FormContext.js +5 -0
  83. package/esm/Questions/Questions.js +84 -0
  84. package/esm/Questions/QuestionsContext.js +11 -0
  85. package/esm/Questions/Step/ReviewStep.js +5 -3
  86. package/esm/Questions/Step/Step.js +69 -0
  87. package/esm/Questions/Step/StepArrayReview.js +50 -0
  88. package/esm/Questions/Step/StepContext.js +27 -0
  89. package/esm/Questions/Step/StepDescription.js +1 -1
  90. package/esm/Questions/Step/StepForm.js +4 -2
  91. package/esm/Questions/Step/StepTitle.js +1 -1
  92. package/esm/Questions/Step/getAddMoreFields.js +22 -0
  93. package/esm/Questions/Step/index.js +13 -165
  94. package/esm/Questions/Step/types.js +1 -0
  95. package/esm/Questions/__snapshots__/index.spec.tsx.snap +461 -2499
  96. package/esm/Questions/getNextStep.js +23 -0
  97. package/esm/Questions/index.js +2 -119
  98. package/esm/Questions/index.spec.js +2 -1
  99. package/esm/Questions/types.js +1 -0
  100. package/esm/index.js +3 -154
  101. package/esm/inputs/index.js +5 -4
  102. package/esm/internal.js +31 -0
  103. package/esm/types.js +1 -0
  104. package/esm/utils.js +5 -3
  105. package/esm/validators/index.js +155 -0
  106. package/esm/validators/types.js +1 -0
  107. package/esm/validators/utils/afm.js +35 -0
  108. package/esm/validators/utils/file.js +52 -0
  109. package/esm/validators/utils/iban.js +123 -0
  110. package/esm/validators/utils/index.js +105 -0
  111. package/esm/validators/utils/phone.js +122 -0
  112. package/esm/validators/utils/postal_code.js +29 -0
  113. package/esm/validators/utils/uuid4.js +20 -0
  114. package/{es → esm/validators}/validators.spec.js +1 -1
  115. package/index.js +8 -191
  116. package/inputs/index.js +13 -5
  117. package/internal.js +356 -0
  118. package/libs/form/src/Field/FieldBase.d.ts +3 -0
  119. package/libs/form/src/Field/FieldConditional.d.ts +4 -0
  120. package/libs/form/src/Field/FieldContainer.d.ts +4 -0
  121. package/libs/form/src/Field/index.d.ts +1 -62
  122. package/libs/form/src/Field/types.d.ts +75 -0
  123. package/libs/form/src/Field/utils.d.ts +5 -0
  124. package/libs/form/src/Fieldset/FieldsetWithContext.d.ts +4 -0
  125. package/libs/form/src/Fieldset/index.d.ts +2 -12
  126. package/libs/form/src/Fieldset/types.d.ts +6 -0
  127. package/libs/form/src/FormBuilder.d.ts +5 -0
  128. package/libs/form/src/FormContext.d.ts +3 -0
  129. package/libs/form/src/Questions/Questions.d.ts +8 -0
  130. package/libs/form/src/Questions/QuestionsContext.d.ts +3 -0
  131. package/libs/form/src/Questions/Step/ReviewStep.d.ts +1 -0
  132. package/libs/form/src/Questions/Step/Step.d.ts +9 -0
  133. package/libs/form/src/Questions/Step/StepArrayReview.d.ts +4 -0
  134. package/libs/form/src/Questions/Step/StepContext.d.ts +4 -0
  135. package/libs/form/src/Questions/Step/StepForm.d.ts +2 -1
  136. package/libs/form/src/Questions/Step/getAddMoreFields.d.ts +3 -0
  137. package/libs/form/src/Questions/Step/index.d.ts +12 -47
  138. package/libs/form/src/Questions/Step/types.d.ts +31 -0
  139. package/libs/form/src/Questions/getNextStep.d.ts +2 -0
  140. package/libs/form/src/Questions/index.d.ts +1 -28
  141. package/libs/form/src/Questions/types.d.ts +19 -0
  142. package/libs/form/src/index.d.ts +2 -73
  143. package/libs/form/src/inputs/Checkboxes/index.d.ts +1 -1
  144. package/libs/form/src/inputs/DateInput/index.d.ts +1 -2
  145. package/libs/form/src/inputs/FileInput/index.d.ts +1 -1
  146. package/libs/form/src/inputs/Input/index.d.ts +1 -1
  147. package/libs/form/src/inputs/Label/index.d.ts +2 -1
  148. package/libs/form/src/inputs/Radio/index.d.ts +1 -1
  149. package/libs/form/src/inputs/Select/index.d.ts +1 -1
  150. package/libs/form/src/inputs/index.d.ts +4 -3
  151. package/libs/form/src/internal.d.ts +31 -0
  152. package/libs/form/src/types.d.ts +70 -0
  153. package/libs/form/src/validators/index.d.ts +8 -0
  154. package/libs/form/src/validators/types.d.ts +2 -0
  155. package/libs/form/src/validators/utils/afm.d.ts +6 -0
  156. package/libs/form/src/validators/utils/file.d.ts +1 -0
  157. package/libs/form/src/validators/utils/iban.d.ts +2 -0
  158. package/libs/form/src/validators/utils/index.d.ts +12 -0
  159. package/libs/form/src/validators/utils/phone.d.ts +9 -0
  160. package/libs/form/src/validators/utils/postal_code.d.ts +2 -0
  161. package/libs/form/src/validators/utils/uuid4.d.ts +6 -0
  162. package/libs/form/src/{validators.spec.d.ts → validators/validators.spec.d.ts} +0 -0
  163. package/libs/ui/src/core/Accordion/index.d.ts +3 -3
  164. package/libs/ui/src/core/Base/index.d.ts +3 -0
  165. package/libs/ui/src/core/Blockquote/index.d.ts +1 -1
  166. package/libs/ui/src/core/Button/BackButton.d.ts +1 -1
  167. package/libs/ui/src/core/Button/ButtonLink.d.ts +1 -1
  168. package/libs/ui/src/core/Button/index.d.ts +1 -1
  169. package/libs/ui/src/core/Divider/index.d.ts +1 -1
  170. package/libs/ui/src/core/Form/index.d.ts +3 -0
  171. package/libs/ui/src/core/Label/index.d.ts +4 -0
  172. package/libs/ui/src/core/Link/index.d.ts +1 -0
  173. package/libs/ui/src/core/NavList/NavHorizontal.d.ts +3 -0
  174. package/libs/ui/src/core/NavList/NavHorizontalList.d.ts +3 -0
  175. package/libs/ui/src/core/NavList/NavHorizontalListItem.d.ts +3 -0
  176. package/libs/ui/src/core/NavList/NavList.d.ts +1 -14
  177. package/libs/ui/src/core/NavList/NavListBase.d.ts +4 -0
  178. package/libs/ui/src/core/NavList/NavListItem.d.ts +1 -0
  179. package/libs/ui/src/core/NavList/NavListItemBase.d.ts +2 -1
  180. package/libs/ui/src/core/NavList/NavListSubMenu.d.ts +1 -1
  181. package/libs/ui/src/core/NavList/NavVertical.d.ts +3 -0
  182. package/libs/ui/src/core/NavList/NavVerticalItem.d.ts +3 -0
  183. package/libs/ui/src/core/NavList/index.d.ts +5 -0
  184. package/libs/ui/src/core/NavList/types.d.ts +14 -0
  185. package/libs/ui/src/core/SkipLink/index.d.ts +3 -0
  186. package/libs/ui/src/core/SvgIcon/index.d.ts +1 -0
  187. package/libs/ui/src/core/Table/TableFloatingScroll.d.ts +2 -0
  188. package/libs/ui/src/core/Table/index.d.ts +1 -0
  189. package/libs/ui/src/core/index.d.ts +4 -0
  190. package/libs/ui/src/layouts/Grid/index.d.ts +1 -0
  191. package/libs/ui/src/typography/Caption/index.d.ts +3 -2
  192. package/libs/ui/src/typography/Title/index.d.ts +2 -1
  193. package/libs-ui/react-core/src/Accordion/index.d.ts +3 -3
  194. package/libs-ui/react-core/src/AccordionControls/index.d.ts +3 -3
  195. package/libs-ui/react-core/src/AccordionSection/index.d.ts +3 -3
  196. package/libs-ui/react-core/src/AccordionSectionContent/index.d.ts +3 -3
  197. package/libs-ui/react-core/src/AccordionSectionHeader/index.d.ts +3 -3
  198. package/libs-ui/react-core/src/AccordionSectionSummary/index.d.ts +4 -3
  199. package/libs-ui/react-core/src/AccordionSectionSummaryHeading/index.d.ts +3 -3
  200. package/libs-ui/react-core/src/BackLink/index.d.ts +3 -3
  201. package/libs-ui/react-core/src/Base/index.d.ts +43 -0
  202. package/libs-ui/react-core/src/Blockquote/index.d.ts +3 -3
  203. package/libs-ui/react-core/src/Breadcrumbs/index.d.ts +3 -3
  204. package/libs-ui/react-core/src/BreadcrumbsList/index.d.ts +3 -3
  205. package/libs-ui/react-core/src/BreadcrumbsListItem/index.d.ts +3 -3
  206. package/libs-ui/react-core/src/Button/index.d.ts +3 -3
  207. package/libs-ui/react-core/src/ButtonGroup/index.d.ts +3 -3
  208. package/libs-ui/react-core/src/ButtonLink/index.d.ts +3 -3
  209. package/libs-ui/react-core/src/CallToAction/index.d.ts +1 -1
  210. package/libs-ui/react-core/src/Card/index.d.ts +3 -3
  211. package/libs-ui/react-core/src/CardAction/index.d.ts +3 -3
  212. package/libs-ui/react-core/src/CardHeading/index.d.ts +3 -3
  213. package/libs-ui/react-core/src/CardText/index.d.ts +3 -3
  214. package/libs-ui/react-core/src/CheckIcon/index.d.ts +15 -0
  215. package/libs-ui/react-core/src/Checkbox/index.d.ts +3 -3
  216. package/libs-ui/react-core/src/CheckboxItem/index.d.ts +3 -3
  217. package/libs-ui/react-core/src/Confirmation/index.d.ts +3 -3
  218. package/libs-ui/react-core/src/ConfirmationBody/index.d.ts +3 -3
  219. package/libs-ui/react-core/src/ConfirmationTitle/index.d.ts +3 -3
  220. package/libs-ui/react-core/src/DateInput/index.d.ts +3 -3
  221. package/libs-ui/react-core/src/DateInputItem/index.d.ts +3 -3
  222. package/libs-ui/react-core/src/Details/index.d.ts +3 -3
  223. package/libs-ui/react-core/src/DetailsContent/index.d.ts +3 -3
  224. package/libs-ui/react-core/src/DetailsSummary/index.d.ts +3 -3
  225. package/libs-ui/react-core/src/ErrorMessage/index.d.ts +3 -3
  226. package/libs-ui/react-core/src/ErrorSummary/index.d.ts +3 -3
  227. package/libs-ui/react-core/src/Field/index.d.ts +3 -3
  228. package/libs-ui/react-core/src/Fieldset/index.d.ts +3 -3
  229. package/libs-ui/react-core/src/FieldsetLegend/index.d.ts +3 -3
  230. package/libs-ui/react-core/src/FileUpload/index.d.ts +3 -3
  231. package/libs-ui/react-core/src/Form/index.d.ts +11 -0
  232. package/libs-ui/react-core/src/Grid/index.d.ts +3 -3
  233. package/libs-ui/react-core/src/Heading/index.d.ts +3 -3
  234. package/libs-ui/react-core/src/HeadingCaption/index.d.ts +3 -3
  235. package/libs-ui/react-core/src/Hidden/index.d.ts +3 -3
  236. package/libs-ui/react-core/src/Hint/index.d.ts +3 -3
  237. package/libs-ui/react-core/src/Label/index.d.ts +3 -3
  238. package/libs-ui/react-core/src/LabelTitle/index.d.ts +7 -7
  239. package/libs-ui/react-core/src/Link/index.d.ts +3 -3
  240. package/libs-ui/react-core/src/List/index.d.ts +3 -3
  241. package/libs-ui/react-core/src/ListItem/index.d.ts +3 -3
  242. package/libs-ui/react-core/src/NavHorizontal/index.d.ts +16 -0
  243. package/libs-ui/react-core/src/NavHorizontalList/index.d.ts +10 -0
  244. package/libs-ui/react-core/src/NavHorizontalListItem/index.d.ts +18 -0
  245. package/libs-ui/react-core/src/NavVertical/index.d.ts +11 -0
  246. package/libs-ui/react-core/src/NavVerticalItem/index.d.ts +14 -0
  247. package/libs-ui/react-core/src/NormalText/index.d.ts +3 -3
  248. package/libs-ui/react-core/src/NotificationBanner/index.d.ts +3 -3
  249. package/libs-ui/react-core/src/NotificationBannerContent/index.d.ts +3 -3
  250. package/libs-ui/react-core/src/NotificationBannerHeader/index.d.ts +3 -3
  251. package/libs-ui/react-core/src/NotificationBannerHeading/index.d.ts +3 -3
  252. package/libs-ui/react-core/src/NotificationBannerLink/index.d.ts +3 -3
  253. package/libs-ui/react-core/src/Paragraph/index.d.ts +3 -3
  254. package/libs-ui/react-core/src/PhaseBanner/index.d.ts +3 -3
  255. package/libs-ui/react-core/src/PhaseBannerHeaderContainer/index.d.ts +3 -3
  256. package/libs-ui/react-core/src/PhaseBannerTag/index.d.ts +3 -3
  257. package/libs-ui/react-core/src/PhaseBannerText/index.d.ts +3 -3
  258. package/libs-ui/react-core/src/Radio/index.d.ts +3 -3
  259. package/libs-ui/react-core/src/RadioItem/index.d.ts +3 -3
  260. package/libs-ui/react-core/src/SectionBreak/index.d.ts +3 -3
  261. package/libs-ui/react-core/src/Select/index.d.ts +3 -3
  262. package/libs-ui/react-core/src/SelectOption/index.d.ts +3 -3
  263. package/libs-ui/react-core/src/SkipLink/index.d.ts +10 -0
  264. package/libs-ui/react-core/src/SummaryList/index.d.ts +3 -3
  265. package/libs-ui/react-core/src/SummaryListItem/index.d.ts +3 -3
  266. package/libs-ui/react-core/src/SummaryListItemAction/index.d.ts +3 -3
  267. package/libs-ui/react-core/src/SummaryListItemKey/index.d.ts +3 -3
  268. package/libs-ui/react-core/src/SummaryListItemValue/index.d.ts +3 -3
  269. package/libs-ui/react-core/src/SvgIcon/index.d.ts +3 -3
  270. package/libs-ui/react-core/src/Table/index.d.ts +3 -3
  271. package/libs-ui/react-core/src/TableBody/index.d.ts +3 -3
  272. package/libs-ui/react-core/src/TableCaption/index.d.ts +3 -3
  273. package/libs-ui/react-core/src/TableContainer/index.d.ts +3 -3
  274. package/libs-ui/react-core/src/TableDataCell/index.d.ts +3 -3
  275. package/libs-ui/react-core/src/TableHead/index.d.ts +3 -3
  276. package/libs-ui/react-core/src/TableHeadCell/index.d.ts +3 -3
  277. package/libs-ui/react-core/src/TableNoDataRow/index.d.ts +3 -3
  278. package/libs-ui/react-core/src/TableRow/index.d.ts +3 -3
  279. package/libs-ui/react-core/src/Tabs/index.d.ts +3 -3
  280. package/libs-ui/react-core/src/TabsHeading/index.d.ts +3 -3
  281. package/libs-ui/react-core/src/TabsList/index.d.ts +3 -3
  282. package/libs-ui/react-core/src/TabsListItem/index.d.ts +3 -3
  283. package/libs-ui/react-core/src/TabsPanel/index.d.ts +3 -3
  284. package/libs-ui/react-core/src/TextArea/index.d.ts +3 -3
  285. package/libs-ui/react-core/src/TextInput/index.d.ts +3 -3
  286. package/libs-ui/react-core/src/UncheckIcon/index.d.ts +4 -4
  287. package/libs-ui/react-core/src/VisuallyHidden/index.d.ts +3 -3
  288. package/libs-ui/react-core/src/WarningText/index.d.ts +3 -3
  289. package/package.json +3 -2
  290. package/types.js +5 -0
  291. package/utils.js +6 -4
  292. package/validators/index.js +181 -0
  293. package/validators/types.js +5 -0
  294. package/validators/utils/afm.js +45 -0
  295. package/validators/utils/file.js +62 -0
  296. package/validators/utils/iban.js +134 -0
  297. package/validators/utils/index.js +210 -0
  298. package/validators/utils/phone.js +144 -0
  299. package/validators/utils/postal_code.js +40 -0
  300. package/validators/utils/uuid4.js +30 -0
  301. package/validators/validators.spec.js +88 -0
  302. package/es/validators.js +0 -626
  303. package/esm/validators.js +0 -626
  304. package/libs/form/src/Field/ConditionalField.d.ts +0 -17
  305. package/libs/form/src/validators.d.ts +0 -14
  306. package/validators.js +0 -662
  307. package/validators.spec.js +0 -88
@@ -51,692 +51,90 @@ exports[`renders the Questions 1`] = `
51
51
  caption="intro.caption"
52
52
  title="intro.title"
53
53
  >
54
- <BackButton>
55
- <Button
56
- classes={
57
- Object {
58
- "root": "makeStyles-root-1",
59
- }
60
- }
61
- color="default"
62
- onClick={[Function]}
63
- size="large"
64
- startIcon={<Memo />}
65
- variant="text"
66
- xsFullWidth={false}
67
- >
68
- <WithStyles(ForwardRef(Button))
69
- classes={
70
- Object {
71
- "root": "makeStyles-root-1",
72
- }
73
- }
74
- color="default"
75
- data-testid="button"
54
+ <withDeprecationComponent>
55
+ <ForwardRef(BackLink)>
56
+ <a
57
+ className="govgr-back-link"
76
58
  onClick={[Function]}
77
- size="large"
78
- startIcon={<Memo />}
79
- variant="text"
59
+ tabIndex={0}
80
60
  >
81
- <ForwardRef(Button)
82
- classes={
83
- Object {
84
- "colorInherit": "MuiButton-colorInherit",
85
- "contained": "MuiButton-contained",
86
- "containedPrimary": "MuiButton-containedPrimary",
87
- "containedSecondary": "MuiButton-containedSecondary",
88
- "containedSizeLarge": "MuiButton-containedSizeLarge",
89
- "containedSizeSmall": "MuiButton-containedSizeSmall",
90
- "disableElevation": "MuiButton-disableElevation",
91
- "disabled": "Mui-disabled",
92
- "endIcon": "MuiButton-endIcon",
93
- "focusVisible": "Mui-focusVisible",
94
- "fullWidth": "MuiButton-fullWidth",
95
- "iconSizeLarge": "MuiButton-iconSizeLarge",
96
- "iconSizeMedium": "MuiButton-iconSizeMedium",
97
- "iconSizeSmall": "MuiButton-iconSizeSmall",
98
- "label": "MuiButton-label",
99
- "outlined": "MuiButton-outlined",
100
- "outlinedPrimary": "MuiButton-outlinedPrimary",
101
- "outlinedSecondary": "MuiButton-outlinedSecondary",
102
- "outlinedSizeLarge": "MuiButton-outlinedSizeLarge",
103
- "outlinedSizeSmall": "MuiButton-outlinedSizeSmall",
104
- "root": "MuiButton-root makeStyles-root-1",
105
- "sizeLarge": "MuiButton-sizeLarge",
106
- "sizeSmall": "MuiButton-sizeSmall",
107
- "startIcon": "MuiButton-startIcon",
108
- "text": "MuiButton-text",
109
- "textPrimary": "MuiButton-textPrimary",
110
- "textSecondary": "MuiButton-textSecondary",
111
- "textSizeLarge": "MuiButton-textSizeLarge",
112
- "textSizeSmall": "MuiButton-textSizeSmall",
113
- }
114
- }
115
- color="default"
116
- data-testid="button"
117
- onClick={[Function]}
118
- size="large"
119
- startIcon={<Memo />}
120
- variant="text"
121
- >
122
- <WithStyles(ForwardRef(ButtonBase))
123
- className="MuiButton-root makeStyles-root-1 MuiButton-text MuiButton-textSizeLarge MuiButton-sizeLarge"
124
- component="button"
125
- data-testid="button"
126
- disabled={false}
127
- focusRipple={true}
128
- focusVisibleClassName="Mui-focusVisible"
129
- onClick={[Function]}
130
- type="button"
61
+ <ForwardRef(CaretIcon)>
62
+ <ForwardRef(SvgIcon)
63
+ className="govgr-caret--left"
131
64
  >
132
- <ForwardRef(ButtonBase)
133
- className="MuiButton-root makeStyles-root-1 MuiButton-text MuiButton-textSizeLarge MuiButton-sizeLarge"
134
- classes={
135
- Object {
136
- "disabled": "Mui-disabled",
137
- "focusVisible": "Mui-focusVisible",
138
- "root": "MuiButtonBase-root",
139
- }
140
- }
141
- component="button"
142
- data-testid="button"
143
- disabled={false}
144
- focusRipple={true}
145
- focusVisibleClassName="Mui-focusVisible"
146
- onClick={[Function]}
147
- type="button"
65
+ <svg
66
+ aria-hidden="true"
67
+ className="govgr-caret--left govgr-svg-icon"
68
+ focusable="false"
69
+ viewBox="0 0 24 24"
148
70
  >
149
- <button
150
- className="MuiButtonBase-root MuiButton-root makeStyles-root-1 MuiButton-text MuiButton-textSizeLarge MuiButton-sizeLarge"
151
- data-testid="button"
152
- disabled={false}
153
- onBlur={[Function]}
154
- onClick={[Function]}
155
- onDragLeave={[Function]}
156
- onFocus={[Function]}
157
- onKeyDown={[Function]}
158
- onKeyUp={[Function]}
159
- onMouseDown={[Function]}
160
- onMouseLeave={[Function]}
161
- onMouseUp={[Function]}
162
- onTouchEnd={[Function]}
163
- onTouchMove={[Function]}
164
- onTouchStart={[Function]}
165
- tabIndex={0}
166
- type="button"
167
- >
71
+ <path
72
+ d="M18,22V2L6,12L18,22z"
73
+ />
74
+ </svg>
75
+ </ForwardRef(SvgIcon)>
76
+ </ForwardRef(CaretIcon)>
77
+ Πίσω
78
+ </a>
79
+ </ForwardRef(BackLink)>
80
+ </withDeprecationComponent>
81
+ <withDeprecationComponent>
82
+ <Component>
83
+ <withDeprecationComponent>
84
+ <Component>
85
+ <withDeprecationComponent>
86
+ <withDeprecationComponent>
87
+ <ForwardRef(HeadingCaption)>
168
88
  <span
169
- className="MuiButton-label"
89
+ className="govgr-caption-l"
170
90
  >
171
- <span
172
- className="MuiButton-startIcon MuiButton-iconSizeLarge"
173
- >
174
- <ForwardRef(ArrowLeftIcon)>
175
- <WithStyles(ForwardRef(SvgIcon))>
176
- <ForwardRef(SvgIcon)
177
- classes={
178
- Object {
179
- "colorAction": "MuiSvgIcon-colorAction",
180
- "colorDisabled": "MuiSvgIcon-colorDisabled",
181
- "colorError": "MuiSvgIcon-colorError",
182
- "colorPrimary": "MuiSvgIcon-colorPrimary",
183
- "colorSecondary": "MuiSvgIcon-colorSecondary",
184
- "fontSizeInherit": "MuiSvgIcon-fontSizeInherit",
185
- "fontSizeLarge": "MuiSvgIcon-fontSizeLarge",
186
- "fontSizeSmall": "MuiSvgIcon-fontSizeSmall",
187
- "root": "MuiSvgIcon-root",
188
- }
189
- }
190
- >
191
- <svg
192
- aria-hidden={true}
193
- className="MuiSvgIcon-root"
194
- focusable="false"
195
- viewBox="0 0 24 24"
196
- >
197
- <path
198
- d="M14 7l-5 5 5 5V7z"
199
- />
200
- </svg>
201
- </ForwardRef(SvgIcon)>
202
- </WithStyles(ForwardRef(SvgIcon))>
203
- </ForwardRef(ArrowLeftIcon)>
204
- </span>
205
- Πίσω
91
+ intro.caption
206
92
  </span>
207
- <WithStyles(memo)
208
- center={false}
209
- >
210
- <ForwardRef(TouchRipple)
211
- center={false}
212
- classes={
213
- Object {
214
- "child": "MuiTouchRipple-child",
215
- "childLeaving": "MuiTouchRipple-childLeaving",
216
- "childPulsate": "MuiTouchRipple-childPulsate",
217
- "ripple": "MuiTouchRipple-ripple",
218
- "ripplePulsate": "MuiTouchRipple-ripplePulsate",
219
- "rippleVisible": "MuiTouchRipple-rippleVisible",
220
- "root": "MuiTouchRipple-root",
221
- }
222
- }
223
- >
224
- <span
225
- className="MuiTouchRipple-root"
226
- >
227
- <TransitionGroup
228
- childFactory={[Function]}
229
- component={null}
230
- exit={true}
231
- />
232
- </span>
233
- </ForwardRef(TouchRipple)>
234
- </WithStyles(memo)>
235
- </button>
236
- </ForwardRef(ButtonBase)>
237
- </WithStyles(ForwardRef(ButtonBase))>
238
- </ForwardRef(Button)>
239
- </WithStyles(ForwardRef(Button))>
240
- </Button>
241
- </BackButton>
242
- <PageTitle>
243
- <WithStyles(ForwardRef(Grid))
244
- className="MuiPageTitle-root MuiPageTitle-preserveHeight"
245
- container={true}
246
- >
247
- <ForwardRef(Grid)
248
- className="MuiPageTitle-root MuiPageTitle-preserveHeight"
249
- classes={
250
- Object {
251
- "align-content-xs-center": "MuiGrid-align-content-xs-center",
252
- "align-content-xs-flex-end": "MuiGrid-align-content-xs-flex-end",
253
- "align-content-xs-flex-start": "MuiGrid-align-content-xs-flex-start",
254
- "align-content-xs-space-around": "MuiGrid-align-content-xs-space-around",
255
- "align-content-xs-space-between": "MuiGrid-align-content-xs-space-between",
256
- "align-items-xs-baseline": "MuiGrid-align-items-xs-baseline",
257
- "align-items-xs-center": "MuiGrid-align-items-xs-center",
258
- "align-items-xs-flex-end": "MuiGrid-align-items-xs-flex-end",
259
- "align-items-xs-flex-start": "MuiGrid-align-items-xs-flex-start",
260
- "container": "MuiGrid-container",
261
- "direction-xs-column": "MuiGrid-direction-xs-column",
262
- "direction-xs-column-reverse": "MuiGrid-direction-xs-column-reverse",
263
- "direction-xs-row-reverse": "MuiGrid-direction-xs-row-reverse",
264
- "grid-lg-1": "MuiGrid-grid-lg-1",
265
- "grid-lg-10": "MuiGrid-grid-lg-10",
266
- "grid-lg-11": "MuiGrid-grid-lg-11",
267
- "grid-lg-12": "MuiGrid-grid-lg-12",
268
- "grid-lg-2": "MuiGrid-grid-lg-2",
269
- "grid-lg-3": "MuiGrid-grid-lg-3",
270
- "grid-lg-4": "MuiGrid-grid-lg-4",
271
- "grid-lg-5": "MuiGrid-grid-lg-5",
272
- "grid-lg-6": "MuiGrid-grid-lg-6",
273
- "grid-lg-7": "MuiGrid-grid-lg-7",
274
- "grid-lg-8": "MuiGrid-grid-lg-8",
275
- "grid-lg-9": "MuiGrid-grid-lg-9",
276
- "grid-lg-auto": "MuiGrid-grid-lg-auto",
277
- "grid-lg-true": "MuiGrid-grid-lg-true",
278
- "grid-md-1": "MuiGrid-grid-md-1",
279
- "grid-md-10": "MuiGrid-grid-md-10",
280
- "grid-md-11": "MuiGrid-grid-md-11",
281
- "grid-md-12": "MuiGrid-grid-md-12",
282
- "grid-md-2": "MuiGrid-grid-md-2",
283
- "grid-md-3": "MuiGrid-grid-md-3",
284
- "grid-md-4": "MuiGrid-grid-md-4",
285
- "grid-md-5": "MuiGrid-grid-md-5",
286
- "grid-md-6": "MuiGrid-grid-md-6",
287
- "grid-md-7": "MuiGrid-grid-md-7",
288
- "grid-md-8": "MuiGrid-grid-md-8",
289
- "grid-md-9": "MuiGrid-grid-md-9",
290
- "grid-md-auto": "MuiGrid-grid-md-auto",
291
- "grid-md-true": "MuiGrid-grid-md-true",
292
- "grid-sm-1": "MuiGrid-grid-sm-1",
293
- "grid-sm-10": "MuiGrid-grid-sm-10",
294
- "grid-sm-11": "MuiGrid-grid-sm-11",
295
- "grid-sm-12": "MuiGrid-grid-sm-12",
296
- "grid-sm-2": "MuiGrid-grid-sm-2",
297
- "grid-sm-3": "MuiGrid-grid-sm-3",
298
- "grid-sm-4": "MuiGrid-grid-sm-4",
299
- "grid-sm-5": "MuiGrid-grid-sm-5",
300
- "grid-sm-6": "MuiGrid-grid-sm-6",
301
- "grid-sm-7": "MuiGrid-grid-sm-7",
302
- "grid-sm-8": "MuiGrid-grid-sm-8",
303
- "grid-sm-9": "MuiGrid-grid-sm-9",
304
- "grid-sm-auto": "MuiGrid-grid-sm-auto",
305
- "grid-sm-true": "MuiGrid-grid-sm-true",
306
- "grid-xl-1": "MuiGrid-grid-xl-1",
307
- "grid-xl-10": "MuiGrid-grid-xl-10",
308
- "grid-xl-11": "MuiGrid-grid-xl-11",
309
- "grid-xl-12": "MuiGrid-grid-xl-12",
310
- "grid-xl-2": "MuiGrid-grid-xl-2",
311
- "grid-xl-3": "MuiGrid-grid-xl-3",
312
- "grid-xl-4": "MuiGrid-grid-xl-4",
313
- "grid-xl-5": "MuiGrid-grid-xl-5",
314
- "grid-xl-6": "MuiGrid-grid-xl-6",
315
- "grid-xl-7": "MuiGrid-grid-xl-7",
316
- "grid-xl-8": "MuiGrid-grid-xl-8",
317
- "grid-xl-9": "MuiGrid-grid-xl-9",
318
- "grid-xl-auto": "MuiGrid-grid-xl-auto",
319
- "grid-xl-true": "MuiGrid-grid-xl-true",
320
- "grid-xs-1": "MuiGrid-grid-xs-1",
321
- "grid-xs-10": "MuiGrid-grid-xs-10",
322
- "grid-xs-11": "MuiGrid-grid-xs-11",
323
- "grid-xs-12": "MuiGrid-grid-xs-12",
324
- "grid-xs-2": "MuiGrid-grid-xs-2",
325
- "grid-xs-3": "MuiGrid-grid-xs-3",
326
- "grid-xs-4": "MuiGrid-grid-xs-4",
327
- "grid-xs-5": "MuiGrid-grid-xs-5",
328
- "grid-xs-6": "MuiGrid-grid-xs-6",
329
- "grid-xs-7": "MuiGrid-grid-xs-7",
330
- "grid-xs-8": "MuiGrid-grid-xs-8",
331
- "grid-xs-9": "MuiGrid-grid-xs-9",
332
- "grid-xs-auto": "MuiGrid-grid-xs-auto",
333
- "grid-xs-true": "MuiGrid-grid-xs-true",
334
- "item": "MuiGrid-item",
335
- "justify-xs-center": "MuiGrid-justify-xs-center",
336
- "justify-xs-flex-end": "MuiGrid-justify-xs-flex-end",
337
- "justify-xs-space-around": "MuiGrid-justify-xs-space-around",
338
- "justify-xs-space-between": "MuiGrid-justify-xs-space-between",
339
- "justify-xs-space-evenly": "MuiGrid-justify-xs-space-evenly",
340
- "root": "MuiGrid-root",
341
- "spacing-xs-1": "MuiGrid-spacing-xs-1",
342
- "spacing-xs-10": "MuiGrid-spacing-xs-10",
343
- "spacing-xs-2": "MuiGrid-spacing-xs-2",
344
- "spacing-xs-3": "MuiGrid-spacing-xs-3",
345
- "spacing-xs-4": "MuiGrid-spacing-xs-4",
346
- "spacing-xs-5": "MuiGrid-spacing-xs-5",
347
- "spacing-xs-6": "MuiGrid-spacing-xs-6",
348
- "spacing-xs-7": "MuiGrid-spacing-xs-7",
349
- "spacing-xs-8": "MuiGrid-spacing-xs-8",
350
- "spacing-xs-9": "MuiGrid-spacing-xs-9",
351
- "wrap-xs-nowrap": "MuiGrid-wrap-xs-nowrap",
352
- "wrap-xs-wrap-reverse": "MuiGrid-wrap-xs-wrap-reverse",
353
- "zeroMinWidth": "MuiGrid-zeroMinWidth",
354
- }
355
- }
356
- container={true}
357
- >
358
- <div
359
- className="MuiGrid-root MuiPageTitle-root MuiPageTitle-preserveHeight MuiGrid-container"
360
- >
361
- <PageTitleSection>
362
- <WithStyles(ForwardRef(Grid))
363
- className="MuiPageTitleSection"
364
- container={true}
365
- justify="space-between"
93
+ </ForwardRef(HeadingCaption)>
94
+ </withDeprecationComponent>
95
+ </withDeprecationComponent>
96
+ </Component>
97
+ </withDeprecationComponent>
98
+ <StepTitleHeading>
99
+ <withDeprecationComponent>
100
+ <Component>
101
+ <withDeprecationComponent
102
+ size="xl"
366
103
  >
367
- <ForwardRef(Grid)
368
- className="MuiPageTitleSection"
369
- classes={
370
- Object {
371
- "align-content-xs-center": "MuiGrid-align-content-xs-center",
372
- "align-content-xs-flex-end": "MuiGrid-align-content-xs-flex-end",
373
- "align-content-xs-flex-start": "MuiGrid-align-content-xs-flex-start",
374
- "align-content-xs-space-around": "MuiGrid-align-content-xs-space-around",
375
- "align-content-xs-space-between": "MuiGrid-align-content-xs-space-between",
376
- "align-items-xs-baseline": "MuiGrid-align-items-xs-baseline",
377
- "align-items-xs-center": "MuiGrid-align-items-xs-center",
378
- "align-items-xs-flex-end": "MuiGrid-align-items-xs-flex-end",
379
- "align-items-xs-flex-start": "MuiGrid-align-items-xs-flex-start",
380
- "container": "MuiGrid-container",
381
- "direction-xs-column": "MuiGrid-direction-xs-column",
382
- "direction-xs-column-reverse": "MuiGrid-direction-xs-column-reverse",
383
- "direction-xs-row-reverse": "MuiGrid-direction-xs-row-reverse",
384
- "grid-lg-1": "MuiGrid-grid-lg-1",
385
- "grid-lg-10": "MuiGrid-grid-lg-10",
386
- "grid-lg-11": "MuiGrid-grid-lg-11",
387
- "grid-lg-12": "MuiGrid-grid-lg-12",
388
- "grid-lg-2": "MuiGrid-grid-lg-2",
389
- "grid-lg-3": "MuiGrid-grid-lg-3",
390
- "grid-lg-4": "MuiGrid-grid-lg-4",
391
- "grid-lg-5": "MuiGrid-grid-lg-5",
392
- "grid-lg-6": "MuiGrid-grid-lg-6",
393
- "grid-lg-7": "MuiGrid-grid-lg-7",
394
- "grid-lg-8": "MuiGrid-grid-lg-8",
395
- "grid-lg-9": "MuiGrid-grid-lg-9",
396
- "grid-lg-auto": "MuiGrid-grid-lg-auto",
397
- "grid-lg-true": "MuiGrid-grid-lg-true",
398
- "grid-md-1": "MuiGrid-grid-md-1",
399
- "grid-md-10": "MuiGrid-grid-md-10",
400
- "grid-md-11": "MuiGrid-grid-md-11",
401
- "grid-md-12": "MuiGrid-grid-md-12",
402
- "grid-md-2": "MuiGrid-grid-md-2",
403
- "grid-md-3": "MuiGrid-grid-md-3",
404
- "grid-md-4": "MuiGrid-grid-md-4",
405
- "grid-md-5": "MuiGrid-grid-md-5",
406
- "grid-md-6": "MuiGrid-grid-md-6",
407
- "grid-md-7": "MuiGrid-grid-md-7",
408
- "grid-md-8": "MuiGrid-grid-md-8",
409
- "grid-md-9": "MuiGrid-grid-md-9",
410
- "grid-md-auto": "MuiGrid-grid-md-auto",
411
- "grid-md-true": "MuiGrid-grid-md-true",
412
- "grid-sm-1": "MuiGrid-grid-sm-1",
413
- "grid-sm-10": "MuiGrid-grid-sm-10",
414
- "grid-sm-11": "MuiGrid-grid-sm-11",
415
- "grid-sm-12": "MuiGrid-grid-sm-12",
416
- "grid-sm-2": "MuiGrid-grid-sm-2",
417
- "grid-sm-3": "MuiGrid-grid-sm-3",
418
- "grid-sm-4": "MuiGrid-grid-sm-4",
419
- "grid-sm-5": "MuiGrid-grid-sm-5",
420
- "grid-sm-6": "MuiGrid-grid-sm-6",
421
- "grid-sm-7": "MuiGrid-grid-sm-7",
422
- "grid-sm-8": "MuiGrid-grid-sm-8",
423
- "grid-sm-9": "MuiGrid-grid-sm-9",
424
- "grid-sm-auto": "MuiGrid-grid-sm-auto",
425
- "grid-sm-true": "MuiGrid-grid-sm-true",
426
- "grid-xl-1": "MuiGrid-grid-xl-1",
427
- "grid-xl-10": "MuiGrid-grid-xl-10",
428
- "grid-xl-11": "MuiGrid-grid-xl-11",
429
- "grid-xl-12": "MuiGrid-grid-xl-12",
430
- "grid-xl-2": "MuiGrid-grid-xl-2",
431
- "grid-xl-3": "MuiGrid-grid-xl-3",
432
- "grid-xl-4": "MuiGrid-grid-xl-4",
433
- "grid-xl-5": "MuiGrid-grid-xl-5",
434
- "grid-xl-6": "MuiGrid-grid-xl-6",
435
- "grid-xl-7": "MuiGrid-grid-xl-7",
436
- "grid-xl-8": "MuiGrid-grid-xl-8",
437
- "grid-xl-9": "MuiGrid-grid-xl-9",
438
- "grid-xl-auto": "MuiGrid-grid-xl-auto",
439
- "grid-xl-true": "MuiGrid-grid-xl-true",
440
- "grid-xs-1": "MuiGrid-grid-xs-1",
441
- "grid-xs-10": "MuiGrid-grid-xs-10",
442
- "grid-xs-11": "MuiGrid-grid-xs-11",
443
- "grid-xs-12": "MuiGrid-grid-xs-12",
444
- "grid-xs-2": "MuiGrid-grid-xs-2",
445
- "grid-xs-3": "MuiGrid-grid-xs-3",
446
- "grid-xs-4": "MuiGrid-grid-xs-4",
447
- "grid-xs-5": "MuiGrid-grid-xs-5",
448
- "grid-xs-6": "MuiGrid-grid-xs-6",
449
- "grid-xs-7": "MuiGrid-grid-xs-7",
450
- "grid-xs-8": "MuiGrid-grid-xs-8",
451
- "grid-xs-9": "MuiGrid-grid-xs-9",
452
- "grid-xs-auto": "MuiGrid-grid-xs-auto",
453
- "grid-xs-true": "MuiGrid-grid-xs-true",
454
- "item": "MuiGrid-item",
455
- "justify-xs-center": "MuiGrid-justify-xs-center",
456
- "justify-xs-flex-end": "MuiGrid-justify-xs-flex-end",
457
- "justify-xs-space-around": "MuiGrid-justify-xs-space-around",
458
- "justify-xs-space-between": "MuiGrid-justify-xs-space-between",
459
- "justify-xs-space-evenly": "MuiGrid-justify-xs-space-evenly",
460
- "root": "MuiGrid-root",
461
- "spacing-xs-1": "MuiGrid-spacing-xs-1",
462
- "spacing-xs-10": "MuiGrid-spacing-xs-10",
463
- "spacing-xs-2": "MuiGrid-spacing-xs-2",
464
- "spacing-xs-3": "MuiGrid-spacing-xs-3",
465
- "spacing-xs-4": "MuiGrid-spacing-xs-4",
466
- "spacing-xs-5": "MuiGrid-spacing-xs-5",
467
- "spacing-xs-6": "MuiGrid-spacing-xs-6",
468
- "spacing-xs-7": "MuiGrid-spacing-xs-7",
469
- "spacing-xs-8": "MuiGrid-spacing-xs-8",
470
- "spacing-xs-9": "MuiGrid-spacing-xs-9",
471
- "wrap-xs-nowrap": "MuiGrid-wrap-xs-nowrap",
472
- "wrap-xs-wrap-reverse": "MuiGrid-wrap-xs-wrap-reverse",
473
- "zeroMinWidth": "MuiGrid-zeroMinWidth",
474
- }
475
- }
476
- container={true}
477
- justify="space-between"
104
+ <Component
105
+ size="xl"
478
106
  >
479
- <div
480
- className="MuiGrid-root MuiPageTitleSection MuiGrid-container MuiGrid-justify-xs-space-between"
107
+ <ForwardRef(Heading)
108
+ size="xl"
481
109
  >
482
- <PageTitleCaption>
483
- <Caption>
484
- <WithStyles(ForwardRef(Typography))
485
- className="makeStyles-caption-2"
486
- variant="h6"
487
- >
488
- <ForwardRef(Typography)
489
- className="makeStyles-caption-2"
490
- classes={
491
- Object {
492
- "alignCenter": "MuiTypography-alignCenter",
493
- "alignJustify": "MuiTypography-alignJustify",
494
- "alignLeft": "MuiTypography-alignLeft",
495
- "alignRight": "MuiTypography-alignRight",
496
- "body1": "MuiTypography-body1",
497
- "body2": "MuiTypography-body2",
498
- "button": "MuiTypography-button",
499
- "caption": "MuiTypography-caption",
500
- "colorError": "MuiTypography-colorError",
501
- "colorInherit": "MuiTypography-colorInherit",
502
- "colorPrimary": "MuiTypography-colorPrimary",
503
- "colorSecondary": "MuiTypography-colorSecondary",
504
- "colorTextPrimary": "MuiTypography-colorTextPrimary",
505
- "colorTextSecondary": "MuiTypography-colorTextSecondary",
506
- "displayBlock": "MuiTypography-displayBlock",
507
- "displayInline": "MuiTypography-displayInline",
508
- "gutterBottom": "MuiTypography-gutterBottom",
509
- "h1": "MuiTypography-h1",
510
- "h2": "MuiTypography-h2",
511
- "h3": "MuiTypography-h3",
512
- "h4": "MuiTypography-h4",
513
- "h5": "MuiTypography-h5",
514
- "h6": "MuiTypography-h6",
515
- "noWrap": "MuiTypography-noWrap",
516
- "overline": "MuiTypography-overline",
517
- "paragraph": "MuiTypography-paragraph",
518
- "root": "MuiTypography-root",
519
- "srOnly": "MuiTypography-srOnly",
520
- "subtitle1": "MuiTypography-subtitle1",
521
- "subtitle2": "MuiTypography-subtitle2",
522
- }
523
- }
524
- variant="h6"
525
- >
526
- <h6
527
- className="MuiTypography-root makeStyles-caption-2 MuiTypography-h6"
528
- >
529
- intro.caption
530
- </h6>
531
- </ForwardRef(Typography)>
532
- </WithStyles(ForwardRef(Typography))>
533
- </Caption>
534
- </PageTitleCaption>
535
- </div>
536
- </ForwardRef(Grid)>
537
- </WithStyles(ForwardRef(Grid))>
538
- </PageTitleSection>
539
- <StepTitleHeading>
540
- <PageTitleHeading>
541
- <WithStyles(ForwardRef(Grid))
542
- className="MuiPageTitleHeadingContainer"
543
- container={true}
544
- >
545
- <ForwardRef(Grid)
546
- className="MuiPageTitleHeadingContainer"
547
- classes={
548
- Object {
549
- "align-content-xs-center": "MuiGrid-align-content-xs-center",
550
- "align-content-xs-flex-end": "MuiGrid-align-content-xs-flex-end",
551
- "align-content-xs-flex-start": "MuiGrid-align-content-xs-flex-start",
552
- "align-content-xs-space-around": "MuiGrid-align-content-xs-space-around",
553
- "align-content-xs-space-between": "MuiGrid-align-content-xs-space-between",
554
- "align-items-xs-baseline": "MuiGrid-align-items-xs-baseline",
555
- "align-items-xs-center": "MuiGrid-align-items-xs-center",
556
- "align-items-xs-flex-end": "MuiGrid-align-items-xs-flex-end",
557
- "align-items-xs-flex-start": "MuiGrid-align-items-xs-flex-start",
558
- "container": "MuiGrid-container",
559
- "direction-xs-column": "MuiGrid-direction-xs-column",
560
- "direction-xs-column-reverse": "MuiGrid-direction-xs-column-reverse",
561
- "direction-xs-row-reverse": "MuiGrid-direction-xs-row-reverse",
562
- "grid-lg-1": "MuiGrid-grid-lg-1",
563
- "grid-lg-10": "MuiGrid-grid-lg-10",
564
- "grid-lg-11": "MuiGrid-grid-lg-11",
565
- "grid-lg-12": "MuiGrid-grid-lg-12",
566
- "grid-lg-2": "MuiGrid-grid-lg-2",
567
- "grid-lg-3": "MuiGrid-grid-lg-3",
568
- "grid-lg-4": "MuiGrid-grid-lg-4",
569
- "grid-lg-5": "MuiGrid-grid-lg-5",
570
- "grid-lg-6": "MuiGrid-grid-lg-6",
571
- "grid-lg-7": "MuiGrid-grid-lg-7",
572
- "grid-lg-8": "MuiGrid-grid-lg-8",
573
- "grid-lg-9": "MuiGrid-grid-lg-9",
574
- "grid-lg-auto": "MuiGrid-grid-lg-auto",
575
- "grid-lg-true": "MuiGrid-grid-lg-true",
576
- "grid-md-1": "MuiGrid-grid-md-1",
577
- "grid-md-10": "MuiGrid-grid-md-10",
578
- "grid-md-11": "MuiGrid-grid-md-11",
579
- "grid-md-12": "MuiGrid-grid-md-12",
580
- "grid-md-2": "MuiGrid-grid-md-2",
581
- "grid-md-3": "MuiGrid-grid-md-3",
582
- "grid-md-4": "MuiGrid-grid-md-4",
583
- "grid-md-5": "MuiGrid-grid-md-5",
584
- "grid-md-6": "MuiGrid-grid-md-6",
585
- "grid-md-7": "MuiGrid-grid-md-7",
586
- "grid-md-8": "MuiGrid-grid-md-8",
587
- "grid-md-9": "MuiGrid-grid-md-9",
588
- "grid-md-auto": "MuiGrid-grid-md-auto",
589
- "grid-md-true": "MuiGrid-grid-md-true",
590
- "grid-sm-1": "MuiGrid-grid-sm-1",
591
- "grid-sm-10": "MuiGrid-grid-sm-10",
592
- "grid-sm-11": "MuiGrid-grid-sm-11",
593
- "grid-sm-12": "MuiGrid-grid-sm-12",
594
- "grid-sm-2": "MuiGrid-grid-sm-2",
595
- "grid-sm-3": "MuiGrid-grid-sm-3",
596
- "grid-sm-4": "MuiGrid-grid-sm-4",
597
- "grid-sm-5": "MuiGrid-grid-sm-5",
598
- "grid-sm-6": "MuiGrid-grid-sm-6",
599
- "grid-sm-7": "MuiGrid-grid-sm-7",
600
- "grid-sm-8": "MuiGrid-grid-sm-8",
601
- "grid-sm-9": "MuiGrid-grid-sm-9",
602
- "grid-sm-auto": "MuiGrid-grid-sm-auto",
603
- "grid-sm-true": "MuiGrid-grid-sm-true",
604
- "grid-xl-1": "MuiGrid-grid-xl-1",
605
- "grid-xl-10": "MuiGrid-grid-xl-10",
606
- "grid-xl-11": "MuiGrid-grid-xl-11",
607
- "grid-xl-12": "MuiGrid-grid-xl-12",
608
- "grid-xl-2": "MuiGrid-grid-xl-2",
609
- "grid-xl-3": "MuiGrid-grid-xl-3",
610
- "grid-xl-4": "MuiGrid-grid-xl-4",
611
- "grid-xl-5": "MuiGrid-grid-xl-5",
612
- "grid-xl-6": "MuiGrid-grid-xl-6",
613
- "grid-xl-7": "MuiGrid-grid-xl-7",
614
- "grid-xl-8": "MuiGrid-grid-xl-8",
615
- "grid-xl-9": "MuiGrid-grid-xl-9",
616
- "grid-xl-auto": "MuiGrid-grid-xl-auto",
617
- "grid-xl-true": "MuiGrid-grid-xl-true",
618
- "grid-xs-1": "MuiGrid-grid-xs-1",
619
- "grid-xs-10": "MuiGrid-grid-xs-10",
620
- "grid-xs-11": "MuiGrid-grid-xs-11",
621
- "grid-xs-12": "MuiGrid-grid-xs-12",
622
- "grid-xs-2": "MuiGrid-grid-xs-2",
623
- "grid-xs-3": "MuiGrid-grid-xs-3",
624
- "grid-xs-4": "MuiGrid-grid-xs-4",
625
- "grid-xs-5": "MuiGrid-grid-xs-5",
626
- "grid-xs-6": "MuiGrid-grid-xs-6",
627
- "grid-xs-7": "MuiGrid-grid-xs-7",
628
- "grid-xs-8": "MuiGrid-grid-xs-8",
629
- "grid-xs-9": "MuiGrid-grid-xs-9",
630
- "grid-xs-auto": "MuiGrid-grid-xs-auto",
631
- "grid-xs-true": "MuiGrid-grid-xs-true",
632
- "item": "MuiGrid-item",
633
- "justify-xs-center": "MuiGrid-justify-xs-center",
634
- "justify-xs-flex-end": "MuiGrid-justify-xs-flex-end",
635
- "justify-xs-space-around": "MuiGrid-justify-xs-space-around",
636
- "justify-xs-space-between": "MuiGrid-justify-xs-space-between",
637
- "justify-xs-space-evenly": "MuiGrid-justify-xs-space-evenly",
638
- "root": "MuiGrid-root",
639
- "spacing-xs-1": "MuiGrid-spacing-xs-1",
640
- "spacing-xs-10": "MuiGrid-spacing-xs-10",
641
- "spacing-xs-2": "MuiGrid-spacing-xs-2",
642
- "spacing-xs-3": "MuiGrid-spacing-xs-3",
643
- "spacing-xs-4": "MuiGrid-spacing-xs-4",
644
- "spacing-xs-5": "MuiGrid-spacing-xs-5",
645
- "spacing-xs-6": "MuiGrid-spacing-xs-6",
646
- "spacing-xs-7": "MuiGrid-spacing-xs-7",
647
- "spacing-xs-8": "MuiGrid-spacing-xs-8",
648
- "spacing-xs-9": "MuiGrid-spacing-xs-9",
649
- "wrap-xs-nowrap": "MuiGrid-wrap-xs-nowrap",
650
- "wrap-xs-wrap-reverse": "MuiGrid-wrap-xs-wrap-reverse",
651
- "zeroMinWidth": "MuiGrid-zeroMinWidth",
652
- }
653
- }
654
- container={true}
655
- >
656
- <div
657
- className="MuiGrid-root MuiPageTitleHeadingContainer MuiGrid-container"
110
+ <h1
111
+ className="govgr-heading-xl"
658
112
  >
659
- <ForwardRef(Title)
660
- className="MuiPageTitleHeading-dense"
661
- classes={Object {}}
662
- dense={false}
663
- size="xl"
664
- >
665
- <h1
666
- className="MuiPageTitleHeading-dense MuiDigigovTitle-root MuiDigigovTitle-xl"
667
- >
668
- intro.title
669
- </h1>
670
- </ForwardRef(Title)>
671
- </div>
672
- </ForwardRef(Grid)>
673
- </WithStyles(ForwardRef(Grid))>
674
- </PageTitleHeading>
675
- </StepTitleHeading>
676
- </div>
677
- </ForwardRef(Grid)>
678
- </WithStyles(ForwardRef(Grid))>
679
- </PageTitle>
113
+ intro.title
114
+ </h1>
115
+ </ForwardRef(Heading)>
116
+ </Component>
117
+ </withDeprecationComponent>
118
+ </Component>
119
+ </withDeprecationComponent>
120
+ </StepTitleHeading>
121
+ </Component>
122
+ </withDeprecationComponent>
680
123
  </StepTitleBase>
681
124
  </StepTitle>
682
125
  <StepQuote>
683
- <Paragraph>
684
- <WithStyles(ForwardRef(Typography))
685
- className="MuiParagraph-paragraph"
686
- classes={Object {}}
687
- variant="body1"
126
+ <ForwardRef(Paragraph)>
127
+ <p
128
+ className="govgr-body"
688
129
  >
689
- <ForwardRef(Typography)
690
- className="MuiParagraph-paragraph"
691
- classes={
692
- Object {
693
- "alignCenter": "MuiTypography-alignCenter",
694
- "alignJustify": "MuiTypography-alignJustify",
695
- "alignLeft": "MuiTypography-alignLeft",
696
- "alignRight": "MuiTypography-alignRight",
697
- "body1": "MuiTypography-body1",
698
- "body2": "MuiTypography-body2",
699
- "button": "MuiTypography-button",
700
- "caption": "MuiTypography-caption",
701
- "colorError": "MuiTypography-colorError",
702
- "colorInherit": "MuiTypography-colorInherit",
703
- "colorPrimary": "MuiTypography-colorPrimary",
704
- "colorSecondary": "MuiTypography-colorSecondary",
705
- "colorTextPrimary": "MuiTypography-colorTextPrimary",
706
- "colorTextSecondary": "MuiTypography-colorTextSecondary",
707
- "displayBlock": "MuiTypography-displayBlock",
708
- "displayInline": "MuiTypography-displayInline",
709
- "gutterBottom": "MuiTypography-gutterBottom",
710
- "h1": "MuiTypography-h1",
711
- "h2": "MuiTypography-h2",
712
- "h3": "MuiTypography-h3",
713
- "h4": "MuiTypography-h4",
714
- "h5": "MuiTypography-h5",
715
- "h6": "MuiTypography-h6",
716
- "noWrap": "MuiTypography-noWrap",
717
- "overline": "MuiTypography-overline",
718
- "paragraph": "MuiTypography-paragraph",
719
- "root": "MuiTypography-root",
720
- "srOnly": "MuiTypography-srOnly",
721
- "subtitle1": "MuiTypography-subtitle1",
722
- "subtitle2": "MuiTypography-subtitle2",
723
- }
724
- }
725
- variant="body1"
726
- >
727
- <p
728
- className="MuiTypography-root MuiParagraph-paragraph MuiTypography-body1"
729
- >
730
- This is the intro
731
- </p>
732
- </ForwardRef(Typography)>
733
- </WithStyles(ForwardRef(Typography))>
734
- </Paragraph>
130
+ This is the intro
131
+ </p>
132
+ </ForwardRef(Paragraph)>
735
133
  </StepQuote>
736
134
  <StepForm
737
135
  submitButton={true}
738
136
  >
739
- <FormBuilder
137
+ <ForwardRef(FormBuilder)
740
138
  fields={
741
139
  Array [
742
140
  Object {
@@ -752,7 +150,7 @@ exports[`renders the Questions 1`] = `
752
150
  }
753
151
  onSubmit={[Function]}
754
152
  >
755
- <FormBase
153
+ <ForwardRef(FormBase)
756
154
  criteriaMode="firstError"
757
155
  fieldsMap={
758
156
  Object {
@@ -771,977 +169,389 @@ exports[`renders the Questions 1`] = `
771
169
  mode="onSubmit"
772
170
  onSubmit={[Function]}
773
171
  reValidateMode="onSubmit"
172
+ registerField={[Function]}
774
173
  resolver={[Function]}
775
174
  shouldFocusError={true}
776
175
  >
777
176
  <form
778
177
  onSubmit={[Function]}
779
178
  >
780
- <WithStyles(ForwardRef(Grid))
179
+ <ForwardRef(Grid)
781
180
  container={true}
782
181
  >
783
- <ForwardRef(Grid)
784
- classes={
785
- Object {
786
- "align-content-xs-center": "MuiGrid-align-content-xs-center",
787
- "align-content-xs-flex-end": "MuiGrid-align-content-xs-flex-end",
788
- "align-content-xs-flex-start": "MuiGrid-align-content-xs-flex-start",
789
- "align-content-xs-space-around": "MuiGrid-align-content-xs-space-around",
790
- "align-content-xs-space-between": "MuiGrid-align-content-xs-space-between",
791
- "align-items-xs-baseline": "MuiGrid-align-items-xs-baseline",
792
- "align-items-xs-center": "MuiGrid-align-items-xs-center",
793
- "align-items-xs-flex-end": "MuiGrid-align-items-xs-flex-end",
794
- "align-items-xs-flex-start": "MuiGrid-align-items-xs-flex-start",
795
- "container": "MuiGrid-container",
796
- "direction-xs-column": "MuiGrid-direction-xs-column",
797
- "direction-xs-column-reverse": "MuiGrid-direction-xs-column-reverse",
798
- "direction-xs-row-reverse": "MuiGrid-direction-xs-row-reverse",
799
- "grid-lg-1": "MuiGrid-grid-lg-1",
800
- "grid-lg-10": "MuiGrid-grid-lg-10",
801
- "grid-lg-11": "MuiGrid-grid-lg-11",
802
- "grid-lg-12": "MuiGrid-grid-lg-12",
803
- "grid-lg-2": "MuiGrid-grid-lg-2",
804
- "grid-lg-3": "MuiGrid-grid-lg-3",
805
- "grid-lg-4": "MuiGrid-grid-lg-4",
806
- "grid-lg-5": "MuiGrid-grid-lg-5",
807
- "grid-lg-6": "MuiGrid-grid-lg-6",
808
- "grid-lg-7": "MuiGrid-grid-lg-7",
809
- "grid-lg-8": "MuiGrid-grid-lg-8",
810
- "grid-lg-9": "MuiGrid-grid-lg-9",
811
- "grid-lg-auto": "MuiGrid-grid-lg-auto",
812
- "grid-lg-true": "MuiGrid-grid-lg-true",
813
- "grid-md-1": "MuiGrid-grid-md-1",
814
- "grid-md-10": "MuiGrid-grid-md-10",
815
- "grid-md-11": "MuiGrid-grid-md-11",
816
- "grid-md-12": "MuiGrid-grid-md-12",
817
- "grid-md-2": "MuiGrid-grid-md-2",
818
- "grid-md-3": "MuiGrid-grid-md-3",
819
- "grid-md-4": "MuiGrid-grid-md-4",
820
- "grid-md-5": "MuiGrid-grid-md-5",
821
- "grid-md-6": "MuiGrid-grid-md-6",
822
- "grid-md-7": "MuiGrid-grid-md-7",
823
- "grid-md-8": "MuiGrid-grid-md-8",
824
- "grid-md-9": "MuiGrid-grid-md-9",
825
- "grid-md-auto": "MuiGrid-grid-md-auto",
826
- "grid-md-true": "MuiGrid-grid-md-true",
827
- "grid-sm-1": "MuiGrid-grid-sm-1",
828
- "grid-sm-10": "MuiGrid-grid-sm-10",
829
- "grid-sm-11": "MuiGrid-grid-sm-11",
830
- "grid-sm-12": "MuiGrid-grid-sm-12",
831
- "grid-sm-2": "MuiGrid-grid-sm-2",
832
- "grid-sm-3": "MuiGrid-grid-sm-3",
833
- "grid-sm-4": "MuiGrid-grid-sm-4",
834
- "grid-sm-5": "MuiGrid-grid-sm-5",
835
- "grid-sm-6": "MuiGrid-grid-sm-6",
836
- "grid-sm-7": "MuiGrid-grid-sm-7",
837
- "grid-sm-8": "MuiGrid-grid-sm-8",
838
- "grid-sm-9": "MuiGrid-grid-sm-9",
839
- "grid-sm-auto": "MuiGrid-grid-sm-auto",
840
- "grid-sm-true": "MuiGrid-grid-sm-true",
841
- "grid-xl-1": "MuiGrid-grid-xl-1",
842
- "grid-xl-10": "MuiGrid-grid-xl-10",
843
- "grid-xl-11": "MuiGrid-grid-xl-11",
844
- "grid-xl-12": "MuiGrid-grid-xl-12",
845
- "grid-xl-2": "MuiGrid-grid-xl-2",
846
- "grid-xl-3": "MuiGrid-grid-xl-3",
847
- "grid-xl-4": "MuiGrid-grid-xl-4",
848
- "grid-xl-5": "MuiGrid-grid-xl-5",
849
- "grid-xl-6": "MuiGrid-grid-xl-6",
850
- "grid-xl-7": "MuiGrid-grid-xl-7",
851
- "grid-xl-8": "MuiGrid-grid-xl-8",
852
- "grid-xl-9": "MuiGrid-grid-xl-9",
853
- "grid-xl-auto": "MuiGrid-grid-xl-auto",
854
- "grid-xl-true": "MuiGrid-grid-xl-true",
855
- "grid-xs-1": "MuiGrid-grid-xs-1",
856
- "grid-xs-10": "MuiGrid-grid-xs-10",
857
- "grid-xs-11": "MuiGrid-grid-xs-11",
858
- "grid-xs-12": "MuiGrid-grid-xs-12",
859
- "grid-xs-2": "MuiGrid-grid-xs-2",
860
- "grid-xs-3": "MuiGrid-grid-xs-3",
861
- "grid-xs-4": "MuiGrid-grid-xs-4",
862
- "grid-xs-5": "MuiGrid-grid-xs-5",
863
- "grid-xs-6": "MuiGrid-grid-xs-6",
864
- "grid-xs-7": "MuiGrid-grid-xs-7",
865
- "grid-xs-8": "MuiGrid-grid-xs-8",
866
- "grid-xs-9": "MuiGrid-grid-xs-9",
867
- "grid-xs-auto": "MuiGrid-grid-xs-auto",
868
- "grid-xs-true": "MuiGrid-grid-xs-true",
869
- "item": "MuiGrid-item",
870
- "justify-xs-center": "MuiGrid-justify-xs-center",
871
- "justify-xs-flex-end": "MuiGrid-justify-xs-flex-end",
872
- "justify-xs-space-around": "MuiGrid-justify-xs-space-around",
873
- "justify-xs-space-between": "MuiGrid-justify-xs-space-between",
874
- "justify-xs-space-evenly": "MuiGrid-justify-xs-space-evenly",
875
- "root": "MuiGrid-root",
876
- "spacing-xs-1": "MuiGrid-spacing-xs-1",
877
- "spacing-xs-10": "MuiGrid-spacing-xs-10",
878
- "spacing-xs-2": "MuiGrid-spacing-xs-2",
879
- "spacing-xs-3": "MuiGrid-spacing-xs-3",
880
- "spacing-xs-4": "MuiGrid-spacing-xs-4",
881
- "spacing-xs-5": "MuiGrid-spacing-xs-5",
882
- "spacing-xs-6": "MuiGrid-spacing-xs-6",
883
- "spacing-xs-7": "MuiGrid-spacing-xs-7",
884
- "spacing-xs-8": "MuiGrid-spacing-xs-8",
885
- "spacing-xs-9": "MuiGrid-spacing-xs-9",
886
- "wrap-xs-nowrap": "MuiGrid-wrap-xs-nowrap",
887
- "wrap-xs-wrap-reverse": "MuiGrid-wrap-xs-wrap-reverse",
888
- "zeroMinWidth": "MuiGrid-zeroMinWidth",
889
- }
890
- }
891
- container={true}
182
+ <div
183
+ className="govgr-grid"
892
184
  >
893
- <div
894
- className="MuiGrid-root MuiGrid-container"
185
+ <ForwardRef(Grid)
186
+ item={true}
187
+ xs={12}
895
188
  >
896
- <WithStyles(ForwardRef(Grid))
897
- item={true}
898
- xs={12}
189
+ <div
190
+ className="xs:govgr-grid__col-span-12"
899
191
  >
900
- <ForwardRef(Grid)
901
- classes={
902
- Object {
903
- "align-content-xs-center": "MuiGrid-align-content-xs-center",
904
- "align-content-xs-flex-end": "MuiGrid-align-content-xs-flex-end",
905
- "align-content-xs-flex-start": "MuiGrid-align-content-xs-flex-start",
906
- "align-content-xs-space-around": "MuiGrid-align-content-xs-space-around",
907
- "align-content-xs-space-between": "MuiGrid-align-content-xs-space-between",
908
- "align-items-xs-baseline": "MuiGrid-align-items-xs-baseline",
909
- "align-items-xs-center": "MuiGrid-align-items-xs-center",
910
- "align-items-xs-flex-end": "MuiGrid-align-items-xs-flex-end",
911
- "align-items-xs-flex-start": "MuiGrid-align-items-xs-flex-start",
912
- "container": "MuiGrid-container",
913
- "direction-xs-column": "MuiGrid-direction-xs-column",
914
- "direction-xs-column-reverse": "MuiGrid-direction-xs-column-reverse",
915
- "direction-xs-row-reverse": "MuiGrid-direction-xs-row-reverse",
916
- "grid-lg-1": "MuiGrid-grid-lg-1",
917
- "grid-lg-10": "MuiGrid-grid-lg-10",
918
- "grid-lg-11": "MuiGrid-grid-lg-11",
919
- "grid-lg-12": "MuiGrid-grid-lg-12",
920
- "grid-lg-2": "MuiGrid-grid-lg-2",
921
- "grid-lg-3": "MuiGrid-grid-lg-3",
922
- "grid-lg-4": "MuiGrid-grid-lg-4",
923
- "grid-lg-5": "MuiGrid-grid-lg-5",
924
- "grid-lg-6": "MuiGrid-grid-lg-6",
925
- "grid-lg-7": "MuiGrid-grid-lg-7",
926
- "grid-lg-8": "MuiGrid-grid-lg-8",
927
- "grid-lg-9": "MuiGrid-grid-lg-9",
928
- "grid-lg-auto": "MuiGrid-grid-lg-auto",
929
- "grid-lg-true": "MuiGrid-grid-lg-true",
930
- "grid-md-1": "MuiGrid-grid-md-1",
931
- "grid-md-10": "MuiGrid-grid-md-10",
932
- "grid-md-11": "MuiGrid-grid-md-11",
933
- "grid-md-12": "MuiGrid-grid-md-12",
934
- "grid-md-2": "MuiGrid-grid-md-2",
935
- "grid-md-3": "MuiGrid-grid-md-3",
936
- "grid-md-4": "MuiGrid-grid-md-4",
937
- "grid-md-5": "MuiGrid-grid-md-5",
938
- "grid-md-6": "MuiGrid-grid-md-6",
939
- "grid-md-7": "MuiGrid-grid-md-7",
940
- "grid-md-8": "MuiGrid-grid-md-8",
941
- "grid-md-9": "MuiGrid-grid-md-9",
942
- "grid-md-auto": "MuiGrid-grid-md-auto",
943
- "grid-md-true": "MuiGrid-grid-md-true",
944
- "grid-sm-1": "MuiGrid-grid-sm-1",
945
- "grid-sm-10": "MuiGrid-grid-sm-10",
946
- "grid-sm-11": "MuiGrid-grid-sm-11",
947
- "grid-sm-12": "MuiGrid-grid-sm-12",
948
- "grid-sm-2": "MuiGrid-grid-sm-2",
949
- "grid-sm-3": "MuiGrid-grid-sm-3",
950
- "grid-sm-4": "MuiGrid-grid-sm-4",
951
- "grid-sm-5": "MuiGrid-grid-sm-5",
952
- "grid-sm-6": "MuiGrid-grid-sm-6",
953
- "grid-sm-7": "MuiGrid-grid-sm-7",
954
- "grid-sm-8": "MuiGrid-grid-sm-8",
955
- "grid-sm-9": "MuiGrid-grid-sm-9",
956
- "grid-sm-auto": "MuiGrid-grid-sm-auto",
957
- "grid-sm-true": "MuiGrid-grid-sm-true",
958
- "grid-xl-1": "MuiGrid-grid-xl-1",
959
- "grid-xl-10": "MuiGrid-grid-xl-10",
960
- "grid-xl-11": "MuiGrid-grid-xl-11",
961
- "grid-xl-12": "MuiGrid-grid-xl-12",
962
- "grid-xl-2": "MuiGrid-grid-xl-2",
963
- "grid-xl-3": "MuiGrid-grid-xl-3",
964
- "grid-xl-4": "MuiGrid-grid-xl-4",
965
- "grid-xl-5": "MuiGrid-grid-xl-5",
966
- "grid-xl-6": "MuiGrid-grid-xl-6",
967
- "grid-xl-7": "MuiGrid-grid-xl-7",
968
- "grid-xl-8": "MuiGrid-grid-xl-8",
969
- "grid-xl-9": "MuiGrid-grid-xl-9",
970
- "grid-xl-auto": "MuiGrid-grid-xl-auto",
971
- "grid-xl-true": "MuiGrid-grid-xl-true",
972
- "grid-xs-1": "MuiGrid-grid-xs-1",
973
- "grid-xs-10": "MuiGrid-grid-xs-10",
974
- "grid-xs-11": "MuiGrid-grid-xs-11",
975
- "grid-xs-12": "MuiGrid-grid-xs-12",
976
- "grid-xs-2": "MuiGrid-grid-xs-2",
977
- "grid-xs-3": "MuiGrid-grid-xs-3",
978
- "grid-xs-4": "MuiGrid-grid-xs-4",
979
- "grid-xs-5": "MuiGrid-grid-xs-5",
980
- "grid-xs-6": "MuiGrid-grid-xs-6",
981
- "grid-xs-7": "MuiGrid-grid-xs-7",
982
- "grid-xs-8": "MuiGrid-grid-xs-8",
983
- "grid-xs-9": "MuiGrid-grid-xs-9",
984
- "grid-xs-auto": "MuiGrid-grid-xs-auto",
985
- "grid-xs-true": "MuiGrid-grid-xs-true",
986
- "item": "MuiGrid-item",
987
- "justify-xs-center": "MuiGrid-justify-xs-center",
988
- "justify-xs-flex-end": "MuiGrid-justify-xs-flex-end",
989
- "justify-xs-space-around": "MuiGrid-justify-xs-space-around",
990
- "justify-xs-space-between": "MuiGrid-justify-xs-space-between",
991
- "justify-xs-space-evenly": "MuiGrid-justify-xs-space-evenly",
992
- "root": "MuiGrid-root",
993
- "spacing-xs-1": "MuiGrid-spacing-xs-1",
994
- "spacing-xs-10": "MuiGrid-spacing-xs-10",
995
- "spacing-xs-2": "MuiGrid-spacing-xs-2",
996
- "spacing-xs-3": "MuiGrid-spacing-xs-3",
997
- "spacing-xs-4": "MuiGrid-spacing-xs-4",
998
- "spacing-xs-5": "MuiGrid-spacing-xs-5",
999
- "spacing-xs-6": "MuiGrid-spacing-xs-6",
1000
- "spacing-xs-7": "MuiGrid-spacing-xs-7",
1001
- "spacing-xs-8": "MuiGrid-spacing-xs-8",
1002
- "spacing-xs-9": "MuiGrid-spacing-xs-9",
1003
- "wrap-xs-nowrap": "MuiGrid-wrap-xs-nowrap",
1004
- "wrap-xs-wrap-reverse": "MuiGrid-wrap-xs-wrap-reverse",
1005
- "zeroMinWidth": "MuiGrid-zeroMinWidth",
1006
- }
1007
- }
1008
- item={true}
1009
- xs={12}
192
+ <Field
193
+ key="name"
194
+ name="name"
1010
195
  >
1011
- <div
1012
- className="MuiGrid-root MuiGrid-item MuiGrid-grid-xs-12"
196
+ <FieldBase
197
+ component={
198
+ Object {
199
+ "$$typeof": Symbol(react.forward_ref),
200
+ "render": [Function],
201
+ }
202
+ }
203
+ control={
204
+ Object {
205
+ "defaultValuesRef": Object {
206
+ "current": Object {},
207
+ },
208
+ "fieldArrayDefaultValuesRef": Object {
209
+ "current": Object {},
210
+ },
211
+ "fieldArrayNamesRef": Object {
212
+ "current": Set {},
213
+ },
214
+ "fieldArrayValuesRef": Object {
215
+ "current": Object {},
216
+ },
217
+ "fieldsRef": Object {
218
+ "current": Object {
219
+ "name": Object {
220
+ "ref": <input
221
+ aria-required="true"
222
+ class="govgr-input"
223
+ control="[object Object]"
224
+ name="name"
225
+ type="text"
226
+ />,
227
+ },
228
+ },
229
+ },
230
+ "fieldsWithValidationRef": Object {
231
+ "current": Object {},
232
+ },
233
+ "formStateRef": Object {
234
+ "current": Object {
235
+ "dirtyFields": Object {},
236
+ "errors": Object {},
237
+ "isDirty": false,
238
+ "isSubmitSuccessful": false,
239
+ "isSubmitted": false,
240
+ "isSubmitting": false,
241
+ "isValid": false,
242
+ "submitCount": 0,
243
+ "touched": Object {},
244
+ },
245
+ },
246
+ "getValues": [Function],
247
+ "isFormDirty": [Function],
248
+ "mode": Object {
249
+ "isOnAll": false,
250
+ "isOnBlur": false,
251
+ "isOnChange": false,
252
+ "isOnSubmit": true,
253
+ "isOnTouch": false,
254
+ },
255
+ "reValidateMode": Object {
256
+ "isReValidateOnBlur": false,
257
+ "isReValidateOnChange": false,
258
+ },
259
+ "readFormStateRef": Object {
260
+ "current": Object {
261
+ "dirtyFields": false,
262
+ "isDirty": false,
263
+ "isSubmitting": false,
264
+ "isValid": false,
265
+ "touched": false,
266
+ },
267
+ },
268
+ "register": [Function],
269
+ "removeFieldEventListener": [Function],
270
+ "resetFieldArrayFunctionRef": Object {
271
+ "current": Object {},
272
+ },
273
+ "setValue": [Function],
274
+ "shallowFieldsStateRef": Object {
275
+ "current": Object {},
276
+ },
277
+ "shouldUnregister": true,
278
+ "trigger": [Function],
279
+ "unregister": [Function],
280
+ "updateFormState": [Function],
281
+ "updateWatchedValue": [Function],
282
+ "useWatchFieldsRef": Object {
283
+ "current": Object {},
284
+ },
285
+ "useWatchRenderFunctionsRef": Object {
286
+ "current": Object {},
287
+ },
288
+ "validFieldsRef": Object {
289
+ "current": Object {},
290
+ },
291
+ "validateResolver": [Function],
292
+ "watchInternal": [Function],
293
+ }
294
+ }
295
+ controlled={false}
296
+ key="name"
297
+ label={
298
+ Object {
299
+ "primary": "name.field.primary",
300
+ "secondary": "name.field.secondary",
301
+ }
302
+ }
303
+ name="name"
304
+ register={[Function]}
305
+ required={true}
306
+ type="string"
1013
307
  >
1014
- <Field
308
+ <FieldContainer
309
+ label={
310
+ Object {
311
+ "primary": "name.field.primary",
312
+ "secondary": "name.field.secondary",
313
+ }
314
+ }
1015
315
  name="name"
1016
316
  >
1017
- <FieldBase
1018
- component={
1019
- Object {
1020
- "$$typeof": Symbol(react.forward_ref),
1021
- "render": [Function],
1022
- }
1023
- }
1024
- control={
1025
- Object {
1026
- "defaultValuesRef": Object {
1027
- "current": Object {},
1028
- },
1029
- "fieldArrayDefaultValuesRef": Object {
1030
- "current": Object {},
1031
- },
1032
- "fieldArrayNamesRef": Object {
1033
- "current": Set {},
1034
- },
1035
- "fieldArrayValuesRef": Object {
1036
- "current": Object {},
1037
- },
1038
- "fieldsRef": Object {
1039
- "current": Object {
1040
- "name": Object {
1041
- "ref": <input
1042
- aria-invalid="false"
1043
- class="MuiInputBase-input MuiOutlinedInput-input"
1044
- id="name"
1045
- name="name"
1046
- rows="1"
1047
- type="text"
1048
- value=""
1049
- />,
1050
- },
1051
- },
1052
- },
1053
- "fieldsWithValidationRef": Object {
1054
- "current": Object {},
1055
- },
1056
- "formStateRef": Object {
1057
- "current": Object {
1058
- "dirtyFields": Object {},
1059
- "errors": Object {},
1060
- "isDirty": false,
1061
- "isSubmitSuccessful": false,
1062
- "isSubmitted": false,
1063
- "isSubmitting": false,
1064
- "isValid": false,
1065
- "submitCount": 0,
1066
- "touched": Object {},
1067
- },
1068
- },
1069
- "getValues": [Function],
1070
- "isFormDirty": [Function],
1071
- "mode": Object {
1072
- "isOnAll": false,
1073
- "isOnBlur": false,
1074
- "isOnChange": false,
1075
- "isOnSubmit": true,
1076
- "isOnTouch": false,
1077
- },
1078
- "reValidateMode": Object {
1079
- "isReValidateOnBlur": false,
1080
- "isReValidateOnChange": false,
1081
- },
1082
- "readFormStateRef": Object {
1083
- "current": Object {
1084
- "dirtyFields": false,
1085
- "isDirty": false,
1086
- "isSubmitting": false,
1087
- "isValid": false,
1088
- "touched": false,
1089
- },
1090
- },
1091
- "register": [Function],
1092
- "removeFieldEventListener": [Function],
1093
- "resetFieldArrayFunctionRef": Object {
1094
- "current": Object {},
1095
- },
1096
- "setValue": [Function],
1097
- "shallowFieldsStateRef": Object {
1098
- "current": Object {},
1099
- },
1100
- "shouldUnregister": true,
1101
- "trigger": [Function],
1102
- "unregister": [Function],
1103
- "updateFormState": [Function],
1104
- "updateWatchedValue": [Function],
1105
- "useWatchFieldsRef": Object {
1106
- "current": Object {},
1107
- },
1108
- "useWatchRenderFunctionsRef": Object {
1109
- "current": Object {},
1110
- },
1111
- "validFieldsRef": Object {
1112
- "current": Object {},
1113
- },
1114
- "validateResolver": [Function],
1115
- "watchInternal": [Function],
1116
- }
1117
- }
1118
- controlled={false}
1119
- key="name"
1120
- label={
1121
- Object {
1122
- "primary": "name.field.primary",
1123
- "secondary": "name.field.secondary",
1124
- }
1125
- }
1126
- name="name"
1127
- register={[Function]}
1128
- required={true}
1129
- type="string"
317
+ <ForwardRef(Field)
318
+ error={false}
1130
319
  >
1131
- <FieldContainer
1132
- label={
1133
- Object {
1134
- "primary": "name.field.primary",
1135
- "secondary": "name.field.secondary",
1136
- }
1137
- }
320
+ <div
321
+ className="govgr-field"
1138
322
  >
1139
- <WithStyles(ForwardRef(Grid))
1140
- className="makeStyles-fieldContainer-3"
1141
- item={true}
1142
- sm={12}
1143
- xs={12}
1144
- >
1145
- <ForwardRef(Grid)
1146
- className="makeStyles-fieldContainer-3"
1147
- classes={
1148
- Object {
1149
- "align-content-xs-center": "MuiGrid-align-content-xs-center",
1150
- "align-content-xs-flex-end": "MuiGrid-align-content-xs-flex-end",
1151
- "align-content-xs-flex-start": "MuiGrid-align-content-xs-flex-start",
1152
- "align-content-xs-space-around": "MuiGrid-align-content-xs-space-around",
1153
- "align-content-xs-space-between": "MuiGrid-align-content-xs-space-between",
1154
- "align-items-xs-baseline": "MuiGrid-align-items-xs-baseline",
1155
- "align-items-xs-center": "MuiGrid-align-items-xs-center",
1156
- "align-items-xs-flex-end": "MuiGrid-align-items-xs-flex-end",
1157
- "align-items-xs-flex-start": "MuiGrid-align-items-xs-flex-start",
1158
- "container": "MuiGrid-container",
1159
- "direction-xs-column": "MuiGrid-direction-xs-column",
1160
- "direction-xs-column-reverse": "MuiGrid-direction-xs-column-reverse",
1161
- "direction-xs-row-reverse": "MuiGrid-direction-xs-row-reverse",
1162
- "grid-lg-1": "MuiGrid-grid-lg-1",
1163
- "grid-lg-10": "MuiGrid-grid-lg-10",
1164
- "grid-lg-11": "MuiGrid-grid-lg-11",
1165
- "grid-lg-12": "MuiGrid-grid-lg-12",
1166
- "grid-lg-2": "MuiGrid-grid-lg-2",
1167
- "grid-lg-3": "MuiGrid-grid-lg-3",
1168
- "grid-lg-4": "MuiGrid-grid-lg-4",
1169
- "grid-lg-5": "MuiGrid-grid-lg-5",
1170
- "grid-lg-6": "MuiGrid-grid-lg-6",
1171
- "grid-lg-7": "MuiGrid-grid-lg-7",
1172
- "grid-lg-8": "MuiGrid-grid-lg-8",
1173
- "grid-lg-9": "MuiGrid-grid-lg-9",
1174
- "grid-lg-auto": "MuiGrid-grid-lg-auto",
1175
- "grid-lg-true": "MuiGrid-grid-lg-true",
1176
- "grid-md-1": "MuiGrid-grid-md-1",
1177
- "grid-md-10": "MuiGrid-grid-md-10",
1178
- "grid-md-11": "MuiGrid-grid-md-11",
1179
- "grid-md-12": "MuiGrid-grid-md-12",
1180
- "grid-md-2": "MuiGrid-grid-md-2",
1181
- "grid-md-3": "MuiGrid-grid-md-3",
1182
- "grid-md-4": "MuiGrid-grid-md-4",
1183
- "grid-md-5": "MuiGrid-grid-md-5",
1184
- "grid-md-6": "MuiGrid-grid-md-6",
1185
- "grid-md-7": "MuiGrid-grid-md-7",
1186
- "grid-md-8": "MuiGrid-grid-md-8",
1187
- "grid-md-9": "MuiGrid-grid-md-9",
1188
- "grid-md-auto": "MuiGrid-grid-md-auto",
1189
- "grid-md-true": "MuiGrid-grid-md-true",
1190
- "grid-sm-1": "MuiGrid-grid-sm-1",
1191
- "grid-sm-10": "MuiGrid-grid-sm-10",
1192
- "grid-sm-11": "MuiGrid-grid-sm-11",
1193
- "grid-sm-12": "MuiGrid-grid-sm-12",
1194
- "grid-sm-2": "MuiGrid-grid-sm-2",
1195
- "grid-sm-3": "MuiGrid-grid-sm-3",
1196
- "grid-sm-4": "MuiGrid-grid-sm-4",
1197
- "grid-sm-5": "MuiGrid-grid-sm-5",
1198
- "grid-sm-6": "MuiGrid-grid-sm-6",
1199
- "grid-sm-7": "MuiGrid-grid-sm-7",
1200
- "grid-sm-8": "MuiGrid-grid-sm-8",
1201
- "grid-sm-9": "MuiGrid-grid-sm-9",
1202
- "grid-sm-auto": "MuiGrid-grid-sm-auto",
1203
- "grid-sm-true": "MuiGrid-grid-sm-true",
1204
- "grid-xl-1": "MuiGrid-grid-xl-1",
1205
- "grid-xl-10": "MuiGrid-grid-xl-10",
1206
- "grid-xl-11": "MuiGrid-grid-xl-11",
1207
- "grid-xl-12": "MuiGrid-grid-xl-12",
1208
- "grid-xl-2": "MuiGrid-grid-xl-2",
1209
- "grid-xl-3": "MuiGrid-grid-xl-3",
1210
- "grid-xl-4": "MuiGrid-grid-xl-4",
1211
- "grid-xl-5": "MuiGrid-grid-xl-5",
1212
- "grid-xl-6": "MuiGrid-grid-xl-6",
1213
- "grid-xl-7": "MuiGrid-grid-xl-7",
1214
- "grid-xl-8": "MuiGrid-grid-xl-8",
1215
- "grid-xl-9": "MuiGrid-grid-xl-9",
1216
- "grid-xl-auto": "MuiGrid-grid-xl-auto",
1217
- "grid-xl-true": "MuiGrid-grid-xl-true",
1218
- "grid-xs-1": "MuiGrid-grid-xs-1",
1219
- "grid-xs-10": "MuiGrid-grid-xs-10",
1220
- "grid-xs-11": "MuiGrid-grid-xs-11",
1221
- "grid-xs-12": "MuiGrid-grid-xs-12",
1222
- "grid-xs-2": "MuiGrid-grid-xs-2",
1223
- "grid-xs-3": "MuiGrid-grid-xs-3",
1224
- "grid-xs-4": "MuiGrid-grid-xs-4",
1225
- "grid-xs-5": "MuiGrid-grid-xs-5",
1226
- "grid-xs-6": "MuiGrid-grid-xs-6",
1227
- "grid-xs-7": "MuiGrid-grid-xs-7",
1228
- "grid-xs-8": "MuiGrid-grid-xs-8",
1229
- "grid-xs-9": "MuiGrid-grid-xs-9",
1230
- "grid-xs-auto": "MuiGrid-grid-xs-auto",
1231
- "grid-xs-true": "MuiGrid-grid-xs-true",
1232
- "item": "MuiGrid-item",
1233
- "justify-xs-center": "MuiGrid-justify-xs-center",
1234
- "justify-xs-flex-end": "MuiGrid-justify-xs-flex-end",
1235
- "justify-xs-space-around": "MuiGrid-justify-xs-space-around",
1236
- "justify-xs-space-between": "MuiGrid-justify-xs-space-between",
1237
- "justify-xs-space-evenly": "MuiGrid-justify-xs-space-evenly",
1238
- "root": "MuiGrid-root",
1239
- "spacing-xs-1": "MuiGrid-spacing-xs-1",
1240
- "spacing-xs-10": "MuiGrid-spacing-xs-10",
1241
- "spacing-xs-2": "MuiGrid-spacing-xs-2",
1242
- "spacing-xs-3": "MuiGrid-spacing-xs-3",
1243
- "spacing-xs-4": "MuiGrid-spacing-xs-4",
1244
- "spacing-xs-5": "MuiGrid-spacing-xs-5",
1245
- "spacing-xs-6": "MuiGrid-spacing-xs-6",
1246
- "spacing-xs-7": "MuiGrid-spacing-xs-7",
1247
- "spacing-xs-8": "MuiGrid-spacing-xs-8",
1248
- "spacing-xs-9": "MuiGrid-spacing-xs-9",
1249
- "wrap-xs-nowrap": "MuiGrid-wrap-xs-nowrap",
1250
- "wrap-xs-wrap-reverse": "MuiGrid-wrap-xs-wrap-reverse",
1251
- "zeroMinWidth": "MuiGrid-zeroMinWidth",
1252
- }
1253
- }
1254
- item={true}
1255
- sm={12}
1256
- xs={12}
323
+ <ForwardRef(Label)>
324
+ <label
325
+ className="govgr-label"
1257
326
  >
1258
- <div
1259
- className="MuiGrid-root makeStyles-fieldContainer-3 MuiGrid-item MuiGrid-grid-xs-12 MuiGrid-grid-sm-12"
327
+ <Label
328
+ label={
329
+ Object {
330
+ "primary": "name.field.primary",
331
+ "secondary": "name.field.secondary",
332
+ }
333
+ }
1260
334
  >
1261
- <div>
1262
- <Label
1263
- label={
1264
- Object {
1265
- "primary": "name.field.primary",
1266
- "secondary": "name.field.secondary",
1267
- }
1268
- }
335
+ <ForwardRef(LabelTitle)
336
+ size="s"
337
+ >
338
+ <span
339
+ className="govgr-heading-s"
340
+ >
341
+ name.field.primary
342
+ </span>
343
+ </ForwardRef(LabelTitle)>
344
+ <ForwardRef(Hint)>
345
+ <p
346
+ className="govgr-hint"
1269
347
  >
1270
- <WithStyles(ForwardRef(Grid))
1271
- className="makeStyles-labels-8"
1272
- container={true}
1273
- >
1274
- <ForwardRef(Grid)
1275
- className="makeStyles-labels-8"
1276
- classes={
1277
- Object {
1278
- "align-content-xs-center": "MuiGrid-align-content-xs-center",
1279
- "align-content-xs-flex-end": "MuiGrid-align-content-xs-flex-end",
1280
- "align-content-xs-flex-start": "MuiGrid-align-content-xs-flex-start",
1281
- "align-content-xs-space-around": "MuiGrid-align-content-xs-space-around",
1282
- "align-content-xs-space-between": "MuiGrid-align-content-xs-space-between",
1283
- "align-items-xs-baseline": "MuiGrid-align-items-xs-baseline",
1284
- "align-items-xs-center": "MuiGrid-align-items-xs-center",
1285
- "align-items-xs-flex-end": "MuiGrid-align-items-xs-flex-end",
1286
- "align-items-xs-flex-start": "MuiGrid-align-items-xs-flex-start",
1287
- "container": "MuiGrid-container",
1288
- "direction-xs-column": "MuiGrid-direction-xs-column",
1289
- "direction-xs-column-reverse": "MuiGrid-direction-xs-column-reverse",
1290
- "direction-xs-row-reverse": "MuiGrid-direction-xs-row-reverse",
1291
- "grid-lg-1": "MuiGrid-grid-lg-1",
1292
- "grid-lg-10": "MuiGrid-grid-lg-10",
1293
- "grid-lg-11": "MuiGrid-grid-lg-11",
1294
- "grid-lg-12": "MuiGrid-grid-lg-12",
1295
- "grid-lg-2": "MuiGrid-grid-lg-2",
1296
- "grid-lg-3": "MuiGrid-grid-lg-3",
1297
- "grid-lg-4": "MuiGrid-grid-lg-4",
1298
- "grid-lg-5": "MuiGrid-grid-lg-5",
1299
- "grid-lg-6": "MuiGrid-grid-lg-6",
1300
- "grid-lg-7": "MuiGrid-grid-lg-7",
1301
- "grid-lg-8": "MuiGrid-grid-lg-8",
1302
- "grid-lg-9": "MuiGrid-grid-lg-9",
1303
- "grid-lg-auto": "MuiGrid-grid-lg-auto",
1304
- "grid-lg-true": "MuiGrid-grid-lg-true",
1305
- "grid-md-1": "MuiGrid-grid-md-1",
1306
- "grid-md-10": "MuiGrid-grid-md-10",
1307
- "grid-md-11": "MuiGrid-grid-md-11",
1308
- "grid-md-12": "MuiGrid-grid-md-12",
1309
- "grid-md-2": "MuiGrid-grid-md-2",
1310
- "grid-md-3": "MuiGrid-grid-md-3",
1311
- "grid-md-4": "MuiGrid-grid-md-4",
1312
- "grid-md-5": "MuiGrid-grid-md-5",
1313
- "grid-md-6": "MuiGrid-grid-md-6",
1314
- "grid-md-7": "MuiGrid-grid-md-7",
1315
- "grid-md-8": "MuiGrid-grid-md-8",
1316
- "grid-md-9": "MuiGrid-grid-md-9",
1317
- "grid-md-auto": "MuiGrid-grid-md-auto",
1318
- "grid-md-true": "MuiGrid-grid-md-true",
1319
- "grid-sm-1": "MuiGrid-grid-sm-1",
1320
- "grid-sm-10": "MuiGrid-grid-sm-10",
1321
- "grid-sm-11": "MuiGrid-grid-sm-11",
1322
- "grid-sm-12": "MuiGrid-grid-sm-12",
1323
- "grid-sm-2": "MuiGrid-grid-sm-2",
1324
- "grid-sm-3": "MuiGrid-grid-sm-3",
1325
- "grid-sm-4": "MuiGrid-grid-sm-4",
1326
- "grid-sm-5": "MuiGrid-grid-sm-5",
1327
- "grid-sm-6": "MuiGrid-grid-sm-6",
1328
- "grid-sm-7": "MuiGrid-grid-sm-7",
1329
- "grid-sm-8": "MuiGrid-grid-sm-8",
1330
- "grid-sm-9": "MuiGrid-grid-sm-9",
1331
- "grid-sm-auto": "MuiGrid-grid-sm-auto",
1332
- "grid-sm-true": "MuiGrid-grid-sm-true",
1333
- "grid-xl-1": "MuiGrid-grid-xl-1",
1334
- "grid-xl-10": "MuiGrid-grid-xl-10",
1335
- "grid-xl-11": "MuiGrid-grid-xl-11",
1336
- "grid-xl-12": "MuiGrid-grid-xl-12",
1337
- "grid-xl-2": "MuiGrid-grid-xl-2",
1338
- "grid-xl-3": "MuiGrid-grid-xl-3",
1339
- "grid-xl-4": "MuiGrid-grid-xl-4",
1340
- "grid-xl-5": "MuiGrid-grid-xl-5",
1341
- "grid-xl-6": "MuiGrid-grid-xl-6",
1342
- "grid-xl-7": "MuiGrid-grid-xl-7",
1343
- "grid-xl-8": "MuiGrid-grid-xl-8",
1344
- "grid-xl-9": "MuiGrid-grid-xl-9",
1345
- "grid-xl-auto": "MuiGrid-grid-xl-auto",
1346
- "grid-xl-true": "MuiGrid-grid-xl-true",
1347
- "grid-xs-1": "MuiGrid-grid-xs-1",
1348
- "grid-xs-10": "MuiGrid-grid-xs-10",
1349
- "grid-xs-11": "MuiGrid-grid-xs-11",
1350
- "grid-xs-12": "MuiGrid-grid-xs-12",
1351
- "grid-xs-2": "MuiGrid-grid-xs-2",
1352
- "grid-xs-3": "MuiGrid-grid-xs-3",
1353
- "grid-xs-4": "MuiGrid-grid-xs-4",
1354
- "grid-xs-5": "MuiGrid-grid-xs-5",
1355
- "grid-xs-6": "MuiGrid-grid-xs-6",
1356
- "grid-xs-7": "MuiGrid-grid-xs-7",
1357
- "grid-xs-8": "MuiGrid-grid-xs-8",
1358
- "grid-xs-9": "MuiGrid-grid-xs-9",
1359
- "grid-xs-auto": "MuiGrid-grid-xs-auto",
1360
- "grid-xs-true": "MuiGrid-grid-xs-true",
1361
- "item": "MuiGrid-item",
1362
- "justify-xs-center": "MuiGrid-justify-xs-center",
1363
- "justify-xs-flex-end": "MuiGrid-justify-xs-flex-end",
1364
- "justify-xs-space-around": "MuiGrid-justify-xs-space-around",
1365
- "justify-xs-space-between": "MuiGrid-justify-xs-space-between",
1366
- "justify-xs-space-evenly": "MuiGrid-justify-xs-space-evenly",
1367
- "root": "MuiGrid-root",
1368
- "spacing-xs-1": "MuiGrid-spacing-xs-1",
1369
- "spacing-xs-10": "MuiGrid-spacing-xs-10",
1370
- "spacing-xs-2": "MuiGrid-spacing-xs-2",
1371
- "spacing-xs-3": "MuiGrid-spacing-xs-3",
1372
- "spacing-xs-4": "MuiGrid-spacing-xs-4",
1373
- "spacing-xs-5": "MuiGrid-spacing-xs-5",
1374
- "spacing-xs-6": "MuiGrid-spacing-xs-6",
1375
- "spacing-xs-7": "MuiGrid-spacing-xs-7",
1376
- "spacing-xs-8": "MuiGrid-spacing-xs-8",
1377
- "spacing-xs-9": "MuiGrid-spacing-xs-9",
1378
- "wrap-xs-nowrap": "MuiGrid-wrap-xs-nowrap",
1379
- "wrap-xs-wrap-reverse": "MuiGrid-wrap-xs-wrap-reverse",
1380
- "zeroMinWidth": "MuiGrid-zeroMinWidth",
1381
- }
1382
- }
1383
- container={true}
1384
- >
1385
- <div
1386
- className="MuiGrid-root makeStyles-labels-8 MuiGrid-container"
1387
- >
1388
- <WithStyles(ForwardRef(Grid))
1389
- item={true}
1390
- xs={12}
1391
- >
1392
- <ForwardRef(Grid)
1393
- classes={
1394
- Object {
1395
- "align-content-xs-center": "MuiGrid-align-content-xs-center",
1396
- "align-content-xs-flex-end": "MuiGrid-align-content-xs-flex-end",
1397
- "align-content-xs-flex-start": "MuiGrid-align-content-xs-flex-start",
1398
- "align-content-xs-space-around": "MuiGrid-align-content-xs-space-around",
1399
- "align-content-xs-space-between": "MuiGrid-align-content-xs-space-between",
1400
- "align-items-xs-baseline": "MuiGrid-align-items-xs-baseline",
1401
- "align-items-xs-center": "MuiGrid-align-items-xs-center",
1402
- "align-items-xs-flex-end": "MuiGrid-align-items-xs-flex-end",
1403
- "align-items-xs-flex-start": "MuiGrid-align-items-xs-flex-start",
1404
- "container": "MuiGrid-container",
1405
- "direction-xs-column": "MuiGrid-direction-xs-column",
1406
- "direction-xs-column-reverse": "MuiGrid-direction-xs-column-reverse",
1407
- "direction-xs-row-reverse": "MuiGrid-direction-xs-row-reverse",
1408
- "grid-lg-1": "MuiGrid-grid-lg-1",
1409
- "grid-lg-10": "MuiGrid-grid-lg-10",
1410
- "grid-lg-11": "MuiGrid-grid-lg-11",
1411
- "grid-lg-12": "MuiGrid-grid-lg-12",
1412
- "grid-lg-2": "MuiGrid-grid-lg-2",
1413
- "grid-lg-3": "MuiGrid-grid-lg-3",
1414
- "grid-lg-4": "MuiGrid-grid-lg-4",
1415
- "grid-lg-5": "MuiGrid-grid-lg-5",
1416
- "grid-lg-6": "MuiGrid-grid-lg-6",
1417
- "grid-lg-7": "MuiGrid-grid-lg-7",
1418
- "grid-lg-8": "MuiGrid-grid-lg-8",
1419
- "grid-lg-9": "MuiGrid-grid-lg-9",
1420
- "grid-lg-auto": "MuiGrid-grid-lg-auto",
1421
- "grid-lg-true": "MuiGrid-grid-lg-true",
1422
- "grid-md-1": "MuiGrid-grid-md-1",
1423
- "grid-md-10": "MuiGrid-grid-md-10",
1424
- "grid-md-11": "MuiGrid-grid-md-11",
1425
- "grid-md-12": "MuiGrid-grid-md-12",
1426
- "grid-md-2": "MuiGrid-grid-md-2",
1427
- "grid-md-3": "MuiGrid-grid-md-3",
1428
- "grid-md-4": "MuiGrid-grid-md-4",
1429
- "grid-md-5": "MuiGrid-grid-md-5",
1430
- "grid-md-6": "MuiGrid-grid-md-6",
1431
- "grid-md-7": "MuiGrid-grid-md-7",
1432
- "grid-md-8": "MuiGrid-grid-md-8",
1433
- "grid-md-9": "MuiGrid-grid-md-9",
1434
- "grid-md-auto": "MuiGrid-grid-md-auto",
1435
- "grid-md-true": "MuiGrid-grid-md-true",
1436
- "grid-sm-1": "MuiGrid-grid-sm-1",
1437
- "grid-sm-10": "MuiGrid-grid-sm-10",
1438
- "grid-sm-11": "MuiGrid-grid-sm-11",
1439
- "grid-sm-12": "MuiGrid-grid-sm-12",
1440
- "grid-sm-2": "MuiGrid-grid-sm-2",
1441
- "grid-sm-3": "MuiGrid-grid-sm-3",
1442
- "grid-sm-4": "MuiGrid-grid-sm-4",
1443
- "grid-sm-5": "MuiGrid-grid-sm-5",
1444
- "grid-sm-6": "MuiGrid-grid-sm-6",
1445
- "grid-sm-7": "MuiGrid-grid-sm-7",
1446
- "grid-sm-8": "MuiGrid-grid-sm-8",
1447
- "grid-sm-9": "MuiGrid-grid-sm-9",
1448
- "grid-sm-auto": "MuiGrid-grid-sm-auto",
1449
- "grid-sm-true": "MuiGrid-grid-sm-true",
1450
- "grid-xl-1": "MuiGrid-grid-xl-1",
1451
- "grid-xl-10": "MuiGrid-grid-xl-10",
1452
- "grid-xl-11": "MuiGrid-grid-xl-11",
1453
- "grid-xl-12": "MuiGrid-grid-xl-12",
1454
- "grid-xl-2": "MuiGrid-grid-xl-2",
1455
- "grid-xl-3": "MuiGrid-grid-xl-3",
1456
- "grid-xl-4": "MuiGrid-grid-xl-4",
1457
- "grid-xl-5": "MuiGrid-grid-xl-5",
1458
- "grid-xl-6": "MuiGrid-grid-xl-6",
1459
- "grid-xl-7": "MuiGrid-grid-xl-7",
1460
- "grid-xl-8": "MuiGrid-grid-xl-8",
1461
- "grid-xl-9": "MuiGrid-grid-xl-9",
1462
- "grid-xl-auto": "MuiGrid-grid-xl-auto",
1463
- "grid-xl-true": "MuiGrid-grid-xl-true",
1464
- "grid-xs-1": "MuiGrid-grid-xs-1",
1465
- "grid-xs-10": "MuiGrid-grid-xs-10",
1466
- "grid-xs-11": "MuiGrid-grid-xs-11",
1467
- "grid-xs-12": "MuiGrid-grid-xs-12",
1468
- "grid-xs-2": "MuiGrid-grid-xs-2",
1469
- "grid-xs-3": "MuiGrid-grid-xs-3",
1470
- "grid-xs-4": "MuiGrid-grid-xs-4",
1471
- "grid-xs-5": "MuiGrid-grid-xs-5",
1472
- "grid-xs-6": "MuiGrid-grid-xs-6",
1473
- "grid-xs-7": "MuiGrid-grid-xs-7",
1474
- "grid-xs-8": "MuiGrid-grid-xs-8",
1475
- "grid-xs-9": "MuiGrid-grid-xs-9",
1476
- "grid-xs-auto": "MuiGrid-grid-xs-auto",
1477
- "grid-xs-true": "MuiGrid-grid-xs-true",
1478
- "item": "MuiGrid-item",
1479
- "justify-xs-center": "MuiGrid-justify-xs-center",
1480
- "justify-xs-flex-end": "MuiGrid-justify-xs-flex-end",
1481
- "justify-xs-space-around": "MuiGrid-justify-xs-space-around",
1482
- "justify-xs-space-between": "MuiGrid-justify-xs-space-between",
1483
- "justify-xs-space-evenly": "MuiGrid-justify-xs-space-evenly",
1484
- "root": "MuiGrid-root",
1485
- "spacing-xs-1": "MuiGrid-spacing-xs-1",
1486
- "spacing-xs-10": "MuiGrid-spacing-xs-10",
1487
- "spacing-xs-2": "MuiGrid-spacing-xs-2",
1488
- "spacing-xs-3": "MuiGrid-spacing-xs-3",
1489
- "spacing-xs-4": "MuiGrid-spacing-xs-4",
1490
- "spacing-xs-5": "MuiGrid-spacing-xs-5",
1491
- "spacing-xs-6": "MuiGrid-spacing-xs-6",
1492
- "spacing-xs-7": "MuiGrid-spacing-xs-7",
1493
- "spacing-xs-8": "MuiGrid-spacing-xs-8",
1494
- "spacing-xs-9": "MuiGrid-spacing-xs-9",
1495
- "wrap-xs-nowrap": "MuiGrid-wrap-xs-nowrap",
1496
- "wrap-xs-wrap-reverse": "MuiGrid-wrap-xs-wrap-reverse",
1497
- "zeroMinWidth": "MuiGrid-zeroMinWidth",
1498
- }
1499
- }
1500
- item={true}
1501
- xs={12}
1502
- >
1503
- <div
1504
- className="MuiGrid-root MuiGrid-item MuiGrid-grid-xs-12"
1505
- >
1506
- <NormalText
1507
- className="makeStyles-primaryLabel-9"
1508
- >
1509
- <WithStyles(ForwardRef(Typography))
1510
- className="makeStyles-primaryLabel-9"
1511
- component="span"
1512
- variant="body1"
1513
- >
1514
- <ForwardRef(Typography)
1515
- className="makeStyles-primaryLabel-9"
1516
- classes={
1517
- Object {
1518
- "alignCenter": "MuiTypography-alignCenter",
1519
- "alignJustify": "MuiTypography-alignJustify",
1520
- "alignLeft": "MuiTypography-alignLeft",
1521
- "alignRight": "MuiTypography-alignRight",
1522
- "body1": "MuiTypography-body1",
1523
- "body2": "MuiTypography-body2",
1524
- "button": "MuiTypography-button",
1525
- "caption": "MuiTypography-caption",
1526
- "colorError": "MuiTypography-colorError",
1527
- "colorInherit": "MuiTypography-colorInherit",
1528
- "colorPrimary": "MuiTypography-colorPrimary",
1529
- "colorSecondary": "MuiTypography-colorSecondary",
1530
- "colorTextPrimary": "MuiTypography-colorTextPrimary",
1531
- "colorTextSecondary": "MuiTypography-colorTextSecondary",
1532
- "displayBlock": "MuiTypography-displayBlock",
1533
- "displayInline": "MuiTypography-displayInline",
1534
- "gutterBottom": "MuiTypography-gutterBottom",
1535
- "h1": "MuiTypography-h1",
1536
- "h2": "MuiTypography-h2",
1537
- "h3": "MuiTypography-h3",
1538
- "h4": "MuiTypography-h4",
1539
- "h5": "MuiTypography-h5",
1540
- "h6": "MuiTypography-h6",
1541
- "noWrap": "MuiTypography-noWrap",
1542
- "overline": "MuiTypography-overline",
1543
- "paragraph": "MuiTypography-paragraph",
1544
- "root": "MuiTypography-root",
1545
- "srOnly": "MuiTypography-srOnly",
1546
- "subtitle1": "MuiTypography-subtitle1",
1547
- "subtitle2": "MuiTypography-subtitle2",
1548
- }
1549
- }
1550
- component="span"
1551
- variant="body1"
1552
- >
1553
- <span
1554
- className="MuiTypography-root makeStyles-primaryLabel-9 MuiTypography-body1"
1555
- >
1556
- name.field.primary
1557
- </span>
1558
- </ForwardRef(Typography)>
1559
- </WithStyles(ForwardRef(Typography))>
1560
- </NormalText>
1561
- </div>
1562
- </ForwardRef(Grid)>
1563
- </WithStyles(ForwardRef(Grid))>
1564
- <WithStyles(ForwardRef(Grid))
1565
- item={true}
1566
- xs={12}
1567
- >
1568
- <ForwardRef(Grid)
1569
- classes={
1570
- Object {
1571
- "align-content-xs-center": "MuiGrid-align-content-xs-center",
1572
- "align-content-xs-flex-end": "MuiGrid-align-content-xs-flex-end",
1573
- "align-content-xs-flex-start": "MuiGrid-align-content-xs-flex-start",
1574
- "align-content-xs-space-around": "MuiGrid-align-content-xs-space-around",
1575
- "align-content-xs-space-between": "MuiGrid-align-content-xs-space-between",
1576
- "align-items-xs-baseline": "MuiGrid-align-items-xs-baseline",
1577
- "align-items-xs-center": "MuiGrid-align-items-xs-center",
1578
- "align-items-xs-flex-end": "MuiGrid-align-items-xs-flex-end",
1579
- "align-items-xs-flex-start": "MuiGrid-align-items-xs-flex-start",
1580
- "container": "MuiGrid-container",
1581
- "direction-xs-column": "MuiGrid-direction-xs-column",
1582
- "direction-xs-column-reverse": "MuiGrid-direction-xs-column-reverse",
1583
- "direction-xs-row-reverse": "MuiGrid-direction-xs-row-reverse",
1584
- "grid-lg-1": "MuiGrid-grid-lg-1",
1585
- "grid-lg-10": "MuiGrid-grid-lg-10",
1586
- "grid-lg-11": "MuiGrid-grid-lg-11",
1587
- "grid-lg-12": "MuiGrid-grid-lg-12",
1588
- "grid-lg-2": "MuiGrid-grid-lg-2",
1589
- "grid-lg-3": "MuiGrid-grid-lg-3",
1590
- "grid-lg-4": "MuiGrid-grid-lg-4",
1591
- "grid-lg-5": "MuiGrid-grid-lg-5",
1592
- "grid-lg-6": "MuiGrid-grid-lg-6",
1593
- "grid-lg-7": "MuiGrid-grid-lg-7",
1594
- "grid-lg-8": "MuiGrid-grid-lg-8",
1595
- "grid-lg-9": "MuiGrid-grid-lg-9",
1596
- "grid-lg-auto": "MuiGrid-grid-lg-auto",
1597
- "grid-lg-true": "MuiGrid-grid-lg-true",
1598
- "grid-md-1": "MuiGrid-grid-md-1",
1599
- "grid-md-10": "MuiGrid-grid-md-10",
1600
- "grid-md-11": "MuiGrid-grid-md-11",
1601
- "grid-md-12": "MuiGrid-grid-md-12",
1602
- "grid-md-2": "MuiGrid-grid-md-2",
1603
- "grid-md-3": "MuiGrid-grid-md-3",
1604
- "grid-md-4": "MuiGrid-grid-md-4",
1605
- "grid-md-5": "MuiGrid-grid-md-5",
1606
- "grid-md-6": "MuiGrid-grid-md-6",
1607
- "grid-md-7": "MuiGrid-grid-md-7",
1608
- "grid-md-8": "MuiGrid-grid-md-8",
1609
- "grid-md-9": "MuiGrid-grid-md-9",
1610
- "grid-md-auto": "MuiGrid-grid-md-auto",
1611
- "grid-md-true": "MuiGrid-grid-md-true",
1612
- "grid-sm-1": "MuiGrid-grid-sm-1",
1613
- "grid-sm-10": "MuiGrid-grid-sm-10",
1614
- "grid-sm-11": "MuiGrid-grid-sm-11",
1615
- "grid-sm-12": "MuiGrid-grid-sm-12",
1616
- "grid-sm-2": "MuiGrid-grid-sm-2",
1617
- "grid-sm-3": "MuiGrid-grid-sm-3",
1618
- "grid-sm-4": "MuiGrid-grid-sm-4",
1619
- "grid-sm-5": "MuiGrid-grid-sm-5",
1620
- "grid-sm-6": "MuiGrid-grid-sm-6",
1621
- "grid-sm-7": "MuiGrid-grid-sm-7",
1622
- "grid-sm-8": "MuiGrid-grid-sm-8",
1623
- "grid-sm-9": "MuiGrid-grid-sm-9",
1624
- "grid-sm-auto": "MuiGrid-grid-sm-auto",
1625
- "grid-sm-true": "MuiGrid-grid-sm-true",
1626
- "grid-xl-1": "MuiGrid-grid-xl-1",
1627
- "grid-xl-10": "MuiGrid-grid-xl-10",
1628
- "grid-xl-11": "MuiGrid-grid-xl-11",
1629
- "grid-xl-12": "MuiGrid-grid-xl-12",
1630
- "grid-xl-2": "MuiGrid-grid-xl-2",
1631
- "grid-xl-3": "MuiGrid-grid-xl-3",
1632
- "grid-xl-4": "MuiGrid-grid-xl-4",
1633
- "grid-xl-5": "MuiGrid-grid-xl-5",
1634
- "grid-xl-6": "MuiGrid-grid-xl-6",
1635
- "grid-xl-7": "MuiGrid-grid-xl-7",
1636
- "grid-xl-8": "MuiGrid-grid-xl-8",
1637
- "grid-xl-9": "MuiGrid-grid-xl-9",
1638
- "grid-xl-auto": "MuiGrid-grid-xl-auto",
1639
- "grid-xl-true": "MuiGrid-grid-xl-true",
1640
- "grid-xs-1": "MuiGrid-grid-xs-1",
1641
- "grid-xs-10": "MuiGrid-grid-xs-10",
1642
- "grid-xs-11": "MuiGrid-grid-xs-11",
1643
- "grid-xs-12": "MuiGrid-grid-xs-12",
1644
- "grid-xs-2": "MuiGrid-grid-xs-2",
1645
- "grid-xs-3": "MuiGrid-grid-xs-3",
1646
- "grid-xs-4": "MuiGrid-grid-xs-4",
1647
- "grid-xs-5": "MuiGrid-grid-xs-5",
1648
- "grid-xs-6": "MuiGrid-grid-xs-6",
1649
- "grid-xs-7": "MuiGrid-grid-xs-7",
1650
- "grid-xs-8": "MuiGrid-grid-xs-8",
1651
- "grid-xs-9": "MuiGrid-grid-xs-9",
1652
- "grid-xs-auto": "MuiGrid-grid-xs-auto",
1653
- "grid-xs-true": "MuiGrid-grid-xs-true",
1654
- "item": "MuiGrid-item",
1655
- "justify-xs-center": "MuiGrid-justify-xs-center",
1656
- "justify-xs-flex-end": "MuiGrid-justify-xs-flex-end",
1657
- "justify-xs-space-around": "MuiGrid-justify-xs-space-around",
1658
- "justify-xs-space-between": "MuiGrid-justify-xs-space-between",
1659
- "justify-xs-space-evenly": "MuiGrid-justify-xs-space-evenly",
1660
- "root": "MuiGrid-root",
1661
- "spacing-xs-1": "MuiGrid-spacing-xs-1",
1662
- "spacing-xs-10": "MuiGrid-spacing-xs-10",
1663
- "spacing-xs-2": "MuiGrid-spacing-xs-2",
1664
- "spacing-xs-3": "MuiGrid-spacing-xs-3",
1665
- "spacing-xs-4": "MuiGrid-spacing-xs-4",
1666
- "spacing-xs-5": "MuiGrid-spacing-xs-5",
1667
- "spacing-xs-6": "MuiGrid-spacing-xs-6",
1668
- "spacing-xs-7": "MuiGrid-spacing-xs-7",
1669
- "spacing-xs-8": "MuiGrid-spacing-xs-8",
1670
- "spacing-xs-9": "MuiGrid-spacing-xs-9",
1671
- "wrap-xs-nowrap": "MuiGrid-wrap-xs-nowrap",
1672
- "wrap-xs-wrap-reverse": "MuiGrid-wrap-xs-wrap-reverse",
1673
- "zeroMinWidth": "MuiGrid-zeroMinWidth",
1674
- }
1675
- }
1676
- item={true}
1677
- xs={12}
1678
- >
1679
- <div
1680
- className="MuiGrid-root MuiGrid-item MuiGrid-grid-xs-12"
1681
- >
1682
- <NormalText
1683
- className="makeStyles-secondaryLabel-10"
1684
- >
1685
- <WithStyles(ForwardRef(Typography))
1686
- className="makeStyles-secondaryLabel-10"
1687
- component="span"
1688
- variant="body1"
1689
- >
1690
- <ForwardRef(Typography)
1691
- className="makeStyles-secondaryLabel-10"
1692
- classes={
1693
- Object {
1694
- "alignCenter": "MuiTypography-alignCenter",
1695
- "alignJustify": "MuiTypography-alignJustify",
1696
- "alignLeft": "MuiTypography-alignLeft",
1697
- "alignRight": "MuiTypography-alignRight",
1698
- "body1": "MuiTypography-body1",
1699
- "body2": "MuiTypography-body2",
1700
- "button": "MuiTypography-button",
1701
- "caption": "MuiTypography-caption",
1702
- "colorError": "MuiTypography-colorError",
1703
- "colorInherit": "MuiTypography-colorInherit",
1704
- "colorPrimary": "MuiTypography-colorPrimary",
1705
- "colorSecondary": "MuiTypography-colorSecondary",
1706
- "colorTextPrimary": "MuiTypography-colorTextPrimary",
1707
- "colorTextSecondary": "MuiTypography-colorTextSecondary",
1708
- "displayBlock": "MuiTypography-displayBlock",
1709
- "displayInline": "MuiTypography-displayInline",
1710
- "gutterBottom": "MuiTypography-gutterBottom",
1711
- "h1": "MuiTypography-h1",
1712
- "h2": "MuiTypography-h2",
1713
- "h3": "MuiTypography-h3",
1714
- "h4": "MuiTypography-h4",
1715
- "h5": "MuiTypography-h5",
1716
- "h6": "MuiTypography-h6",
1717
- "noWrap": "MuiTypography-noWrap",
1718
- "overline": "MuiTypography-overline",
1719
- "paragraph": "MuiTypography-paragraph",
1720
- "root": "MuiTypography-root",
1721
- "srOnly": "MuiTypography-srOnly",
1722
- "subtitle1": "MuiTypography-subtitle1",
1723
- "subtitle2": "MuiTypography-subtitle2",
1724
- }
1725
- }
1726
- component="span"
1727
- variant="body1"
1728
- >
1729
- <span
1730
- className="MuiTypography-root makeStyles-secondaryLabel-10 MuiTypography-body1"
1731
- >
1732
- name.field.secondary
1733
- </span>
1734
- </ForwardRef(Typography)>
1735
- </WithStyles(ForwardRef(Typography))>
1736
- </NormalText>
1737
- </div>
1738
- </ForwardRef(Grid)>
1739
- </WithStyles(ForwardRef(Grid))>
1740
- </div>
1741
- </ForwardRef(Grid)>
1742
- </WithStyles(ForwardRef(Grid))>
1743
- </Label>
1744
- <ForwardRef(WrappedInput)
348
+ name.field.secondary
349
+ </p>
350
+ </ForwardRef(Hint)>
351
+ </Label>
352
+ <ForwardRef(WrappedInput)
353
+ aria-required={true}
354
+ control={
355
+ Object {
356
+ "defaultValuesRef": Object {
357
+ "current": Object {},
358
+ },
359
+ "fieldArrayDefaultValuesRef": Object {
360
+ "current": Object {},
361
+ },
362
+ "fieldArrayNamesRef": Object {
363
+ "current": Set {},
364
+ },
365
+ "fieldArrayValuesRef": Object {
366
+ "current": Object {},
367
+ },
368
+ "fieldsRef": Object {
369
+ "current": Object {
370
+ "name": Object {
371
+ "ref": <input
372
+ aria-required="true"
373
+ class="govgr-input"
374
+ control="[object Object]"
375
+ name="name"
376
+ type="text"
377
+ />,
378
+ },
379
+ },
380
+ },
381
+ "fieldsWithValidationRef": Object {
382
+ "current": Object {},
383
+ },
384
+ "formStateRef": Object {
385
+ "current": Object {
386
+ "dirtyFields": Object {},
387
+ "errors": Object {},
388
+ "isDirty": false,
389
+ "isSubmitSuccessful": false,
390
+ "isSubmitted": false,
391
+ "isSubmitting": false,
392
+ "isValid": false,
393
+ "submitCount": 0,
394
+ "touched": Object {},
395
+ },
396
+ },
397
+ "getValues": [Function],
398
+ "isFormDirty": [Function],
399
+ "mode": Object {
400
+ "isOnAll": false,
401
+ "isOnBlur": false,
402
+ "isOnChange": false,
403
+ "isOnSubmit": true,
404
+ "isOnTouch": false,
405
+ },
406
+ "reValidateMode": Object {
407
+ "isReValidateOnBlur": false,
408
+ "isReValidateOnChange": false,
409
+ },
410
+ "readFormStateRef": Object {
411
+ "current": Object {
412
+ "dirtyFields": false,
413
+ "isDirty": false,
414
+ "isSubmitting": false,
415
+ "isValid": false,
416
+ "touched": false,
417
+ },
418
+ },
419
+ "register": [Function],
420
+ "removeFieldEventListener": [Function],
421
+ "resetFieldArrayFunctionRef": Object {
422
+ "current": Object {},
423
+ },
424
+ "setValue": [Function],
425
+ "shallowFieldsStateRef": Object {
426
+ "current": Object {},
427
+ },
428
+ "shouldUnregister": true,
429
+ "trigger": [Function],
430
+ "unregister": [Function],
431
+ "updateFormState": [Function],
432
+ "updateWatchedValue": [Function],
433
+ "useWatchFieldsRef": Object {
434
+ "current": Object {},
435
+ },
436
+ "useWatchRenderFunctionsRef": Object {
437
+ "current": Object {},
438
+ },
439
+ "validFieldsRef": Object {
440
+ "current": Object {},
441
+ },
442
+ "validateResolver": [Function],
443
+ "watchInternal": [Function],
444
+ }
445
+ }
446
+ disabled={false}
447
+ error={false}
448
+ extra={Object {}}
449
+ name="name"
450
+ required={true}
451
+ type="string"
452
+ >
453
+ <ForwardRef(TextInput)
454
+ aria-required={true}
455
+ control={
456
+ Object {
457
+ "defaultValuesRef": Object {
458
+ "current": Object {},
459
+ },
460
+ "fieldArrayDefaultValuesRef": Object {
461
+ "current": Object {},
462
+ },
463
+ "fieldArrayNamesRef": Object {
464
+ "current": Set {},
465
+ },
466
+ "fieldArrayValuesRef": Object {
467
+ "current": Object {},
468
+ },
469
+ "fieldsRef": Object {
470
+ "current": Object {
471
+ "name": Object {
472
+ "ref": <input
473
+ aria-required="true"
474
+ class="govgr-input"
475
+ control="[object Object]"
476
+ name="name"
477
+ type="text"
478
+ />,
479
+ },
480
+ },
481
+ },
482
+ "fieldsWithValidationRef": Object {
483
+ "current": Object {},
484
+ },
485
+ "formStateRef": Object {
486
+ "current": Object {
487
+ "dirtyFields": Object {},
488
+ "errors": Object {},
489
+ "isDirty": false,
490
+ "isSubmitSuccessful": false,
491
+ "isSubmitted": false,
492
+ "isSubmitting": false,
493
+ "isValid": false,
494
+ "submitCount": 0,
495
+ "touched": Object {},
496
+ },
497
+ },
498
+ "getValues": [Function],
499
+ "isFormDirty": [Function],
500
+ "mode": Object {
501
+ "isOnAll": false,
502
+ "isOnBlur": false,
503
+ "isOnChange": false,
504
+ "isOnSubmit": true,
505
+ "isOnTouch": false,
506
+ },
507
+ "reValidateMode": Object {
508
+ "isReValidateOnBlur": false,
509
+ "isReValidateOnChange": false,
510
+ },
511
+ "readFormStateRef": Object {
512
+ "current": Object {
513
+ "dirtyFields": false,
514
+ "isDirty": false,
515
+ "isSubmitting": false,
516
+ "isValid": false,
517
+ "touched": false,
518
+ },
519
+ },
520
+ "register": [Function],
521
+ "removeFieldEventListener": [Function],
522
+ "resetFieldArrayFunctionRef": Object {
523
+ "current": Object {},
524
+ },
525
+ "setValue": [Function],
526
+ "shallowFieldsStateRef": Object {
527
+ "current": Object {},
528
+ },
529
+ "shouldUnregister": true,
530
+ "trigger": [Function],
531
+ "unregister": [Function],
532
+ "updateFormState": [Function],
533
+ "updateWatchedValue": [Function],
534
+ "useWatchFieldsRef": Object {
535
+ "current": Object {},
536
+ },
537
+ "useWatchRenderFunctionsRef": Object {
538
+ "current": Object {},
539
+ },
540
+ "validFieldsRef": Object {
541
+ "current": Object {},
542
+ },
543
+ "validateResolver": [Function],
544
+ "watchInternal": [Function],
545
+ }
546
+ }
547
+ disabled={false}
548
+ error={false}
549
+ name="name"
550
+ type="text"
551
+ >
552
+ <input
553
+ aria-required={true}
554
+ className="govgr-input"
1745
555
  control={
1746
556
  Object {
1747
557
  "defaultValuesRef": Object {
@@ -1760,13 +570,11 @@ exports[`renders the Questions 1`] = `
1760
570
  "current": Object {
1761
571
  "name": Object {
1762
572
  "ref": <input
1763
- aria-invalid="false"
1764
- class="MuiInputBase-input MuiOutlinedInput-input"
1765
- id="name"
573
+ aria-required="true"
574
+ class="govgr-input"
575
+ control="[object Object]"
1766
576
  name="name"
1767
- rows="1"
1768
577
  type="text"
1769
- value=""
1770
578
  />,
1771
579
  },
1772
580
  },
@@ -1837,885 +645,39 @@ exports[`renders the Questions 1`] = `
1837
645
  }
1838
646
  }
1839
647
  disabled={false}
1840
- error={false}
1841
- extra={Object {}}
1842
648
  name="name"
1843
- type="string"
1844
- >
1845
- <WithStyles(ForwardRef(TextField))
1846
- control={
1847
- Object {
1848
- "defaultValuesRef": Object {
1849
- "current": Object {},
1850
- },
1851
- "fieldArrayDefaultValuesRef": Object {
1852
- "current": Object {},
1853
- },
1854
- "fieldArrayNamesRef": Object {
1855
- "current": Set {},
1856
- },
1857
- "fieldArrayValuesRef": Object {
1858
- "current": Object {},
1859
- },
1860
- "fieldsRef": Object {
1861
- "current": Object {
1862
- "name": Object {
1863
- "ref": <input
1864
- aria-invalid="false"
1865
- class="MuiInputBase-input MuiOutlinedInput-input"
1866
- id="name"
1867
- name="name"
1868
- rows="1"
1869
- type="text"
1870
- value=""
1871
- />,
1872
- },
1873
- },
1874
- },
1875
- "fieldsWithValidationRef": Object {
1876
- "current": Object {},
1877
- },
1878
- "formStateRef": Object {
1879
- "current": Object {
1880
- "dirtyFields": Object {},
1881
- "errors": Object {},
1882
- "isDirty": false,
1883
- "isSubmitSuccessful": false,
1884
- "isSubmitted": false,
1885
- "isSubmitting": false,
1886
- "isValid": false,
1887
- "submitCount": 0,
1888
- "touched": Object {},
1889
- },
1890
- },
1891
- "getValues": [Function],
1892
- "isFormDirty": [Function],
1893
- "mode": Object {
1894
- "isOnAll": false,
1895
- "isOnBlur": false,
1896
- "isOnChange": false,
1897
- "isOnSubmit": true,
1898
- "isOnTouch": false,
1899
- },
1900
- "reValidateMode": Object {
1901
- "isReValidateOnBlur": false,
1902
- "isReValidateOnChange": false,
1903
- },
1904
- "readFormStateRef": Object {
1905
- "current": Object {
1906
- "dirtyFields": false,
1907
- "isDirty": false,
1908
- "isSubmitting": false,
1909
- "isValid": false,
1910
- "touched": false,
1911
- },
1912
- },
1913
- "register": [Function],
1914
- "removeFieldEventListener": [Function],
1915
- "resetFieldArrayFunctionRef": Object {
1916
- "current": Object {},
1917
- },
1918
- "setValue": [Function],
1919
- "shallowFieldsStateRef": Object {
1920
- "current": Object {},
1921
- },
1922
- "shouldUnregister": true,
1923
- "trigger": [Function],
1924
- "unregister": [Function],
1925
- "updateFormState": [Function],
1926
- "updateWatchedValue": [Function],
1927
- "useWatchFieldsRef": Object {
1928
- "current": Object {},
1929
- },
1930
- "useWatchRenderFunctionsRef": Object {
1931
- "current": Object {},
1932
- },
1933
- "validFieldsRef": Object {
1934
- "current": Object {},
1935
- },
1936
- "validateResolver": [Function],
1937
- "watchInternal": [Function],
1938
- }
1939
- }
1940
- disabled={false}
1941
- error={false}
1942
- fullWidth={true}
1943
- id="name"
1944
- inputRef={[Function]}
1945
- margin="normal"
1946
- multiline={false}
1947
- name="name"
1948
- rows={1}
1949
- type="text"
1950
- variant="outlined"
1951
- >
1952
- <ForwardRef(TextField)
1953
- classes={
1954
- Object {
1955
- "root": "MuiTextField-root",
1956
- }
1957
- }
1958
- control={
1959
- Object {
1960
- "defaultValuesRef": Object {
1961
- "current": Object {},
1962
- },
1963
- "fieldArrayDefaultValuesRef": Object {
1964
- "current": Object {},
1965
- },
1966
- "fieldArrayNamesRef": Object {
1967
- "current": Set {},
1968
- },
1969
- "fieldArrayValuesRef": Object {
1970
- "current": Object {},
1971
- },
1972
- "fieldsRef": Object {
1973
- "current": Object {
1974
- "name": Object {
1975
- "ref": <input
1976
- aria-invalid="false"
1977
- class="MuiInputBase-input MuiOutlinedInput-input"
1978
- id="name"
1979
- name="name"
1980
- rows="1"
1981
- type="text"
1982
- value=""
1983
- />,
1984
- },
1985
- },
1986
- },
1987
- "fieldsWithValidationRef": Object {
1988
- "current": Object {},
1989
- },
1990
- "formStateRef": Object {
1991
- "current": Object {
1992
- "dirtyFields": Object {},
1993
- "errors": Object {},
1994
- "isDirty": false,
1995
- "isSubmitSuccessful": false,
1996
- "isSubmitted": false,
1997
- "isSubmitting": false,
1998
- "isValid": false,
1999
- "submitCount": 0,
2000
- "touched": Object {},
2001
- },
2002
- },
2003
- "getValues": [Function],
2004
- "isFormDirty": [Function],
2005
- "mode": Object {
2006
- "isOnAll": false,
2007
- "isOnBlur": false,
2008
- "isOnChange": false,
2009
- "isOnSubmit": true,
2010
- "isOnTouch": false,
2011
- },
2012
- "reValidateMode": Object {
2013
- "isReValidateOnBlur": false,
2014
- "isReValidateOnChange": false,
2015
- },
2016
- "readFormStateRef": Object {
2017
- "current": Object {
2018
- "dirtyFields": false,
2019
- "isDirty": false,
2020
- "isSubmitting": false,
2021
- "isValid": false,
2022
- "touched": false,
2023
- },
2024
- },
2025
- "register": [Function],
2026
- "removeFieldEventListener": [Function],
2027
- "resetFieldArrayFunctionRef": Object {
2028
- "current": Object {},
2029
- },
2030
- "setValue": [Function],
2031
- "shallowFieldsStateRef": Object {
2032
- "current": Object {},
2033
- },
2034
- "shouldUnregister": true,
2035
- "trigger": [Function],
2036
- "unregister": [Function],
2037
- "updateFormState": [Function],
2038
- "updateWatchedValue": [Function],
2039
- "useWatchFieldsRef": Object {
2040
- "current": Object {},
2041
- },
2042
- "useWatchRenderFunctionsRef": Object {
2043
- "current": Object {},
2044
- },
2045
- "validFieldsRef": Object {
2046
- "current": Object {},
2047
- },
2048
- "validateResolver": [Function],
2049
- "watchInternal": [Function],
2050
- }
2051
- }
2052
- disabled={false}
2053
- error={false}
2054
- fullWidth={true}
2055
- id="name"
2056
- inputRef={[Function]}
2057
- margin="normal"
2058
- multiline={false}
2059
- name="name"
2060
- rows={1}
2061
- type="text"
2062
- variant="outlined"
2063
- >
2064
- <WithStyles(ForwardRef(FormControl))
2065
- className="MuiTextField-root"
2066
- color="primary"
2067
- control={
2068
- Object {
2069
- "defaultValuesRef": Object {
2070
- "current": Object {},
2071
- },
2072
- "fieldArrayDefaultValuesRef": Object {
2073
- "current": Object {},
2074
- },
2075
- "fieldArrayNamesRef": Object {
2076
- "current": Set {},
2077
- },
2078
- "fieldArrayValuesRef": Object {
2079
- "current": Object {},
2080
- },
2081
- "fieldsRef": Object {
2082
- "current": Object {
2083
- "name": Object {
2084
- "ref": <input
2085
- aria-invalid="false"
2086
- class="MuiInputBase-input MuiOutlinedInput-input"
2087
- id="name"
2088
- name="name"
2089
- rows="1"
2090
- type="text"
2091
- value=""
2092
- />,
2093
- },
2094
- },
2095
- },
2096
- "fieldsWithValidationRef": Object {
2097
- "current": Object {},
2098
- },
2099
- "formStateRef": Object {
2100
- "current": Object {
2101
- "dirtyFields": Object {},
2102
- "errors": Object {},
2103
- "isDirty": false,
2104
- "isSubmitSuccessful": false,
2105
- "isSubmitted": false,
2106
- "isSubmitting": false,
2107
- "isValid": false,
2108
- "submitCount": 0,
2109
- "touched": Object {},
2110
- },
2111
- },
2112
- "getValues": [Function],
2113
- "isFormDirty": [Function],
2114
- "mode": Object {
2115
- "isOnAll": false,
2116
- "isOnBlur": false,
2117
- "isOnChange": false,
2118
- "isOnSubmit": true,
2119
- "isOnTouch": false,
2120
- },
2121
- "reValidateMode": Object {
2122
- "isReValidateOnBlur": false,
2123
- "isReValidateOnChange": false,
2124
- },
2125
- "readFormStateRef": Object {
2126
- "current": Object {
2127
- "dirtyFields": false,
2128
- "isDirty": false,
2129
- "isSubmitting": false,
2130
- "isValid": false,
2131
- "touched": false,
2132
- },
2133
- },
2134
- "register": [Function],
2135
- "removeFieldEventListener": [Function],
2136
- "resetFieldArrayFunctionRef": Object {
2137
- "current": Object {},
2138
- },
2139
- "setValue": [Function],
2140
- "shallowFieldsStateRef": Object {
2141
- "current": Object {},
2142
- },
2143
- "shouldUnregister": true,
2144
- "trigger": [Function],
2145
- "unregister": [Function],
2146
- "updateFormState": [Function],
2147
- "updateWatchedValue": [Function],
2148
- "useWatchFieldsRef": Object {
2149
- "current": Object {},
2150
- },
2151
- "useWatchRenderFunctionsRef": Object {
2152
- "current": Object {},
2153
- },
2154
- "validFieldsRef": Object {
2155
- "current": Object {},
2156
- },
2157
- "validateResolver": [Function],
2158
- "watchInternal": [Function],
2159
- }
2160
- }
2161
- disabled={false}
2162
- error={false}
2163
- fullWidth={true}
2164
- margin="normal"
2165
- required={false}
2166
- variant="outlined"
2167
- >
2168
- <ForwardRef(FormControl)
2169
- className="MuiTextField-root"
2170
- classes={
2171
- Object {
2172
- "fullWidth": "MuiFormControl-fullWidth",
2173
- "marginDense": "MuiFormControl-marginDense",
2174
- "marginNormal": "MuiFormControl-marginNormal",
2175
- "root": "MuiFormControl-root",
2176
- }
2177
- }
2178
- color="primary"
2179
- control={
2180
- Object {
2181
- "defaultValuesRef": Object {
2182
- "current": Object {},
2183
- },
2184
- "fieldArrayDefaultValuesRef": Object {
2185
- "current": Object {},
2186
- },
2187
- "fieldArrayNamesRef": Object {
2188
- "current": Set {},
2189
- },
2190
- "fieldArrayValuesRef": Object {
2191
- "current": Object {},
2192
- },
2193
- "fieldsRef": Object {
2194
- "current": Object {
2195
- "name": Object {
2196
- "ref": <input
2197
- aria-invalid="false"
2198
- class="MuiInputBase-input MuiOutlinedInput-input"
2199
- id="name"
2200
- name="name"
2201
- rows="1"
2202
- type="text"
2203
- value=""
2204
- />,
2205
- },
2206
- },
2207
- },
2208
- "fieldsWithValidationRef": Object {
2209
- "current": Object {},
2210
- },
2211
- "formStateRef": Object {
2212
- "current": Object {
2213
- "dirtyFields": Object {},
2214
- "errors": Object {},
2215
- "isDirty": false,
2216
- "isSubmitSuccessful": false,
2217
- "isSubmitted": false,
2218
- "isSubmitting": false,
2219
- "isValid": false,
2220
- "submitCount": 0,
2221
- "touched": Object {},
2222
- },
2223
- },
2224
- "getValues": [Function],
2225
- "isFormDirty": [Function],
2226
- "mode": Object {
2227
- "isOnAll": false,
2228
- "isOnBlur": false,
2229
- "isOnChange": false,
2230
- "isOnSubmit": true,
2231
- "isOnTouch": false,
2232
- },
2233
- "reValidateMode": Object {
2234
- "isReValidateOnBlur": false,
2235
- "isReValidateOnChange": false,
2236
- },
2237
- "readFormStateRef": Object {
2238
- "current": Object {
2239
- "dirtyFields": false,
2240
- "isDirty": false,
2241
- "isSubmitting": false,
2242
- "isValid": false,
2243
- "touched": false,
2244
- },
2245
- },
2246
- "register": [Function],
2247
- "removeFieldEventListener": [Function],
2248
- "resetFieldArrayFunctionRef": Object {
2249
- "current": Object {},
2250
- },
2251
- "setValue": [Function],
2252
- "shallowFieldsStateRef": Object {
2253
- "current": Object {},
2254
- },
2255
- "shouldUnregister": true,
2256
- "trigger": [Function],
2257
- "unregister": [Function],
2258
- "updateFormState": [Function],
2259
- "updateWatchedValue": [Function],
2260
- "useWatchFieldsRef": Object {
2261
- "current": Object {},
2262
- },
2263
- "useWatchRenderFunctionsRef": Object {
2264
- "current": Object {},
2265
- },
2266
- "validFieldsRef": Object {
2267
- "current": Object {},
2268
- },
2269
- "validateResolver": [Function],
2270
- "watchInternal": [Function],
2271
- }
2272
- }
2273
- disabled={false}
2274
- error={false}
2275
- fullWidth={true}
2276
- margin="normal"
2277
- required={false}
2278
- variant="outlined"
2279
- >
2280
- <div
2281
- className="MuiFormControl-root MuiTextField-root MuiFormControl-marginNormal MuiFormControl-fullWidth"
2282
- control={
2283
- Object {
2284
- "defaultValuesRef": Object {
2285
- "current": Object {},
2286
- },
2287
- "fieldArrayDefaultValuesRef": Object {
2288
- "current": Object {},
2289
- },
2290
- "fieldArrayNamesRef": Object {
2291
- "current": Set {},
2292
- },
2293
- "fieldArrayValuesRef": Object {
2294
- "current": Object {},
2295
- },
2296
- "fieldsRef": Object {
2297
- "current": Object {
2298
- "name": Object {
2299
- "ref": <input
2300
- aria-invalid="false"
2301
- class="MuiInputBase-input MuiOutlinedInput-input"
2302
- id="name"
2303
- name="name"
2304
- rows="1"
2305
- type="text"
2306
- value=""
2307
- />,
2308
- },
2309
- },
2310
- },
2311
- "fieldsWithValidationRef": Object {
2312
- "current": Object {},
2313
- },
2314
- "formStateRef": Object {
2315
- "current": Object {
2316
- "dirtyFields": Object {},
2317
- "errors": Object {},
2318
- "isDirty": false,
2319
- "isSubmitSuccessful": false,
2320
- "isSubmitted": false,
2321
- "isSubmitting": false,
2322
- "isValid": false,
2323
- "submitCount": 0,
2324
- "touched": Object {},
2325
- },
2326
- },
2327
- "getValues": [Function],
2328
- "isFormDirty": [Function],
2329
- "mode": Object {
2330
- "isOnAll": false,
2331
- "isOnBlur": false,
2332
- "isOnChange": false,
2333
- "isOnSubmit": true,
2334
- "isOnTouch": false,
2335
- },
2336
- "reValidateMode": Object {
2337
- "isReValidateOnBlur": false,
2338
- "isReValidateOnChange": false,
2339
- },
2340
- "readFormStateRef": Object {
2341
- "current": Object {
2342
- "dirtyFields": false,
2343
- "isDirty": false,
2344
- "isSubmitting": false,
2345
- "isValid": false,
2346
- "touched": false,
2347
- },
2348
- },
2349
- "register": [Function],
2350
- "removeFieldEventListener": [Function],
2351
- "resetFieldArrayFunctionRef": Object {
2352
- "current": Object {},
2353
- },
2354
- "setValue": [Function],
2355
- "shallowFieldsStateRef": Object {
2356
- "current": Object {},
2357
- },
2358
- "shouldUnregister": true,
2359
- "trigger": [Function],
2360
- "unregister": [Function],
2361
- "updateFormState": [Function],
2362
- "updateWatchedValue": [Function],
2363
- "useWatchFieldsRef": Object {
2364
- "current": Object {},
2365
- },
2366
- "useWatchRenderFunctionsRef": Object {
2367
- "current": Object {},
2368
- },
2369
- "validFieldsRef": Object {
2370
- "current": Object {},
2371
- },
2372
- "validateResolver": [Function],
2373
- "watchInternal": [Function],
2374
- }
2375
- }
2376
- >
2377
- <WithStyles(ForwardRef(OutlinedInput))
2378
- autoFocus={false}
2379
- fullWidth={true}
2380
- id="name"
2381
- inputRef={[Function]}
2382
- multiline={false}
2383
- name="name"
2384
- rows={1}
2385
- type="text"
2386
- >
2387
- <ForwardRef(OutlinedInput)
2388
- autoFocus={false}
2389
- classes={
2390
- Object {
2391
- "adornedEnd": "MuiOutlinedInput-adornedEnd",
2392
- "adornedStart": "MuiOutlinedInput-adornedStart",
2393
- "colorSecondary": "MuiOutlinedInput-colorSecondary",
2394
- "disabled": "Mui-disabled",
2395
- "error": "Mui-error",
2396
- "focused": "Mui-focused",
2397
- "input": "MuiOutlinedInput-input",
2398
- "inputAdornedEnd": "MuiOutlinedInput-inputAdornedEnd",
2399
- "inputAdornedStart": "MuiOutlinedInput-inputAdornedStart",
2400
- "inputMarginDense": "MuiOutlinedInput-inputMarginDense",
2401
- "inputMultiline": "MuiOutlinedInput-inputMultiline",
2402
- "marginDense": "MuiOutlinedInput-marginDense",
2403
- "multiline": "MuiOutlinedInput-multiline",
2404
- "notchedOutline": "MuiOutlinedInput-notchedOutline",
2405
- "root": "MuiOutlinedInput-root",
2406
- }
2407
- }
2408
- fullWidth={true}
2409
- id="name"
2410
- inputRef={[Function]}
2411
- multiline={false}
2412
- name="name"
2413
- rows={1}
2414
- type="text"
2415
- >
2416
- <WithStyles(ForwardRef(InputBase))
2417
- autoFocus={false}
2418
- classes={
2419
- Object {
2420
- "adornedEnd": "MuiOutlinedInput-adornedEnd",
2421
- "adornedStart": "MuiOutlinedInput-adornedStart",
2422
- "colorSecondary": "MuiOutlinedInput-colorSecondary",
2423
- "disabled": "Mui-disabled",
2424
- "error": "Mui-error",
2425
- "focused": "Mui-focused",
2426
- "input": "MuiOutlinedInput-input",
2427
- "inputAdornedEnd": "MuiOutlinedInput-inputAdornedEnd",
2428
- "inputAdornedStart": "MuiOutlinedInput-inputAdornedStart",
2429
- "inputMarginDense": "MuiOutlinedInput-inputMarginDense",
2430
- "inputMultiline": "MuiOutlinedInput-inputMultiline",
2431
- "marginDense": "MuiOutlinedInput-marginDense",
2432
- "multiline": "MuiOutlinedInput-multiline",
2433
- "notchedOutline": null,
2434
- "root": "MuiOutlinedInput-root",
2435
- }
2436
- }
2437
- fullWidth={true}
2438
- id="name"
2439
- inputComponent="input"
2440
- inputRef={[Function]}
2441
- multiline={false}
2442
- name="name"
2443
- renderSuffix={[Function]}
2444
- rows={1}
2445
- type="text"
2446
- >
2447
- <ForwardRef(InputBase)
2448
- autoFocus={false}
2449
- classes={
2450
- Object {
2451
- "adornedEnd": "MuiInputBase-adornedEnd MuiOutlinedInput-adornedEnd",
2452
- "adornedStart": "MuiInputBase-adornedStart MuiOutlinedInput-adornedStart",
2453
- "colorSecondary": "MuiInputBase-colorSecondary MuiOutlinedInput-colorSecondary",
2454
- "disabled": "Mui-disabled Mui-disabled",
2455
- "error": "Mui-error Mui-error",
2456
- "focused": "Mui-focused Mui-focused",
2457
- "formControl": "MuiInputBase-formControl",
2458
- "fullWidth": "MuiInputBase-fullWidth",
2459
- "input": "MuiInputBase-input MuiOutlinedInput-input",
2460
- "inputAdornedEnd": "MuiInputBase-inputAdornedEnd MuiOutlinedInput-inputAdornedEnd",
2461
- "inputAdornedStart": "MuiInputBase-inputAdornedStart MuiOutlinedInput-inputAdornedStart",
2462
- "inputHiddenLabel": "MuiInputBase-inputHiddenLabel",
2463
- "inputMarginDense": "MuiInputBase-inputMarginDense MuiOutlinedInput-inputMarginDense",
2464
- "inputMultiline": "MuiInputBase-inputMultiline MuiOutlinedInput-inputMultiline",
2465
- "inputTypeSearch": "MuiInputBase-inputTypeSearch",
2466
- "marginDense": "MuiInputBase-marginDense MuiOutlinedInput-marginDense",
2467
- "multiline": "MuiInputBase-multiline MuiOutlinedInput-multiline",
2468
- "root": "MuiInputBase-root MuiOutlinedInput-root",
2469
- }
2470
- }
2471
- fullWidth={true}
2472
- id="name"
2473
- inputComponent="input"
2474
- inputRef={[Function]}
2475
- multiline={false}
2476
- name="name"
2477
- renderSuffix={[Function]}
2478
- rows={1}
2479
- type="text"
2480
- >
2481
- <div
2482
- className="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-fullWidth MuiInputBase-formControl"
2483
- onClick={[Function]}
2484
- >
2485
- <input
2486
- aria-invalid={false}
2487
- autoFocus={false}
2488
- className="MuiInputBase-input MuiOutlinedInput-input"
2489
- disabled={false}
2490
- id="name"
2491
- name="name"
2492
- onAnimationStart={[Function]}
2493
- onBlur={[Function]}
2494
- onChange={[Function]}
2495
- onFocus={[Function]}
2496
- required={false}
2497
- rows={1}
2498
- type="text"
2499
- />
2500
- <WithStyles(ForwardRef(NotchedOutline))
2501
- className="MuiOutlinedInput-notchedOutline"
2502
- labelWidth={0}
2503
- notched={false}
2504
- >
2505
- <ForwardRef(NotchedOutline)
2506
- className="MuiOutlinedInput-notchedOutline"
2507
- classes={
2508
- Object {
2509
- "legend": "PrivateNotchedOutline-legend-12",
2510
- "legendLabelled": "PrivateNotchedOutline-legendLabelled-13",
2511
- "legendNotched": "PrivateNotchedOutline-legendNotched-14",
2512
- "root": "PrivateNotchedOutline-root-11",
2513
- }
2514
- }
2515
- labelWidth={0}
2516
- notched={false}
2517
- >
2518
- <fieldset
2519
- aria-hidden={true}
2520
- className="PrivateNotchedOutline-root-11 MuiOutlinedInput-notchedOutline"
2521
- style={
2522
- Object {
2523
- "paddingLeft": 8,
2524
- }
2525
- }
2526
- >
2527
- <legend
2528
- className="PrivateNotchedOutline-legend-12"
2529
- style={
2530
- Object {
2531
- "width": 0.01,
2532
- }
2533
- }
2534
- >
2535
- <span
2536
- dangerouslySetInnerHTML={
2537
- Object {
2538
- "__html": "&#8203;",
2539
- }
2540
- }
2541
- />
2542
- </legend>
2543
- </fieldset>
2544
- </ForwardRef(NotchedOutline)>
2545
- </WithStyles(ForwardRef(NotchedOutline))>
2546
- </div>
2547
- </ForwardRef(InputBase)>
2548
- </WithStyles(ForwardRef(InputBase))>
2549
- </ForwardRef(OutlinedInput)>
2550
- </WithStyles(ForwardRef(OutlinedInput))>
2551
- </div>
2552
- </ForwardRef(FormControl)>
2553
- </WithStyles(ForwardRef(FormControl))>
2554
- </ForwardRef(TextField)>
2555
- </WithStyles(ForwardRef(TextField))>
2556
- </ForwardRef(WrappedInput)>
2557
- </div>
2558
- </div>
2559
- </ForwardRef(Grid)>
2560
- </WithStyles(ForwardRef(Grid))>
2561
- </FieldContainer>
2562
- </FieldBase>
2563
- </Field>
2564
- <Button
2565
- color="primary"
2566
- size="large"
649
+ type="text"
650
+ />
651
+ </ForwardRef(TextInput)>
652
+ </ForwardRef(WrappedInput)>
653
+ </label>
654
+ </ForwardRef(Label)>
655
+ </div>
656
+ </ForwardRef(Field)>
657
+ </FieldContainer>
658
+ </FieldBase>
659
+ </Field>
660
+ <withDeprecationComponent
661
+ type="submit"
662
+ >
663
+ <ForwardRef(Button)
664
+ type="submit"
665
+ >
666
+ <button
667
+ className="govgr-btn-primary govgr-btn"
2567
668
  type="submit"
2568
- variant="contained"
2569
- xsFullWidth={false}
2570
669
  >
2571
- <WithStyles(ForwardRef(Button))
2572
- classes={
2573
- Object {
2574
- "containedPrimary": "MuiButton-containedPrimary",
2575
- "containedSecondary": "MuiButton-containedSecondary",
2576
- "disabled": "Mui-disabled",
2577
- "root": "MuiButton-root",
2578
- }
2579
- }
2580
- color="primary"
2581
- component="button"
2582
- data-testid="button"
2583
- size="large"
2584
- type="submit"
2585
- variant="contained"
2586
- >
2587
- <ForwardRef(Button)
2588
- classes={
2589
- Object {
2590
- "colorInherit": "MuiButton-colorInherit",
2591
- "contained": "MuiButton-contained",
2592
- "containedPrimary": "MuiButton-containedPrimary MuiButton-containedPrimary",
2593
- "containedSecondary": "MuiButton-containedSecondary MuiButton-containedSecondary",
2594
- "containedSizeLarge": "MuiButton-containedSizeLarge",
2595
- "containedSizeSmall": "MuiButton-containedSizeSmall",
2596
- "disableElevation": "MuiButton-disableElevation",
2597
- "disabled": "Mui-disabled Mui-disabled",
2598
- "endIcon": "MuiButton-endIcon",
2599
- "focusVisible": "Mui-focusVisible",
2600
- "fullWidth": "MuiButton-fullWidth",
2601
- "iconSizeLarge": "MuiButton-iconSizeLarge",
2602
- "iconSizeMedium": "MuiButton-iconSizeMedium",
2603
- "iconSizeSmall": "MuiButton-iconSizeSmall",
2604
- "label": "MuiButton-label",
2605
- "outlined": "MuiButton-outlined",
2606
- "outlinedPrimary": "MuiButton-outlinedPrimary",
2607
- "outlinedSecondary": "MuiButton-outlinedSecondary",
2608
- "outlinedSizeLarge": "MuiButton-outlinedSizeLarge",
2609
- "outlinedSizeSmall": "MuiButton-outlinedSizeSmall",
2610
- "root": "MuiButton-root MuiButton-root",
2611
- "sizeLarge": "MuiButton-sizeLarge",
2612
- "sizeSmall": "MuiButton-sizeSmall",
2613
- "startIcon": "MuiButton-startIcon",
2614
- "text": "MuiButton-text",
2615
- "textPrimary": "MuiButton-textPrimary",
2616
- "textSecondary": "MuiButton-textSecondary",
2617
- "textSizeLarge": "MuiButton-textSizeLarge",
2618
- "textSizeSmall": "MuiButton-textSizeSmall",
2619
- }
2620
- }
2621
- color="primary"
2622
- component="button"
2623
- data-testid="button"
2624
- size="large"
2625
- type="submit"
2626
- variant="contained"
2627
- >
2628
- <WithStyles(ForwardRef(ButtonBase))
2629
- className="MuiButton-root MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-containedPrimary MuiButton-containedSizeLarge MuiButton-sizeLarge"
2630
- component="button"
2631
- data-testid="button"
2632
- disabled={false}
2633
- focusRipple={true}
2634
- focusVisibleClassName="Mui-focusVisible"
2635
- type="submit"
2636
- >
2637
- <ForwardRef(ButtonBase)
2638
- className="MuiButton-root MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-containedPrimary MuiButton-containedSizeLarge MuiButton-sizeLarge"
2639
- classes={
2640
- Object {
2641
- "disabled": "Mui-disabled",
2642
- "focusVisible": "Mui-focusVisible",
2643
- "root": "MuiButtonBase-root",
2644
- }
2645
- }
2646
- component="button"
2647
- data-testid="button"
2648
- disabled={false}
2649
- focusRipple={true}
2650
- focusVisibleClassName="Mui-focusVisible"
2651
- type="submit"
2652
- >
2653
- <button
2654
- className="MuiButtonBase-root MuiButton-root MuiButton-root MuiButton-contained MuiButton-containedPrimary MuiButton-containedPrimary MuiButton-containedSizeLarge MuiButton-sizeLarge"
2655
- data-testid="button"
2656
- disabled={false}
2657
- onBlur={[Function]}
2658
- onDragLeave={[Function]}
2659
- onFocus={[Function]}
2660
- onKeyDown={[Function]}
2661
- onKeyUp={[Function]}
2662
- onMouseDown={[Function]}
2663
- onMouseLeave={[Function]}
2664
- onMouseUp={[Function]}
2665
- onTouchEnd={[Function]}
2666
- onTouchMove={[Function]}
2667
- onTouchStart={[Function]}
2668
- tabIndex={0}
2669
- type="submit"
2670
- >
2671
- <span
2672
- className="MuiButton-label"
2673
- >
2674
- Συνέχεια
2675
- </span>
2676
- <WithStyles(memo)
2677
- center={false}
2678
- >
2679
- <ForwardRef(TouchRipple)
2680
- center={false}
2681
- classes={
2682
- Object {
2683
- "child": "MuiTouchRipple-child",
2684
- "childLeaving": "MuiTouchRipple-childLeaving",
2685
- "childPulsate": "MuiTouchRipple-childPulsate",
2686
- "ripple": "MuiTouchRipple-ripple",
2687
- "ripplePulsate": "MuiTouchRipple-ripplePulsate",
2688
- "rippleVisible": "MuiTouchRipple-rippleVisible",
2689
- "root": "MuiTouchRipple-root",
2690
- }
2691
- }
2692
- >
2693
- <span
2694
- className="MuiTouchRipple-root"
2695
- >
2696
- <TransitionGroup
2697
- childFactory={[Function]}
2698
- component={null}
2699
- exit={true}
2700
- />
2701
- </span>
2702
- </ForwardRef(TouchRipple)>
2703
- </WithStyles(memo)>
2704
- </button>
2705
- </ForwardRef(ButtonBase)>
2706
- </WithStyles(ForwardRef(ButtonBase))>
2707
- </ForwardRef(Button)>
2708
- </WithStyles(ForwardRef(Button))>
2709
- </Button>
2710
- </div>
2711
- </ForwardRef(Grid)>
2712
- </WithStyles(ForwardRef(Grid))>
2713
- </div>
2714
- </ForwardRef(Grid)>
2715
- </WithStyles(ForwardRef(Grid))>
670
+ Συνέχεια
671
+ </button>
672
+ </ForwardRef(Button)>
673
+ </withDeprecationComponent>
674
+ </div>
675
+ </ForwardRef(Grid)>
676
+ </div>
677
+ </ForwardRef(Grid)>
2716
678
  </form>
2717
- </FormBase>
2718
- </FormBuilder>
679
+ </ForwardRef(FormBase)>
680
+ </ForwardRef(FormBuilder)>
2719
681
  </StepForm>
2720
682
  </Step>
2721
683
  <Step