@digigov/react-core 0.18.1 → 0.19.0

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 (610) hide show
  1. package/Base/index.d.ts +10 -10
  2. package/Base/index.js +7 -4
  3. package/CHANGELOG.md +14 -1
  4. package/Container/index.js +2 -2
  5. package/Header/__snapshots__/index.test.tsx.snap +0 -2
  6. package/Header/index.js +0 -1
  7. package/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
  8. package/HeaderNavMenuContent/index.d.ts +11 -0
  9. package/HeaderNavMenuContent/index.js +40 -0
  10. package/HeaderNavMenuContent/index.test.d.ts +1 -0
  11. package/HeaderNavMenuContent/index.test.js +15 -0
  12. package/NavHorizontal/__snapshots__/index.test.tsx.snap +6 -23
  13. package/NavHorizontal/index.d.ts +4 -4
  14. package/NavHorizontal/index.js +5 -4
  15. package/NavHorizontal/index.test.js +2 -10
  16. package/NavHorizontalList/__snapshots__/index.test.tsx.snap +22 -5
  17. package/NavHorizontalList/index.d.ts +7 -2
  18. package/NavHorizontalList/index.js +5 -3
  19. package/NavHorizontalList/index.test.js +8 -0
  20. package/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +7 -87
  21. package/NavHorizontalListItem/index.d.ts +4 -12
  22. package/NavHorizontalListItem/index.js +7 -10
  23. package/NavHorizontalListItem/index.test.js +0 -34
  24. package/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
  25. package/NavHorizontalListItemButton/index.d.ts +22 -0
  26. package/NavHorizontalListItemButton/index.js +45 -0
  27. package/NavHorizontalListItemButton/index.test.d.ts +1 -0
  28. package/NavHorizontalListItemButton/index.test.js +31 -0
  29. package/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
  30. package/NavHorizontalListItemLink/index.d.ts +20 -0
  31. package/NavHorizontalListItemLink/index.js +41 -0
  32. package/NavHorizontalListItemLink/index.test.d.ts +1 -0
  33. package/NavHorizontalListItemLink/index.test.js +49 -0
  34. package/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
  35. package/NavMenu/index.d.ts +10 -0
  36. package/NavMenu/index.js +39 -0
  37. package/NavMenu/index.test.d.ts +1 -0
  38. package/NavMenu/index.test.js +15 -0
  39. package/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
  40. package/NavMenuContainer/index.d.ts +10 -0
  41. package/NavMenuContainer/index.js +38 -0
  42. package/NavMenuContainer/index.test.d.ts +1 -0
  43. package/NavMenuContainer/index.test.js +15 -0
  44. package/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
  45. package/NavMenuContainerContent/index.d.ts +11 -0
  46. package/NavMenuContainerContent/index.js +41 -0
  47. package/NavMenuContainerContent/index.test.d.ts +1 -0
  48. package/NavMenuContainerContent/index.test.js +15 -0
  49. package/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
  50. package/NavMenuContainerContentList/index.d.ts +10 -0
  51. package/NavMenuContainerContentList/index.js +39 -0
  52. package/NavMenuContainerContentList/index.test.d.ts +1 -0
  53. package/NavMenuContainerContentList/index.test.js +15 -0
  54. package/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
  55. package/NavMenuContainerContentListItem/index.d.ts +10 -0
  56. package/NavMenuContainerContentListItem/index.js +39 -0
  57. package/NavMenuContainerContentListItem/index.test.d.ts +1 -0
  58. package/NavMenuContainerContentListItem/index.test.js +15 -0
  59. package/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
  60. package/NavMenuContainerTitle/index.d.ts +11 -0
  61. package/NavMenuContainerTitle/index.js +46 -0
  62. package/NavMenuContainerTitle/index.test.d.ts +1 -0
  63. package/NavMenuContainerTitle/index.test.js +15 -0
  64. package/README.md +0 -10
  65. package/es/Base/index.js +7 -4
  66. package/es/Container/index.js +2 -2
  67. package/es/Header/__snapshots__/index.test.tsx.snap +0 -2
  68. package/es/Header/index.js +0 -1
  69. package/es/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
  70. package/es/HeaderNavMenuContent/index.js +24 -0
  71. package/es/HeaderNavMenuContent/index.test.js +9 -0
  72. package/es/NavHorizontal/__snapshots__/index.test.tsx.snap +6 -23
  73. package/es/NavHorizontal/index.js +5 -4
  74. package/es/NavHorizontal/index.test.js +2 -10
  75. package/es/NavHorizontalList/__snapshots__/index.test.tsx.snap +22 -5
  76. package/es/NavHorizontalList/index.js +5 -3
  77. package/es/NavHorizontalList/index.test.js +8 -0
  78. package/es/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +7 -87
  79. package/es/NavHorizontalListItem/index.js +7 -10
  80. package/es/NavHorizontalListItem/index.test.js +0 -34
  81. package/es/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
  82. package/es/NavHorizontalListItemButton/index.js +28 -0
  83. package/es/NavHorizontalListItemButton/index.test.js +25 -0
  84. package/es/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
  85. package/es/NavHorizontalListItemLink/index.js +25 -0
  86. package/es/NavHorizontalListItemLink/index.test.js +43 -0
  87. package/es/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
  88. package/es/NavMenu/index.js +23 -0
  89. package/es/NavMenu/index.test.js +9 -0
  90. package/es/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
  91. package/es/NavMenuContainer/index.js +22 -0
  92. package/es/NavMenuContainer/index.test.js +9 -0
  93. package/es/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
  94. package/es/NavMenuContainerContent/index.js +25 -0
  95. package/es/NavMenuContainerContent/index.test.js +9 -0
  96. package/es/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
  97. package/es/NavMenuContainerContentList/index.js +23 -0
  98. package/es/NavMenuContainerContentList/index.test.js +9 -0
  99. package/es/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
  100. package/es/NavMenuContainerContentListItem/index.js +23 -0
  101. package/es/NavMenuContainerContentListItem/index.test.js +9 -0
  102. package/es/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
  103. package/es/NavMenuContainerTitle/index.js +29 -0
  104. package/es/NavMenuContainerTitle/index.test.js +9 -0
  105. package/es/index.js +147 -139
  106. package/es/registry.js +18 -0
  107. package/esm/Base/index.js +7 -4
  108. package/esm/Container/index.js +2 -2
  109. package/esm/Header/__snapshots__/index.test.tsx.snap +0 -2
  110. package/esm/Header/index.js +0 -1
  111. package/esm/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
  112. package/esm/HeaderNavMenuContent/index.js +24 -0
  113. package/esm/HeaderNavMenuContent/index.test.js +9 -0
  114. package/esm/NavHorizontal/__snapshots__/index.test.tsx.snap +6 -23
  115. package/esm/NavHorizontal/index.js +5 -4
  116. package/esm/NavHorizontal/index.test.js +2 -10
  117. package/esm/NavHorizontalList/__snapshots__/index.test.tsx.snap +22 -5
  118. package/esm/NavHorizontalList/index.js +5 -3
  119. package/esm/NavHorizontalList/index.test.js +8 -0
  120. package/esm/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +7 -87
  121. package/esm/NavHorizontalListItem/index.js +7 -10
  122. package/esm/NavHorizontalListItem/index.test.js +0 -34
  123. package/esm/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
  124. package/esm/NavHorizontalListItemButton/index.js +28 -0
  125. package/esm/NavHorizontalListItemButton/index.test.js +25 -0
  126. package/esm/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
  127. package/esm/NavHorizontalListItemLink/index.js +25 -0
  128. package/esm/NavHorizontalListItemLink/index.test.js +43 -0
  129. package/esm/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
  130. package/esm/NavMenu/index.js +23 -0
  131. package/esm/NavMenu/index.test.js +9 -0
  132. package/esm/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
  133. package/esm/NavMenuContainer/index.js +22 -0
  134. package/esm/NavMenuContainer/index.test.js +9 -0
  135. package/esm/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
  136. package/esm/NavMenuContainerContent/index.js +25 -0
  137. package/esm/NavMenuContainerContent/index.test.js +9 -0
  138. package/esm/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
  139. package/esm/NavMenuContainerContentList/index.js +23 -0
  140. package/esm/NavMenuContainerContentList/index.test.js +9 -0
  141. package/esm/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
  142. package/esm/NavMenuContainerContentListItem/index.js +23 -0
  143. package/esm/NavMenuContainerContentListItem/index.test.js +9 -0
  144. package/esm/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
  145. package/esm/NavMenuContainerTitle/index.js +29 -0
  146. package/esm/NavMenuContainerTitle/index.test.js +9 -0
  147. package/esm/index.js +148 -140
  148. package/esm/registry.js +18 -0
  149. package/index.d.ts +147 -139
  150. package/index.js +1910 -1113
  151. package/package.json +2 -2
  152. package/registry.d.ts +9 -0
  153. package/registry.js +27 -0
  154. package/src/Accordion/__snapshots__/index.test.tsx.snap +16 -0
  155. package/src/Accordion/index.test.tsx +8 -0
  156. package/src/Accordion/index.tsx +27 -0
  157. package/src/AccordionControls/__snapshots__/index.test.tsx.snap +18 -0
  158. package/src/AccordionControls/index.test.tsx +14 -0
  159. package/src/AccordionControls/index.tsx +25 -0
  160. package/src/AccordionSection/__snapshots__/index.test.tsx.snap +54 -0
  161. package/src/AccordionSection/index.test.tsx +20 -0
  162. package/src/AccordionSection/index.tsx +35 -0
  163. package/src/AccordionSectionContent/__snapshots__/index.test.tsx.snap +16 -0
  164. package/src/AccordionSectionContent/index.test.tsx +10 -0
  165. package/src/AccordionSectionContent/index.tsx +28 -0
  166. package/src/AccordionSectionHeader/__snapshots__/index.test.tsx.snap +24 -0
  167. package/src/AccordionSectionHeader/index.test.tsx +10 -0
  168. package/src/AccordionSectionHeader/index.tsx +39 -0
  169. package/src/AccordionSectionSummary/__snapshots__/index.test.tsx.snap +20 -0
  170. package/src/AccordionSectionSummary/index.test.tsx +10 -0
  171. package/src/AccordionSectionSummary/index.tsx +34 -0
  172. package/src/AccordionSectionSummaryHeading/__snapshots__/index.test.tsx.snap +26 -0
  173. package/src/AccordionSectionSummaryHeading/index.test.tsx +12 -0
  174. package/src/AccordionSectionSummaryHeading/index.tsx +44 -0
  175. package/src/ArrowIcon/__snapshots__/index.test.tsx.snap +115 -0
  176. package/src/ArrowIcon/index.test.tsx +20 -0
  177. package/src/ArrowIcon/index.tsx +52 -0
  178. package/src/Aside/__snapshots__/index.test.tsx.snap +16 -0
  179. package/src/Aside/index.test.tsx +8 -0
  180. package/src/Aside/index.tsx +28 -0
  181. package/src/BackLink/__snapshots__/index.test.tsx.snap +93 -0
  182. package/src/BackLink/index.test.tsx +11 -0
  183. package/src/BackLink/index.tsx +41 -0
  184. package/src/Base/index.tsx +153 -0
  185. package/src/Blockquote/__snapshots__/index.test.tsx.snap +16 -0
  186. package/src/Blockquote/index.test.tsx +8 -0
  187. package/src/Blockquote/index.tsx +26 -0
  188. package/src/Bottom/__snapshots__/index.test.tsx.snap +16 -0
  189. package/src/Bottom/index.test.tsx +8 -0
  190. package/src/Bottom/index.tsx +26 -0
  191. package/src/Breadcrumbs/__snapshots__/index.test.tsx.snap +16 -0
  192. package/src/Breadcrumbs/index.test.tsx +8 -0
  193. package/src/Breadcrumbs/index.tsx +27 -0
  194. package/src/BreadcrumbsList/__snapshots__/index.test.tsx.snap +16 -0
  195. package/src/BreadcrumbsList/index.test.tsx +8 -0
  196. package/src/BreadcrumbsList/index.tsx +27 -0
  197. package/src/BreadcrumbsListItem/__snapshots__/index.test.tsx.snap +42 -0
  198. package/src/BreadcrumbsListItem/index.test.tsx +15 -0
  199. package/src/BreadcrumbsListItem/index.tsx +40 -0
  200. package/src/BurgerIcon/__snapshots__/index.test.tsx.snap +460 -0
  201. package/src/BurgerIcon/index.test.tsx +45 -0
  202. package/src/BurgerIcon/index.tsx +57 -0
  203. package/src/Button/__snapshots__/index.test.tsx.snap +214 -0
  204. package/src/Button/index.test.tsx +58 -0
  205. package/src/Button/index.tsx +62 -0
  206. package/src/ButtonGroup/__snapshots__/index.test.tsx.snap +16 -0
  207. package/src/ButtonGroup/index.test.tsx +8 -0
  208. package/src/ButtonGroup/index.tsx +26 -0
  209. package/src/ButtonLink/__snapshots__/index.test.tsx.snap +199 -0
  210. package/src/ButtonLink/index.test.tsx +64 -0
  211. package/src/ButtonLink/index.tsx +41 -0
  212. package/src/CallToAction/__snapshots__/index.test.tsx.snap +46 -0
  213. package/src/CallToAction/index.test.tsx +8 -0
  214. package/src/CallToAction/index.tsx +31 -0
  215. package/src/Card/__snapshots__/index.test.tsx.snap +215 -0
  216. package/src/Card/index.test.tsx +66 -0
  217. package/src/Card/index.tsx +62 -0
  218. package/src/CardAction/__snapshots__/index.test.tsx.snap +16 -0
  219. package/src/CardAction/index.test.tsx +8 -0
  220. package/src/CardAction/index.tsx +28 -0
  221. package/src/CardHeading/__snapshots__/index.test.tsx.snap +20 -0
  222. package/src/CardHeading/index.test.tsx +8 -0
  223. package/src/CardHeading/index.tsx +29 -0
  224. package/src/CardText/__snapshots__/index.test.tsx.snap +16 -0
  225. package/src/CardText/index.test.tsx +8 -0
  226. package/src/CardText/index.tsx +27 -0
  227. package/src/CaretIcon/__snapshots__/index.test.tsx.snap +115 -0
  228. package/src/CaretIcon/index.test.tsx +20 -0
  229. package/src/CaretIcon/index.tsx +44 -0
  230. package/src/CheckIcon/__snapshots__/index.test.tsx.snap +452 -0
  231. package/src/CheckIcon/index.test.tsx +50 -0
  232. package/src/CheckIcon/index.tsx +34 -0
  233. package/src/Checkbox/__snapshots__/index.test.tsx.snap +51 -0
  234. package/src/Checkbox/index.test.tsx +19 -0
  235. package/src/Checkbox/index.tsx +28 -0
  236. package/src/CheckboxConditional/__snapshots__/index.test.tsx.snap +24 -0
  237. package/src/CheckboxConditional/index.test.tsx +10 -0
  238. package/src/CheckboxConditional/index.tsx +41 -0
  239. package/src/CheckboxItem/__snapshots__/index.test.tsx.snap +81 -0
  240. package/src/CheckboxItem/index.test.tsx +19 -0
  241. package/src/CheckboxItem/index.tsx +53 -0
  242. package/src/CloseIcon/__snapshots__/index.test.tsx.snap +28 -0
  243. package/src/CloseIcon/index.test.tsx +8 -0
  244. package/src/CloseIcon/index.tsx +35 -0
  245. package/src/Confirmation/__snapshots__/index.test.tsx.snap +16 -0
  246. package/src/Confirmation/index.test.tsx +8 -0
  247. package/src/Confirmation/index.tsx +27 -0
  248. package/src/ConfirmationBody/__snapshots__/index.test.tsx.snap +16 -0
  249. package/src/ConfirmationBody/index.test.tsx +8 -0
  250. package/src/ConfirmationBody/index.tsx +27 -0
  251. package/src/ConfirmationTitle/__snapshots__/index.test.tsx.snap +16 -0
  252. package/src/ConfirmationTitle/index.test.tsx +8 -0
  253. package/src/ConfirmationTitle/index.tsx +27 -0
  254. package/src/Container/__snapshots__/index.test.tsx.snap +78 -0
  255. package/src/Container/index.test.tsx +20 -0
  256. package/src/Container/index.tsx +46 -0
  257. package/src/CopyrightContainer/__snapshots__/index.test.tsx.snap +16 -0
  258. package/src/CopyrightContainer/index.test.tsx +10 -0
  259. package/src/CopyrightContainer/index.tsx +28 -0
  260. package/src/DateInputContainer/__snapshots__/index.test.tsx.snap +16 -0
  261. package/src/DateInputContainer/index.test.tsx +10 -0
  262. package/src/DateInputContainer/index.tsx +30 -0
  263. package/src/DateInputItem/__snapshots__/index.test.tsx.snap +94 -0
  264. package/src/DateInputItem/index.test.tsx +24 -0
  265. package/src/DateInputItem/index.tsx +65 -0
  266. package/src/Details/__snapshots__/index.test.tsx.snap +16 -0
  267. package/src/Details/index.test.tsx +8 -0
  268. package/src/Details/index.tsx +27 -0
  269. package/src/DetailsContent/__snapshots__/index.test.tsx.snap +16 -0
  270. package/src/DetailsContent/index.test.tsx +8 -0
  271. package/src/DetailsContent/index.tsx +28 -0
  272. package/src/DetailsSummary/__snapshots__/index.test.tsx.snap +16 -0
  273. package/src/DetailsSummary/index.test.tsx +8 -0
  274. package/src/DetailsSummary/index.tsx +27 -0
  275. package/src/ErrorMessage/__snapshots__/index.test.tsx.snap +16 -0
  276. package/src/ErrorMessage/index.test.tsx +8 -0
  277. package/src/ErrorMessage/index.tsx +29 -0
  278. package/src/ErrorSummary/__snapshots__/index.test.tsx.snap +16 -0
  279. package/src/ErrorSummary/index.test.tsx +8 -0
  280. package/src/ErrorSummary/index.tsx +26 -0
  281. package/src/FieldContainer/__snapshots__/index.test.tsx.snap +77 -0
  282. package/src/FieldContainer/index.test.tsx +20 -0
  283. package/src/FieldContainer/index.tsx +39 -0
  284. package/src/Fieldset/__snapshots__/index.test.tsx.snap +16 -0
  285. package/src/Fieldset/index.test.tsx +8 -0
  286. package/src/Fieldset/index.tsx +28 -0
  287. package/src/FieldsetLegend/__snapshots__/index.test.tsx.snap +193 -0
  288. package/src/FieldsetLegend/index.test.tsx +98 -0
  289. package/src/FieldsetLegend/index.tsx +49 -0
  290. package/src/FileUpload/__snapshots__/index.test.tsx.snap +61 -0
  291. package/src/FileUpload/index.test.tsx +12 -0
  292. package/src/FileUpload/index.tsx +54 -0
  293. package/src/FileUploadContainer/__snapshots__/index.test.tsx.snap +29 -0
  294. package/src/FileUploadContainer/index.test.tsx +12 -0
  295. package/src/FileUploadContainer/index.tsx +36 -0
  296. package/src/Footer/__snapshots__/index.test.tsx.snap +16 -0
  297. package/src/Footer/index.test.tsx +8 -0
  298. package/src/Footer/index.tsx +26 -0
  299. package/src/FooterContainer/__snapshots__/index.test.tsx.snap +16 -0
  300. package/src/FooterContainer/index.test.tsx +8 -0
  301. package/src/FooterContainer/index.tsx +39 -0
  302. package/src/FooterContent/__snapshots__/index.test.tsx.snap +16 -0
  303. package/src/FooterContent/index.test.tsx +8 -0
  304. package/src/FooterContent/index.tsx +28 -0
  305. package/src/FooterContentLogos/__snapshots__/index.test.tsx.snap +16 -0
  306. package/src/FooterContentLogos/index.test.tsx +10 -0
  307. package/src/FooterContentLogos/index.tsx +29 -0
  308. package/src/FooterHeading/__snapshots__/index.test.tsx.snap +50 -0
  309. package/src/FooterHeading/index.test.tsx +20 -0
  310. package/src/FooterHeading/index.tsx +36 -0
  311. package/src/FooterImage/__snapshots__/index.test.tsx.snap +16 -0
  312. package/src/FooterImage/index.test.tsx +8 -0
  313. package/src/FooterImage/index.tsx +37 -0
  314. package/src/FooterInlineList/__snapshots__/index.test.tsx.snap +16 -0
  315. package/src/FooterInlineList/index.test.tsx +8 -0
  316. package/src/FooterInlineList/index.tsx +29 -0
  317. package/src/FooterInlineListItem/__snapshots__/index.test.tsx.snap +16 -0
  318. package/src/FooterInlineListItem/index.test.tsx +10 -0
  319. package/src/FooterInlineListItem/index.tsx +27 -0
  320. package/src/FooterLink/__snapshots__/index.test.tsx.snap +35 -0
  321. package/src/FooterLink/index.test.tsx +12 -0
  322. package/src/FooterLink/index.tsx +32 -0
  323. package/src/FooterList/__snapshots__/index.test.tsx.snap +33 -0
  324. package/src/FooterList/index.test.tsx +12 -0
  325. package/src/FooterList/index.tsx +34 -0
  326. package/src/FooterListItem/__snapshots__/index.test.tsx.snap +16 -0
  327. package/src/FooterListItem/index.test.tsx +8 -0
  328. package/src/FooterListItem/index.tsx +28 -0
  329. package/src/FooterMeta/__snapshots__/index.test.tsx.snap +16 -0
  330. package/src/FooterMeta/index.test.tsx +8 -0
  331. package/src/FooterMeta/index.tsx +28 -0
  332. package/src/FooterMetaItem/__snapshots__/index.test.tsx.snap +50 -0
  333. package/src/FooterMetaItem/index.test.tsx +20 -0
  334. package/src/FooterMetaItem/index.tsx +34 -0
  335. package/src/FooterNavigation/__snapshots__/index.test.tsx.snap +16 -0
  336. package/src/FooterNavigation/index.test.tsx +8 -0
  337. package/src/FooterNavigation/index.tsx +29 -0
  338. package/src/FooterSection/__snapshots__/index.test.tsx.snap +16 -0
  339. package/src/FooterSection/index.test.tsx +8 -0
  340. package/src/FooterSection/index.tsx +29 -0
  341. package/src/Form/__snapshots__/index.test.tsx.snap +33 -0
  342. package/src/Form/index.test.tsx +12 -0
  343. package/src/Form/index.tsx +31 -0
  344. package/src/GovGRLogo/__snapshots__/index.test.tsx.snap +27 -0
  345. package/src/GovGRLogo/govgr-logo-base64.js +1 -0
  346. package/src/GovGRLogo/govgr-logo-blue-base64.ts +1 -0
  347. package/src/GovGRLogo/index.test.tsx +8 -0
  348. package/src/GovGRLogo/index.tsx +42 -0
  349. package/src/Grid/__snapshots__/index.test.tsx.snap +135 -0
  350. package/src/Grid/index.test.tsx +29 -0
  351. package/src/Grid/index.tsx +126 -0
  352. package/src/Header/__snapshots__/index.test.tsx.snap +18 -0
  353. package/src/Header/index.test.tsx +8 -0
  354. package/src/Header/index.tsx +28 -0
  355. package/src/HeaderContent/__snapshots__/index.test.tsx.snap +16 -0
  356. package/src/HeaderContent/index.test.tsx +8 -0
  357. package/src/HeaderContent/index.tsx +27 -0
  358. package/src/HeaderLogo/__snapshots__/index.test.tsx.snap +18 -0
  359. package/src/HeaderLogo/index.test.tsx +8 -0
  360. package/src/HeaderLogo/index.tsx +45 -0
  361. package/src/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
  362. package/src/HeaderNavMenuContent/index.test.tsx +10 -0
  363. package/src/HeaderNavMenuContent/index.tsx +29 -0
  364. package/src/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +48 -0
  365. package/src/HeaderSecondaryLogo/index.test.tsx +26 -0
  366. package/src/HeaderSecondaryLogo/index.tsx +52 -0
  367. package/src/HeaderSection/__snapshots__/index.test.tsx.snap +16 -0
  368. package/src/HeaderSection/index.test.tsx +8 -0
  369. package/src/HeaderSection/index.tsx +27 -0
  370. package/src/HeaderSubtitle/__snapshots__/index.test.tsx.snap +16 -0
  371. package/src/HeaderSubtitle/index.test.tsx +8 -0
  372. package/src/HeaderSubtitle/index.tsx +20 -0
  373. package/src/HeaderTitle/__snapshots__/index.test.tsx.snap +37 -0
  374. package/src/HeaderTitle/index.test.tsx +13 -0
  375. package/src/HeaderTitle/index.tsx +33 -0
  376. package/src/Heading/__snapshots__/index.test.tsx.snap +300 -0
  377. package/src/Heading/index.test.tsx +144 -0
  378. package/src/Heading/index.tsx +64 -0
  379. package/src/HeadingCaption/__snapshots__/index.test.tsx.snap +67 -0
  380. package/src/HeadingCaption/index.test.tsx +26 -0
  381. package/src/HeadingCaption/index.tsx +36 -0
  382. package/src/HellenicRepublicLogo/__snapshots__/index.test.tsx.snap +30 -0
  383. package/src/HellenicRepublicLogo/index.test.tsx +8 -0
  384. package/src/HellenicRepublicLogo/index.tsx +61 -0
  385. package/src/HellenicRepublicLogo/logo-el.ts +1 -0
  386. package/src/HellenicRepublicLogo/logo-en.ts +1 -0
  387. package/src/HellenicRepublicLogo/logo-inverted-el.ts +1 -0
  388. package/src/HellenicRepublicLogo/logo-inverted-en.ts +1 -0
  389. package/src/Hidden/__snapshots__/index.test.tsx.snap +96 -0
  390. package/src/Hidden/index.test.tsx +50 -0
  391. package/src/Hidden/index.tsx +51 -0
  392. package/src/Hint/__snapshots__/index.test.tsx.snap +67 -0
  393. package/src/Hint/index.test.tsx +17 -0
  394. package/src/Hint/index.tsx +35 -0
  395. package/src/LabelContainer/__snapshots__/index.test.tsx.snap +16 -0
  396. package/src/LabelContainer/index.test.tsx +8 -0
  397. package/src/LabelContainer/index.tsx +27 -0
  398. package/src/LabelTitle/__snapshots__/index.test.tsx.snap +193 -0
  399. package/src/LabelTitle/index.test.tsx +68 -0
  400. package/src/LabelTitle/index.tsx +44 -0
  401. package/src/Layout/__snapshots__/index.test.tsx.snap +16 -0
  402. package/src/Layout/index.test.tsx +8 -0
  403. package/src/Layout/index.tsx +29 -0
  404. package/src/LinkBase/__snapshots__/index.test.tsx.snap +50 -0
  405. package/src/LinkBase/index.test.tsx +16 -0
  406. package/src/LinkBase/index.tsx +33 -0
  407. package/src/List/__snapshots__/index.test.tsx.snap +212 -0
  408. package/src/List/index.test.tsx +61 -0
  409. package/src/List/index.tsx +40 -0
  410. package/src/ListItem/__snapshots__/index.test.tsx.snap +16 -0
  411. package/src/ListItem/index.test.tsx +8 -0
  412. package/src/ListItem/index.tsx +26 -0
  413. package/src/Main/__snapshots__/index.test.tsx.snap +18 -0
  414. package/src/Main/index.test.tsx +8 -0
  415. package/src/Main/index.tsx +28 -0
  416. package/src/Masthead/__snapshots__/index.test.tsx.snap +16 -0
  417. package/src/Masthead/index.test.tsx +8 -0
  418. package/src/Masthead/index.tsx +27 -0
  419. package/src/MastheadBody/__snapshots__/index.test.tsx.snap +16 -0
  420. package/src/MastheadBody/index.test.tsx +8 -0
  421. package/src/MastheadBody/index.tsx +27 -0
  422. package/src/MoreVertIcon/__snapshots__/index.test.tsx.snap +632 -0
  423. package/src/MoreVertIcon/index.test.tsx +50 -0
  424. package/src/MoreVertIcon/index.tsx +36 -0
  425. package/src/NavHorizontal/__snapshots__/index.test.tsx.snap +33 -0
  426. package/src/NavHorizontal/index.test.tsx +12 -0
  427. package/src/NavHorizontal/index.tsx +35 -0
  428. package/src/NavHorizontalList/__snapshots__/index.test.tsx.snap +33 -0
  429. package/src/NavHorizontalList/index.test.tsx +13 -0
  430. package/src/NavHorizontalList/index.tsx +39 -0
  431. package/src/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +16 -0
  432. package/src/NavHorizontalListItem/index.test.tsx +10 -0
  433. package/src/NavHorizontalListItem/index.tsx +28 -0
  434. package/src/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
  435. package/src/NavHorizontalListItemButton/index.test.tsx +29 -0
  436. package/src/NavHorizontalListItemButton/index.tsx +47 -0
  437. package/src/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
  438. package/src/NavHorizontalListItemLink/index.test.tsx +45 -0
  439. package/src/NavHorizontalListItemLink/index.tsx +44 -0
  440. package/src/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
  441. package/src/NavMenu/index.test.tsx +7 -0
  442. package/src/NavMenu/index.tsx +27 -0
  443. package/src/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
  444. package/src/NavMenuContainer/index.test.tsx +7 -0
  445. package/src/NavMenuContainer/index.tsx +22 -0
  446. package/src/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
  447. package/src/NavMenuContainerContent/index.test.tsx +9 -0
  448. package/src/NavMenuContainerContent/index.tsx +23 -0
  449. package/src/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
  450. package/src/NavMenuContainerContentList/index.test.tsx +9 -0
  451. package/src/NavMenuContainerContentList/index.tsx +28 -0
  452. package/src/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
  453. package/src/NavMenuContainerContentListItem/index.test.tsx +11 -0
  454. package/src/NavMenuContainerContentListItem/index.tsx +31 -0
  455. package/src/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
  456. package/src/NavMenuContainerTitle/index.test.tsx +9 -0
  457. package/src/NavMenuContainerTitle/index.tsx +26 -0
  458. package/src/NavVertical/__snapshots__/index.test.tsx.snap +16 -0
  459. package/src/NavVertical/index.test.tsx +8 -0
  460. package/src/NavVertical/index.tsx +28 -0
  461. package/src/NavVerticalItem/__snapshots__/index.test.tsx.snap +50 -0
  462. package/src/NavVerticalItem/index.test.tsx +20 -0
  463. package/src/NavVerticalItem/index.tsx +35 -0
  464. package/src/NormalText/__snapshots__/index.test.tsx.snap +707 -0
  465. package/src/NormalText/index.test.tsx +346 -0
  466. package/src/NormalText/index.tsx +62 -0
  467. package/src/NotificationBannerContainer/__snapshots__/index.test.tsx.snap +68 -0
  468. package/src/NotificationBannerContainer/index.test.tsx +30 -0
  469. package/src/NotificationBannerContainer/index.tsx +43 -0
  470. package/src/NotificationBannerContent/__snapshots__/index.test.tsx.snap +16 -0
  471. package/src/NotificationBannerContent/index.test.tsx +10 -0
  472. package/src/NotificationBannerContent/index.tsx +30 -0
  473. package/src/NotificationBannerHeader/__snapshots__/index.test.tsx.snap +20 -0
  474. package/src/NotificationBannerHeader/index.test.tsx +10 -0
  475. package/src/NotificationBannerHeader/index.tsx +35 -0
  476. package/src/NotificationBannerHeading/__snapshots__/index.test.tsx.snap +16 -0
  477. package/src/NotificationBannerHeading/index.test.tsx +10 -0
  478. package/src/NotificationBannerHeading/index.tsx +29 -0
  479. package/src/NotificationBannerLink/__snapshots__/index.test.tsx.snap +37 -0
  480. package/src/NotificationBannerLink/index.test.tsx +20 -0
  481. package/src/NotificationBannerLink/index.tsx +38 -0
  482. package/src/PageTitle/__snapshots__/index.test.tsx.snap +16 -0
  483. package/src/PageTitle/index.test.tsx +8 -0
  484. package/src/PageTitle/index.tsx +19 -0
  485. package/src/PageTitleCaption/__snapshots__/index.test.tsx.snap +67 -0
  486. package/src/PageTitleCaption/index.test.tsx +26 -0
  487. package/src/PageTitleCaption/index.tsx +38 -0
  488. package/src/PageTitleHeading/__snapshots__/index.test.tsx.snap +84 -0
  489. package/src/PageTitleHeading/index.test.tsx +32 -0
  490. package/src/PageTitleHeading/index.tsx +38 -0
  491. package/src/PageTitleSection/__snapshots__/index.test.tsx.snap +16 -0
  492. package/src/PageTitleSection/index.test.tsx +8 -0
  493. package/src/PageTitleSection/index.tsx +21 -0
  494. package/src/Paragraph/__snapshots__/index.test.tsx.snap +724 -0
  495. package/src/Paragraph/index.test.tsx +331 -0
  496. package/src/Paragraph/index.tsx +61 -0
  497. package/src/PhaseBanner/__snapshots__/index.test.tsx.snap +41 -0
  498. package/src/PhaseBanner/index.test.tsx +12 -0
  499. package/src/PhaseBanner/index.tsx +43 -0
  500. package/src/PhaseBannerHeaderContainer/__snapshots__/inde.test.tsx.snap +16 -0
  501. package/src/PhaseBannerHeaderContainer/inde.test.tsx +10 -0
  502. package/src/PhaseBannerHeaderContainer/index.tsx +28 -0
  503. package/src/PhaseBannerTag/__snapshots__/index.test.tsx.snap +16 -0
  504. package/src/PhaseBannerTag/index.test.tsx +8 -0
  505. package/src/PhaseBannerTag/index.tsx +28 -0
  506. package/src/PhaseBannerText/__snapshots__/index.test.tsx.snap +16 -0
  507. package/src/PhaseBannerText/index.test.tsx +8 -0
  508. package/src/PhaseBannerText/index.tsx +29 -0
  509. package/src/RadioConditional/__snapshots__/index.test.tsx.snap +24 -0
  510. package/src/RadioConditional/index.test.tsx +8 -0
  511. package/src/RadioConditional/index.tsx +41 -0
  512. package/src/RadioContainer/__snapshots__/index.test.tsx.snap +16 -0
  513. package/src/RadioContainer/index.test.tsx +8 -0
  514. package/src/RadioContainer/index.tsx +34 -0
  515. package/src/RadioItem/__snapshots__/index.test.tsx.snap +112 -0
  516. package/src/RadioItem/index.test.tsx +28 -0
  517. package/src/RadioItem/index.tsx +51 -0
  518. package/src/SectionBreak/__snapshots__/index.test.tsx.snap +89 -0
  519. package/src/SectionBreak/index.test.tsx +28 -0
  520. package/src/SectionBreak/index.tsx +39 -0
  521. package/src/SelectContainer/__snapshots__/index.test.tsx.snap +57 -0
  522. package/src/SelectContainer/index.test.tsx +24 -0
  523. package/src/SelectContainer/index.tsx +34 -0
  524. package/src/SelectOption/__snapshots__/index.test.tsx.snap +35 -0
  525. package/src/SelectOption/index.test.tsx +14 -0
  526. package/src/SelectOption/index.tsx +41 -0
  527. package/src/SkipLink/__snapshots__/index.test.tsx.snap +20 -0
  528. package/src/SkipLink/index.test.tsx +8 -0
  529. package/src/SkipLink/index.tsx +33 -0
  530. package/src/SummaryList/__snapshots__/index.test.tsx.snap +16 -0
  531. package/src/SummaryList/index.test.tsx +8 -0
  532. package/src/SummaryList/index.tsx +35 -0
  533. package/src/SummaryListItem/__snapshots__/index.test.tsx.snap +16 -0
  534. package/src/SummaryListItem/index.test.tsx +8 -0
  535. package/src/SummaryListItem/index.tsx +28 -0
  536. package/src/SummaryListItemAction/__snapshots__/index.test.tsx.snap +16 -0
  537. package/src/SummaryListItemAction/index.test.tsx +10 -0
  538. package/src/SummaryListItemAction/index.tsx +28 -0
  539. package/src/SummaryListItemKey/__snapshots__/index.test.tsx.snap +16 -0
  540. package/src/SummaryListItemKey/index.test.tsx +10 -0
  541. package/src/SummaryListItemKey/index.tsx +28 -0
  542. package/src/SummaryListItemValue/__snapshots__/index.test.tsx.snap +16 -0
  543. package/src/SummaryListItemValue/index.test.tsx +10 -0
  544. package/src/SummaryListItemValue/index.tsx +27 -0
  545. package/src/SvgIcon/__snapshots__/index.test.tsx.snap +344 -0
  546. package/src/SvgIcon/index.test.tsx +62 -0
  547. package/src/SvgIcon/index.tsx +64 -0
  548. package/src/Table/__snapshots__/index.test.tsx.snap +84 -0
  549. package/src/Table/index.test.tsx +24 -0
  550. package/src/Table/index.tsx +69 -0
  551. package/src/TableBody/__snapshots__/index.test.tsx.snap +16 -0
  552. package/src/TableBody/index.test.tsx +8 -0
  553. package/src/TableBody/index.tsx +27 -0
  554. package/src/TableCaption/__snapshots__/index.test.tsx.snap +84 -0
  555. package/src/TableCaption/index.test.tsx +32 -0
  556. package/src/TableCaption/index.tsx +37 -0
  557. package/src/TableContainer/__snapshots__/index.test.tsx.snap +33 -0
  558. package/src/TableContainer/index.test.tsx +13 -0
  559. package/src/TableContainer/index.tsx +36 -0
  560. package/src/TableDataCell/__snapshots__/index.test.tsx.snap +33 -0
  561. package/src/TableDataCell/index.test.tsx +14 -0
  562. package/src/TableDataCell/index.tsx +38 -0
  563. package/src/TableHead/__snapshots__/index.test.tsx.snap +16 -0
  564. package/src/TableHead/index.test.tsx +8 -0
  565. package/src/TableHead/index.tsx +27 -0
  566. package/src/TableHeadCell/__snapshots__/index.test.tsx.snap +219 -0
  567. package/src/TableHeadCell/index.test.tsx +105 -0
  568. package/src/TableHeadCell/index.tsx +56 -0
  569. package/src/TableNoDataRow/__snapshots__/index.test.tsx.snap +22 -0
  570. package/src/TableNoDataRow/index.test.tsx +8 -0
  571. package/src/TableNoDataRow/index.tsx +31 -0
  572. package/src/TableRow/__snapshots__/index.test.tsx.snap +16 -0
  573. package/src/TableRow/index.test.tsx +8 -0
  574. package/src/TableRow/index.tsx +26 -0
  575. package/src/Tabs/__snapshots__/index.test.tsx.snap +16 -0
  576. package/src/Tabs/index.test.tsx +8 -0
  577. package/src/Tabs/index.tsx +28 -0
  578. package/src/TabsHeading/__snapshots__/index.test.tsx.snap +50 -0
  579. package/src/TabsHeading/index.test.tsx +16 -0
  580. package/src/TabsHeading/index.tsx +36 -0
  581. package/src/TabsList/__snapshots__/index.test.tsx.snap +18 -0
  582. package/src/TabsList/index.test.tsx +8 -0
  583. package/src/TabsList/index.tsx +28 -0
  584. package/src/TabsListItem/__snapshots__/index.test.tsx.snap +133 -0
  585. package/src/TabsListItem/index.test.tsx +38 -0
  586. package/src/TabsListItem/index.tsx +50 -0
  587. package/src/TabsPanel/__snapshots__/index.test.tsx.snap +83 -0
  588. package/src/TabsPanel/index.test.tsx +20 -0
  589. package/src/TabsPanel/index.tsx +37 -0
  590. package/src/TextArea/__snapshots__/index.test.tsx.snap +113 -0
  591. package/src/TextArea/index.test.tsx +28 -0
  592. package/src/TextArea/index.tsx +49 -0
  593. package/src/TextInput/__snapshots__/index.test.tsx.snap +760 -0
  594. package/src/TextInput/index.test.tsx +256 -0
  595. package/src/TextInput/index.tsx +82 -0
  596. package/src/Top/__snapshots__/index.test.tsx.snap +16 -0
  597. package/src/Top/index.test.tsx +8 -0
  598. package/src/Top/index.tsx +27 -0
  599. package/src/UncheckIcon/__snapshots__/index.test.tsx.snap +452 -0
  600. package/src/UncheckIcon/index.test.tsx +50 -0
  601. package/src/UncheckIcon/index.tsx +34 -0
  602. package/src/Unpurge/index.tsx +112 -0
  603. package/src/VisuallyHidden/__snapshots__/index.test.tsx.snap +16 -0
  604. package/src/VisuallyHidden/index.test.tsx +8 -0
  605. package/src/VisuallyHidden/index.tsx +28 -0
  606. package/src/WarningText/__snapshots__/index.test.tsx.snap +30 -0
  607. package/src/WarningText/index.test.tsx +8 -0
  608. package/src/WarningText/index.tsx +48 -0
  609. package/src/index.ts +147 -0
  610. package/src/registry.js +336 -0
@@ -0,0 +1,760 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=full 1`] = `
4
+ <ForwardRef(TextInput)
5
+ cellWidth="full"
6
+ characterWidth={5}
7
+ >
8
+ <ForwardRef(Base)
9
+ as="input"
10
+ className="govgr-input--width-5 govgr-!-width-full govgr-input"
11
+ type="text"
12
+ >
13
+ <input
14
+ className="govgr-input--width-5 govgr-!-width-full govgr-input"
15
+ type="text"
16
+ />
17
+ </ForwardRef(Base)>
18
+ </ForwardRef(TextInput)>
19
+ `;
20
+
21
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=one-half 1`] = `
22
+ <ForwardRef(TextInput)
23
+ cellWidth="one-half"
24
+ characterWidth={5}
25
+ >
26
+ <ForwardRef(Base)
27
+ as="input"
28
+ className="govgr-!-width-one-half govgr-input--width-5 govgr-input"
29
+ type="text"
30
+ >
31
+ <input
32
+ className="govgr-!-width-one-half govgr-input--width-5 govgr-input"
33
+ type="text"
34
+ />
35
+ </ForwardRef(Base)>
36
+ </ForwardRef(TextInput)>
37
+ `;
38
+
39
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=one-quarter 1`] = `
40
+ <ForwardRef(TextInput)
41
+ cellWidth="one-quarter"
42
+ characterWidth={5}
43
+ >
44
+ <ForwardRef(Base)
45
+ as="input"
46
+ className="govgr-!-width-one-quarter govgr-input--width-5 govgr-input"
47
+ type="text"
48
+ >
49
+ <input
50
+ className="govgr-!-width-one-quarter govgr-input--width-5 govgr-input"
51
+ type="text"
52
+ />
53
+ </ForwardRef(Base)>
54
+ </ForwardRef(TextInput)>
55
+ `;
56
+
57
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=one-third 1`] = `
58
+ <ForwardRef(TextInput)
59
+ cellWidth="one-third"
60
+ characterWidth={5}
61
+ >
62
+ <ForwardRef(Base)
63
+ as="input"
64
+ className="govgr-!-width-one-third govgr-input--width-5 govgr-input"
65
+ type="text"
66
+ >
67
+ <input
68
+ className="govgr-!-width-one-third govgr-input--width-5 govgr-input"
69
+ type="text"
70
+ />
71
+ </ForwardRef(Base)>
72
+ </ForwardRef(TextInput)>
73
+ `;
74
+
75
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=three-quarters 1`] = `
76
+ <ForwardRef(TextInput)
77
+ cellWidth="three-quarters"
78
+ characterWidth={5}
79
+ >
80
+ <ForwardRef(Base)
81
+ as="input"
82
+ className="govgr-!-width-three-quarters govgr-input--width-5 govgr-input"
83
+ type="text"
84
+ >
85
+ <input
86
+ className="govgr-!-width-three-quarters govgr-input--width-5 govgr-input"
87
+ type="text"
88
+ />
89
+ </ForwardRef(Base)>
90
+ </ForwardRef(TextInput)>
91
+ `;
92
+
93
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=two-thirds 1`] = `
94
+ <ForwardRef(TextInput)
95
+ cellWidth="two-thirds"
96
+ characterWidth={5}
97
+ >
98
+ <ForwardRef(Base)
99
+ as="input"
100
+ className="govgr-!-width-two-thirds govgr-input--width-5 govgr-input"
101
+ type="text"
102
+ >
103
+ <input
104
+ className="govgr-!-width-two-thirds govgr-input--width-5 govgr-input"
105
+ type="text"
106
+ />
107
+ </ForwardRef(Base)>
108
+ </ForwardRef(TextInput)>
109
+ `;
110
+
111
+ exports[`renders the TextInput with cellWidth=full 1`] = `
112
+ <ForwardRef(TextInput)
113
+ cellWidth="full"
114
+ >
115
+ <ForwardRef(Base)
116
+ as="input"
117
+ className="govgr-!-width-full govgr-input"
118
+ type="text"
119
+ >
120
+ <input
121
+ className="govgr-!-width-full govgr-input"
122
+ type="text"
123
+ />
124
+ </ForwardRef(Base)>
125
+ </ForwardRef(TextInput)>
126
+ `;
127
+
128
+ exports[`renders the TextInput with cellWidth=one-half 1`] = `
129
+ <ForwardRef(TextInput)
130
+ cellWidth="one-half"
131
+ >
132
+ <ForwardRef(Base)
133
+ as="input"
134
+ className="govgr-!-width-one-half govgr-input"
135
+ type="text"
136
+ >
137
+ <input
138
+ className="govgr-!-width-one-half govgr-input"
139
+ type="text"
140
+ />
141
+ </ForwardRef(Base)>
142
+ </ForwardRef(TextInput)>
143
+ `;
144
+
145
+ exports[`renders the TextInput with cellWidth=one-quarter 1`] = `
146
+ <ForwardRef(TextInput)
147
+ cellWidth="one-quarter"
148
+ >
149
+ <ForwardRef(Base)
150
+ as="input"
151
+ className="govgr-!-width-one-quarter govgr-input"
152
+ type="text"
153
+ >
154
+ <input
155
+ className="govgr-!-width-one-quarter govgr-input"
156
+ type="text"
157
+ />
158
+ </ForwardRef(Base)>
159
+ </ForwardRef(TextInput)>
160
+ `;
161
+
162
+ exports[`renders the TextInput with cellWidth=one-third 1`] = `
163
+ <ForwardRef(TextInput)
164
+ cellWidth="one-third"
165
+ >
166
+ <ForwardRef(Base)
167
+ as="input"
168
+ className="govgr-!-width-one-third govgr-input"
169
+ type="text"
170
+ >
171
+ <input
172
+ className="govgr-!-width-one-third govgr-input"
173
+ type="text"
174
+ />
175
+ </ForwardRef(Base)>
176
+ </ForwardRef(TextInput)>
177
+ `;
178
+
179
+ exports[`renders the TextInput with cellWidth=three-quarters 1`] = `
180
+ <ForwardRef(TextInput)
181
+ cellWidth="three-quarters"
182
+ >
183
+ <ForwardRef(Base)
184
+ as="input"
185
+ className="govgr-!-width-three-quarters govgr-input"
186
+ type="text"
187
+ >
188
+ <input
189
+ className="govgr-!-width-three-quarters govgr-input"
190
+ type="text"
191
+ />
192
+ </ForwardRef(Base)>
193
+ </ForwardRef(TextInput)>
194
+ `;
195
+
196
+ exports[`renders the TextInput with cellWidth=two-thirds 1`] = `
197
+ <ForwardRef(TextInput)
198
+ cellWidth="two-thirds"
199
+ >
200
+ <ForwardRef(Base)
201
+ as="input"
202
+ className="govgr-!-width-two-thirds govgr-input"
203
+ type="text"
204
+ >
205
+ <input
206
+ className="govgr-!-width-two-thirds govgr-input"
207
+ type="text"
208
+ />
209
+ </ForwardRef(Base)>
210
+ </ForwardRef(TextInput)>
211
+ `;
212
+
213
+ exports[`renders the TextInput with characterWidth=2 1`] = `
214
+ <ForwardRef(TextInput)
215
+ characterWidth={2}
216
+ >
217
+ <ForwardRef(Base)
218
+ as="input"
219
+ className="govgr-input--width-2 govgr-input"
220
+ type="text"
221
+ >
222
+ <input
223
+ className="govgr-input--width-2 govgr-input"
224
+ type="text"
225
+ />
226
+ </ForwardRef(Base)>
227
+ </ForwardRef(TextInput)>
228
+ `;
229
+
230
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=full 1`] = `
231
+ <ForwardRef(TextInput)
232
+ cellWidth="full"
233
+ characterWidth={2}
234
+ >
235
+ <ForwardRef(Base)
236
+ as="input"
237
+ className="govgr-input--width-2 govgr-!-width-full govgr-input"
238
+ type="text"
239
+ >
240
+ <input
241
+ className="govgr-input--width-2 govgr-!-width-full govgr-input"
242
+ type="text"
243
+ />
244
+ </ForwardRef(Base)>
245
+ </ForwardRef(TextInput)>
246
+ `;
247
+
248
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=one-half 1`] = `
249
+ <ForwardRef(TextInput)
250
+ cellWidth="one-half"
251
+ characterWidth={2}
252
+ >
253
+ <ForwardRef(Base)
254
+ as="input"
255
+ className="govgr-!-width-one-half govgr-input--width-2 govgr-input"
256
+ type="text"
257
+ >
258
+ <input
259
+ className="govgr-!-width-one-half govgr-input--width-2 govgr-input"
260
+ type="text"
261
+ />
262
+ </ForwardRef(Base)>
263
+ </ForwardRef(TextInput)>
264
+ `;
265
+
266
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=one-quarter 1`] = `
267
+ <ForwardRef(TextInput)
268
+ cellWidth="one-quarter"
269
+ characterWidth={2}
270
+ >
271
+ <ForwardRef(Base)
272
+ as="input"
273
+ className="govgr-!-width-one-quarter govgr-input--width-2 govgr-input"
274
+ type="text"
275
+ >
276
+ <input
277
+ className="govgr-!-width-one-quarter govgr-input--width-2 govgr-input"
278
+ type="text"
279
+ />
280
+ </ForwardRef(Base)>
281
+ </ForwardRef(TextInput)>
282
+ `;
283
+
284
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=one-third 1`] = `
285
+ <ForwardRef(TextInput)
286
+ cellWidth="one-third"
287
+ characterWidth={2}
288
+ >
289
+ <ForwardRef(Base)
290
+ as="input"
291
+ className="govgr-!-width-one-third govgr-input--width-2 govgr-input"
292
+ type="text"
293
+ >
294
+ <input
295
+ className="govgr-!-width-one-third govgr-input--width-2 govgr-input"
296
+ type="text"
297
+ />
298
+ </ForwardRef(Base)>
299
+ </ForwardRef(TextInput)>
300
+ `;
301
+
302
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=three-quarters 1`] = `
303
+ <ForwardRef(TextInput)
304
+ cellWidth="three-quarters"
305
+ characterWidth={2}
306
+ >
307
+ <ForwardRef(Base)
308
+ as="input"
309
+ className="govgr-!-width-three-quarters govgr-input--width-2 govgr-input"
310
+ type="text"
311
+ >
312
+ <input
313
+ className="govgr-!-width-three-quarters govgr-input--width-2 govgr-input"
314
+ type="text"
315
+ />
316
+ </ForwardRef(Base)>
317
+ </ForwardRef(TextInput)>
318
+ `;
319
+
320
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=two-thirds 1`] = `
321
+ <ForwardRef(TextInput)
322
+ cellWidth="two-thirds"
323
+ characterWidth={2}
324
+ >
325
+ <ForwardRef(Base)
326
+ as="input"
327
+ className="govgr-!-width-two-thirds govgr-input--width-2 govgr-input"
328
+ type="text"
329
+ >
330
+ <input
331
+ className="govgr-!-width-two-thirds govgr-input--width-2 govgr-input"
332
+ type="text"
333
+ />
334
+ </ForwardRef(Base)>
335
+ </ForwardRef(TextInput)>
336
+ `;
337
+
338
+ exports[`renders the TextInput with characterWidth=3 1`] = `
339
+ <ForwardRef(TextInput)
340
+ characterWidth={3}
341
+ >
342
+ <ForwardRef(Base)
343
+ as="input"
344
+ className="govgr-input--width-3 govgr-input"
345
+ type="text"
346
+ >
347
+ <input
348
+ className="govgr-input--width-3 govgr-input"
349
+ type="text"
350
+ />
351
+ </ForwardRef(Base)>
352
+ </ForwardRef(TextInput)>
353
+ `;
354
+
355
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=full 1`] = `
356
+ <ForwardRef(TextInput)
357
+ cellWidth="full"
358
+ characterWidth={3}
359
+ >
360
+ <ForwardRef(Base)
361
+ as="input"
362
+ className="govgr-input--width-3 govgr-!-width-full govgr-input"
363
+ type="text"
364
+ >
365
+ <input
366
+ className="govgr-input--width-3 govgr-!-width-full govgr-input"
367
+ type="text"
368
+ />
369
+ </ForwardRef(Base)>
370
+ </ForwardRef(TextInput)>
371
+ `;
372
+
373
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=one-half 1`] = `
374
+ <ForwardRef(TextInput)
375
+ cellWidth="one-half"
376
+ characterWidth={3}
377
+ >
378
+ <ForwardRef(Base)
379
+ as="input"
380
+ className="govgr-!-width-one-half govgr-input--width-3 govgr-input"
381
+ type="text"
382
+ >
383
+ <input
384
+ className="govgr-!-width-one-half govgr-input--width-3 govgr-input"
385
+ type="text"
386
+ />
387
+ </ForwardRef(Base)>
388
+ </ForwardRef(TextInput)>
389
+ `;
390
+
391
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=one-quarter 1`] = `
392
+ <ForwardRef(TextInput)
393
+ cellWidth="one-quarter"
394
+ characterWidth={3}
395
+ >
396
+ <ForwardRef(Base)
397
+ as="input"
398
+ className="govgr-!-width-one-quarter govgr-input--width-3 govgr-input"
399
+ type="text"
400
+ >
401
+ <input
402
+ className="govgr-!-width-one-quarter govgr-input--width-3 govgr-input"
403
+ type="text"
404
+ />
405
+ </ForwardRef(Base)>
406
+ </ForwardRef(TextInput)>
407
+ `;
408
+
409
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=one-third 1`] = `
410
+ <ForwardRef(TextInput)
411
+ cellWidth="one-third"
412
+ characterWidth={3}
413
+ >
414
+ <ForwardRef(Base)
415
+ as="input"
416
+ className="govgr-!-width-one-third govgr-input--width-3 govgr-input"
417
+ type="text"
418
+ >
419
+ <input
420
+ className="govgr-!-width-one-third govgr-input--width-3 govgr-input"
421
+ type="text"
422
+ />
423
+ </ForwardRef(Base)>
424
+ </ForwardRef(TextInput)>
425
+ `;
426
+
427
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=three-quarters 1`] = `
428
+ <ForwardRef(TextInput)
429
+ cellWidth="three-quarters"
430
+ characterWidth={3}
431
+ >
432
+ <ForwardRef(Base)
433
+ as="input"
434
+ className="govgr-!-width-three-quarters govgr-input--width-3 govgr-input"
435
+ type="text"
436
+ >
437
+ <input
438
+ className="govgr-!-width-three-quarters govgr-input--width-3 govgr-input"
439
+ type="text"
440
+ />
441
+ </ForwardRef(Base)>
442
+ </ForwardRef(TextInput)>
443
+ `;
444
+
445
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=two-thirds 1`] = `
446
+ <ForwardRef(TextInput)
447
+ cellWidth="two-thirds"
448
+ characterWidth={3}
449
+ >
450
+ <ForwardRef(Base)
451
+ as="input"
452
+ className="govgr-!-width-two-thirds govgr-input--width-3 govgr-input"
453
+ type="text"
454
+ >
455
+ <input
456
+ className="govgr-!-width-two-thirds govgr-input--width-3 govgr-input"
457
+ type="text"
458
+ />
459
+ </ForwardRef(Base)>
460
+ </ForwardRef(TextInput)>
461
+ `;
462
+
463
+ exports[`renders the TextInput with characterWidth=4 1`] = `
464
+ <ForwardRef(TextInput)
465
+ characterWidth={4}
466
+ >
467
+ <ForwardRef(Base)
468
+ as="input"
469
+ className="govgr-input--width-4 govgr-input"
470
+ type="text"
471
+ >
472
+ <input
473
+ className="govgr-input--width-4 govgr-input"
474
+ type="text"
475
+ />
476
+ </ForwardRef(Base)>
477
+ </ForwardRef(TextInput)>
478
+ `;
479
+
480
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=full 1`] = `
481
+ <ForwardRef(TextInput)
482
+ cellWidth="full"
483
+ characterWidth={4}
484
+ >
485
+ <ForwardRef(Base)
486
+ as="input"
487
+ className="govgr-input--width-4 govgr-!-width-full govgr-input"
488
+ type="text"
489
+ >
490
+ <input
491
+ className="govgr-input--width-4 govgr-!-width-full govgr-input"
492
+ type="text"
493
+ />
494
+ </ForwardRef(Base)>
495
+ </ForwardRef(TextInput)>
496
+ `;
497
+
498
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=one-half 1`] = `
499
+ <ForwardRef(TextInput)
500
+ cellWidth="one-half"
501
+ characterWidth={4}
502
+ >
503
+ <ForwardRef(Base)
504
+ as="input"
505
+ className="govgr-!-width-one-half govgr-input--width-4 govgr-input"
506
+ type="text"
507
+ >
508
+ <input
509
+ className="govgr-!-width-one-half govgr-input--width-4 govgr-input"
510
+ type="text"
511
+ />
512
+ </ForwardRef(Base)>
513
+ </ForwardRef(TextInput)>
514
+ `;
515
+
516
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=one-quarter 1`] = `
517
+ <ForwardRef(TextInput)
518
+ cellWidth="one-quarter"
519
+ characterWidth={4}
520
+ >
521
+ <ForwardRef(Base)
522
+ as="input"
523
+ className="govgr-!-width-one-quarter govgr-input--width-4 govgr-input"
524
+ type="text"
525
+ >
526
+ <input
527
+ className="govgr-!-width-one-quarter govgr-input--width-4 govgr-input"
528
+ type="text"
529
+ />
530
+ </ForwardRef(Base)>
531
+ </ForwardRef(TextInput)>
532
+ `;
533
+
534
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=one-third 1`] = `
535
+ <ForwardRef(TextInput)
536
+ cellWidth="one-third"
537
+ characterWidth={4}
538
+ >
539
+ <ForwardRef(Base)
540
+ as="input"
541
+ className="govgr-!-width-one-third govgr-input--width-4 govgr-input"
542
+ type="text"
543
+ >
544
+ <input
545
+ className="govgr-!-width-one-third govgr-input--width-4 govgr-input"
546
+ type="text"
547
+ />
548
+ </ForwardRef(Base)>
549
+ </ForwardRef(TextInput)>
550
+ `;
551
+
552
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=three-quarters 1`] = `
553
+ <ForwardRef(TextInput)
554
+ cellWidth="three-quarters"
555
+ characterWidth={4}
556
+ >
557
+ <ForwardRef(Base)
558
+ as="input"
559
+ className="govgr-!-width-three-quarters govgr-input--width-4 govgr-input"
560
+ type="text"
561
+ >
562
+ <input
563
+ className="govgr-!-width-three-quarters govgr-input--width-4 govgr-input"
564
+ type="text"
565
+ />
566
+ </ForwardRef(Base)>
567
+ </ForwardRef(TextInput)>
568
+ `;
569
+
570
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=two-thirds 1`] = `
571
+ <ForwardRef(TextInput)
572
+ cellWidth="two-thirds"
573
+ characterWidth={4}
574
+ >
575
+ <ForwardRef(Base)
576
+ as="input"
577
+ className="govgr-!-width-two-thirds govgr-input--width-4 govgr-input"
578
+ type="text"
579
+ >
580
+ <input
581
+ className="govgr-!-width-two-thirds govgr-input--width-4 govgr-input"
582
+ type="text"
583
+ />
584
+ </ForwardRef(Base)>
585
+ </ForwardRef(TextInput)>
586
+ `;
587
+
588
+ exports[`renders the TextInput with characterWidth=5 1`] = `
589
+ <ForwardRef(TextInput)
590
+ characterWidth={5}
591
+ >
592
+ <ForwardRef(Base)
593
+ as="input"
594
+ className="govgr-input--width-5 govgr-input"
595
+ type="text"
596
+ >
597
+ <input
598
+ className="govgr-input--width-5 govgr-input"
599
+ type="text"
600
+ />
601
+ </ForwardRef(Base)>
602
+ </ForwardRef(TextInput)>
603
+ `;
604
+
605
+ exports[`renders the TextInput with characterWidth=10 1`] = `
606
+ <ForwardRef(TextInput)
607
+ characterWidth={10}
608
+ >
609
+ <ForwardRef(Base)
610
+ as="input"
611
+ className="govgr-input--width-10 govgr-input"
612
+ type="text"
613
+ >
614
+ <input
615
+ className="govgr-input--width-10 govgr-input"
616
+ type="text"
617
+ />
618
+ </ForwardRef(Base)>
619
+ </ForwardRef(TextInput)>
620
+ `;
621
+
622
+ exports[`renders the TextInput with characterWidth=20 1`] = `
623
+ <ForwardRef(TextInput)
624
+ characterWidth={20}
625
+ >
626
+ <ForwardRef(Base)
627
+ as="input"
628
+ className="govgr-input--width-20 govgr-input"
629
+ type="text"
630
+ >
631
+ <input
632
+ className="govgr-input--width-20 govgr-input"
633
+ type="text"
634
+ />
635
+ </ForwardRef(Base)>
636
+ </ForwardRef(TextInput)>
637
+ `;
638
+
639
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=full 1`] = `
640
+ <ForwardRef(TextInput)
641
+ cellWidth="full"
642
+ characterWidth={20}
643
+ >
644
+ <ForwardRef(Base)
645
+ as="input"
646
+ className="govgr-input--width-20 govgr-!-width-full govgr-input"
647
+ type="text"
648
+ >
649
+ <input
650
+ className="govgr-input--width-20 govgr-!-width-full govgr-input"
651
+ type="text"
652
+ />
653
+ </ForwardRef(Base)>
654
+ </ForwardRef(TextInput)>
655
+ `;
656
+
657
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=one-half 1`] = `
658
+ <ForwardRef(TextInput)
659
+ cellWidth="one-half"
660
+ characterWidth={20}
661
+ >
662
+ <ForwardRef(Base)
663
+ as="input"
664
+ className="govgr-!-width-one-half govgr-input--width-20 govgr-input"
665
+ type="text"
666
+ >
667
+ <input
668
+ className="govgr-!-width-one-half govgr-input--width-20 govgr-input"
669
+ type="text"
670
+ />
671
+ </ForwardRef(Base)>
672
+ </ForwardRef(TextInput)>
673
+ `;
674
+
675
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=one-quarter 1`] = `
676
+ <ForwardRef(TextInput)
677
+ cellWidth="one-quarter"
678
+ characterWidth={20}
679
+ >
680
+ <ForwardRef(Base)
681
+ as="input"
682
+ className="govgr-!-width-one-quarter govgr-input--width-20 govgr-input"
683
+ type="text"
684
+ >
685
+ <input
686
+ className="govgr-!-width-one-quarter govgr-input--width-20 govgr-input"
687
+ type="text"
688
+ />
689
+ </ForwardRef(Base)>
690
+ </ForwardRef(TextInput)>
691
+ `;
692
+
693
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=one-third 1`] = `
694
+ <ForwardRef(TextInput)
695
+ cellWidth="one-third"
696
+ characterWidth={20}
697
+ >
698
+ <ForwardRef(Base)
699
+ as="input"
700
+ className="govgr-!-width-one-third govgr-input--width-20 govgr-input"
701
+ type="text"
702
+ >
703
+ <input
704
+ className="govgr-!-width-one-third govgr-input--width-20 govgr-input"
705
+ type="text"
706
+ />
707
+ </ForwardRef(Base)>
708
+ </ForwardRef(TextInput)>
709
+ `;
710
+
711
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=three-quarters 1`] = `
712
+ <ForwardRef(TextInput)
713
+ cellWidth="three-quarters"
714
+ characterWidth={20}
715
+ >
716
+ <ForwardRef(Base)
717
+ as="input"
718
+ className="govgr-!-width-three-quarters govgr-input--width-20 govgr-input"
719
+ type="text"
720
+ >
721
+ <input
722
+ className="govgr-!-width-three-quarters govgr-input--width-20 govgr-input"
723
+ type="text"
724
+ />
725
+ </ForwardRef(Base)>
726
+ </ForwardRef(TextInput)>
727
+ `;
728
+
729
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=two-thirds 1`] = `
730
+ <ForwardRef(TextInput)
731
+ cellWidth="two-thirds"
732
+ characterWidth={20}
733
+ >
734
+ <ForwardRef(Base)
735
+ as="input"
736
+ className="govgr-!-width-two-thirds govgr-input--width-20 govgr-input"
737
+ type="text"
738
+ >
739
+ <input
740
+ className="govgr-!-width-two-thirds govgr-input--width-20 govgr-input"
741
+ type="text"
742
+ />
743
+ </ForwardRef(Base)>
744
+ </ForwardRef(TextInput)>
745
+ `;
746
+
747
+ exports[`renders the TextInput with no props 1`] = `
748
+ <ForwardRef(TextInput)>
749
+ <ForwardRef(Base)
750
+ as="input"
751
+ className="govgr-input"
752
+ type="text"
753
+ >
754
+ <input
755
+ className="govgr-input"
756
+ type="text"
757
+ />
758
+ </ForwardRef(Base)>
759
+ </ForwardRef(TextInput)>
760
+ `;