@digigov/react-core 0.2.0 → 0.3.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 (490) hide show
  1. package/CHANGELOG.json +34 -0
  2. package/CHANGELOG.md +15 -1
  3. package/dist/AccordionControls/index.d.ts +9 -0
  4. package/dist/AccordionControls/index.js +35 -0
  5. package/dist/AccordionControls/index.test.d.ts +1 -0
  6. package/dist/AccordionControls/index.test.js +15 -0
  7. package/dist/AccordionSection/index.js +5 -5
  8. package/dist/AccordionSectionHeader/index.js +1 -1
  9. package/dist/BackLink/index.js +3 -0
  10. package/dist/ButtonLink/index.d.ts +17 -0
  11. package/dist/ButtonLink/index.js +37 -0
  12. package/dist/ButtonLink/index.test.d.ts +1 -0
  13. package/dist/ButtonLink/index.test.js +80 -0
  14. package/dist/CHANGELOG.md +15 -1
  15. package/dist/CallToAction/index.d.ts +4 -7
  16. package/dist/CallToAction/index.js +6 -7
  17. package/dist/CheckboxItem/__snapshots__/index.test.tsx.snap +42 -0
  18. package/dist/Container/index.js +0 -1
  19. package/dist/GovGRLogo/index.d.ts +1 -5
  20. package/dist/Grid/__snapshots__/index.test.tsx.snap +105 -0
  21. package/dist/Grid/index.d.ts +20 -0
  22. package/dist/Grid/index.js +46 -0
  23. package/dist/Grid/index.test.d.ts +1 -0
  24. package/dist/Grid/index.test.js +71 -0
  25. package/dist/HeaderLogo/__snapshots__/index.test.tsx.snap +1 -1
  26. package/dist/HeaderLogo/index.d.ts +10 -2
  27. package/dist/HeaderLogo/index.js +8 -6
  28. package/dist/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +2 -2
  29. package/dist/HeaderSecondaryLogo/index.js +1 -1
  30. package/dist/Heading/index.d.ts +2 -1
  31. package/dist/Heading/index.js +22 -3
  32. package/dist/HellenicRepublicLogo/index.d.ts +5 -0
  33. package/dist/HellenicRepublicLogo/index.js +8 -4
  34. package/dist/HellenicRepublicLogo/logo-el.d.ts +2 -0
  35. package/dist/HellenicRepublicLogo/logo-el.js +8 -0
  36. package/dist/HellenicRepublicLogo/logo-en.d.ts +2 -0
  37. package/dist/HellenicRepublicLogo/logo-en.js +8 -0
  38. package/dist/Layout/index.d.ts +2 -1
  39. package/dist/Layout/index.js +4 -2
  40. package/dist/NavHorizontal/__snapshots__/index.test.tsx.snap +24 -0
  41. package/dist/PhaseBanner/__snapshots__/index.test.tsx.snap +16 -0
  42. package/dist/PhaseBanner/index.d.ts +6 -1
  43. package/dist/PhaseBanner/index.js +4 -2
  44. package/dist/PhaseBanner/index.test.js +8 -0
  45. package/dist/Table/__snapshots__/index.test.tsx.snap +59 -0
  46. package/dist/Table/index.d.ts +34 -0
  47. package/dist/Table/index.js +42 -0
  48. package/dist/Table/index.test.d.ts +1 -0
  49. package/dist/Table/index.test.js +47 -0
  50. package/dist/TableBody/__snapshots__/index.test.tsx.snap +11 -0
  51. package/dist/TableBody/index.d.ts +9 -0
  52. package/dist/TableBody/index.js +35 -0
  53. package/dist/TableBody/index.test.d.ts +1 -0
  54. package/dist/TableBody/index.test.js +15 -0
  55. package/dist/TableCaption/__snapshots__/index.test.tsx.snap +59 -0
  56. package/dist/TableCaption/index.d.ts +15 -0
  57. package/dist/TableCaption/index.js +37 -0
  58. package/dist/TableCaption/index.test.d.ts +1 -0
  59. package/dist/TableCaption/index.test.js +47 -0
  60. package/dist/TableDataCell/__snapshots__/index.test.tsx.snap +23 -0
  61. package/dist/TableDataCell/index.d.ts +15 -0
  62. package/dist/TableDataCell/index.js +37 -0
  63. package/dist/TableDataCell/index.test.d.ts +1 -0
  64. package/dist/TableDataCell/index.test.js +23 -0
  65. package/dist/TableHead/__snapshots__/index.test.tsx.snap +11 -0
  66. package/dist/TableHead/index.d.ts +9 -0
  67. package/dist/TableHead/index.js +35 -0
  68. package/dist/TableHead/index.test.d.ts +1 -0
  69. package/dist/TableHead/index.test.js +15 -0
  70. package/dist/TableHeaderCell/__snapshots__/index.test.tsx.snap +182 -0
  71. package/dist/TableHeaderCell/index.d.ts +21 -0
  72. package/dist/TableHeaderCell/index.js +38 -0
  73. package/dist/TableHeaderCell/index.test.d.ts +1 -0
  74. package/dist/TableHeaderCell/index.test.js +125 -0
  75. package/dist/TableRow/__snapshots__/index.test.tsx.snap +11 -0
  76. package/dist/TableRow/index.d.ts +9 -0
  77. package/dist/TableRow/index.js +35 -0
  78. package/dist/TableRow/index.test.d.ts +1 -0
  79. package/dist/TableRow/index.test.js +15 -0
  80. package/dist/TabsListItem/index.d.ts +3 -3
  81. package/dist/TabsListItem/index.js +8 -7
  82. package/dist/TabsPanel/index.js +2 -0
  83. package/dist/TextInput/__snapshots__/index.test.tsx.snap +161 -161
  84. package/dist/TextInput/index.d.ts +4 -3
  85. package/dist/TextInput/index.js +3 -3
  86. package/dist/TextInput/index.test.js +72 -72
  87. package/dist/es/AccordionControls/index.js +20 -0
  88. package/dist/es/AccordionControls/index.test.js +9 -0
  89. package/dist/es/AccordionSection/index.js +5 -5
  90. package/dist/es/AccordionSectionHeader/index.js +1 -1
  91. package/dist/es/BackLink/index.js +3 -0
  92. package/dist/es/ButtonLink/index.js +22 -0
  93. package/dist/es/ButtonLink/index.test.js +74 -0
  94. package/dist/es/CallToAction/index.js +5 -7
  95. package/dist/es/CheckboxItem/__snapshots__/index.test.tsx.snap +42 -0
  96. package/dist/es/Container/index.js +0 -1
  97. package/dist/es/Grid/__snapshots__/index.test.tsx.snap +105 -0
  98. package/dist/es/Grid/index.js +31 -0
  99. package/dist/es/Grid/index.test.js +65 -0
  100. package/dist/es/HeaderLogo/__snapshots__/index.test.tsx.snap +1 -1
  101. package/dist/es/HeaderLogo/index.js +8 -6
  102. package/dist/es/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +2 -2
  103. package/dist/es/HeaderSecondaryLogo/index.js +1 -1
  104. package/dist/es/Heading/index.js +22 -3
  105. package/dist/es/HellenicRepublicLogo/index.js +6 -4
  106. package/dist/es/HellenicRepublicLogo/logo-el.js +1 -0
  107. package/dist/es/HellenicRepublicLogo/logo-en.js +1 -0
  108. package/dist/es/Layout/index.js +4 -2
  109. package/dist/es/NavHorizontal/__snapshots__/index.test.tsx.snap +24 -0
  110. package/dist/es/PhaseBanner/__snapshots__/index.test.tsx.snap +16 -0
  111. package/dist/es/PhaseBanner/index.js +4 -2
  112. package/dist/es/PhaseBanner/index.test.js +8 -0
  113. package/dist/es/Table/__snapshots__/index.test.tsx.snap +59 -0
  114. package/dist/es/Table/index.js +27 -0
  115. package/dist/es/Table/index.test.js +41 -0
  116. package/dist/es/TableBody/__snapshots__/index.test.tsx.snap +11 -0
  117. package/dist/es/TableBody/index.js +20 -0
  118. package/dist/es/TableBody/index.test.js +9 -0
  119. package/dist/es/TableCaption/__snapshots__/index.test.tsx.snap +59 -0
  120. package/dist/es/TableCaption/index.js +22 -0
  121. package/dist/es/TableCaption/index.test.js +41 -0
  122. package/dist/es/TableDataCell/__snapshots__/index.test.tsx.snap +23 -0
  123. package/dist/es/TableDataCell/index.js +22 -0
  124. package/dist/es/TableDataCell/index.test.js +17 -0
  125. package/dist/es/TableHead/__snapshots__/index.test.tsx.snap +11 -0
  126. package/dist/es/TableHead/index.js +20 -0
  127. package/dist/es/TableHead/index.test.js +9 -0
  128. package/dist/es/TableHeaderCell/__snapshots__/index.test.tsx.snap +182 -0
  129. package/dist/es/TableHeaderCell/index.js +23 -0
  130. package/dist/es/TableHeaderCell/index.test.js +119 -0
  131. package/dist/es/TableRow/__snapshots__/index.test.tsx.snap +11 -0
  132. package/dist/es/TableRow/index.js +20 -0
  133. package/dist/es/TableRow/index.test.js +9 -0
  134. package/dist/es/TabsListItem/index.js +8 -7
  135. package/dist/es/TabsPanel/index.js +2 -0
  136. package/dist/es/TextInput/__snapshots__/index.test.tsx.snap +161 -161
  137. package/dist/es/TextInput/index.js +3 -3
  138. package/dist/es/TextInput/index.test.js +72 -72
  139. package/dist/es/index.js +7 -0
  140. package/dist/esm/AccordionControls/index.js +20 -0
  141. package/dist/esm/AccordionControls/index.test.js +9 -0
  142. package/dist/esm/AccordionSection/index.js +5 -5
  143. package/dist/esm/AccordionSectionHeader/index.js +1 -1
  144. package/dist/esm/BackLink/index.js +3 -0
  145. package/dist/esm/ButtonLink/index.js +22 -0
  146. package/dist/esm/ButtonLink/index.test.js +74 -0
  147. package/dist/esm/CallToAction/index.js +5 -7
  148. package/dist/esm/CheckboxItem/__snapshots__/index.test.tsx.snap +42 -0
  149. package/dist/esm/Container/index.js +0 -1
  150. package/dist/esm/Grid/__snapshots__/index.test.tsx.snap +105 -0
  151. package/dist/esm/Grid/index.js +31 -0
  152. package/dist/esm/Grid/index.test.js +65 -0
  153. package/dist/esm/HeaderLogo/__snapshots__/index.test.tsx.snap +1 -1
  154. package/dist/esm/HeaderLogo/index.js +8 -6
  155. package/dist/esm/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +2 -2
  156. package/dist/esm/HeaderSecondaryLogo/index.js +1 -1
  157. package/dist/esm/Heading/index.js +22 -3
  158. package/dist/esm/HellenicRepublicLogo/index.js +6 -4
  159. package/dist/esm/HellenicRepublicLogo/logo-el.js +1 -0
  160. package/dist/esm/HellenicRepublicLogo/logo-en.js +1 -0
  161. package/dist/esm/Layout/index.js +4 -2
  162. package/dist/esm/NavHorizontal/__snapshots__/index.test.tsx.snap +24 -0
  163. package/dist/esm/PhaseBanner/__snapshots__/index.test.tsx.snap +16 -0
  164. package/dist/esm/PhaseBanner/index.js +4 -2
  165. package/dist/esm/PhaseBanner/index.test.js +8 -0
  166. package/dist/esm/Table/__snapshots__/index.test.tsx.snap +59 -0
  167. package/dist/esm/Table/index.js +27 -0
  168. package/dist/esm/Table/index.test.js +41 -0
  169. package/dist/esm/TableBody/__snapshots__/index.test.tsx.snap +11 -0
  170. package/dist/esm/TableBody/index.js +20 -0
  171. package/dist/esm/TableBody/index.test.js +9 -0
  172. package/dist/esm/TableCaption/__snapshots__/index.test.tsx.snap +59 -0
  173. package/dist/esm/TableCaption/index.js +22 -0
  174. package/dist/esm/TableCaption/index.test.js +41 -0
  175. package/dist/esm/TableDataCell/__snapshots__/index.test.tsx.snap +23 -0
  176. package/dist/esm/TableDataCell/index.js +22 -0
  177. package/dist/esm/TableDataCell/index.test.js +17 -0
  178. package/dist/esm/TableHead/__snapshots__/index.test.tsx.snap +11 -0
  179. package/dist/esm/TableHead/index.js +20 -0
  180. package/dist/esm/TableHead/index.test.js +9 -0
  181. package/dist/esm/TableHeaderCell/__snapshots__/index.test.tsx.snap +182 -0
  182. package/dist/esm/TableHeaderCell/index.js +23 -0
  183. package/dist/esm/TableHeaderCell/index.test.js +119 -0
  184. package/dist/esm/TableRow/__snapshots__/index.test.tsx.snap +11 -0
  185. package/dist/esm/TableRow/index.js +20 -0
  186. package/dist/esm/TableRow/index.test.js +9 -0
  187. package/dist/esm/TabsListItem/index.js +8 -7
  188. package/dist/esm/TabsPanel/index.js +2 -0
  189. package/dist/esm/TextInput/__snapshots__/index.test.tsx.snap +161 -161
  190. package/dist/esm/TextInput/index.js +3 -3
  191. package/dist/esm/TextInput/index.test.js +72 -72
  192. package/dist/esm/index.js +8 -1
  193. package/dist/index.d.ts +7 -0
  194. package/dist/index.js +56 -0
  195. package/dist/package.json +2 -2
  196. package/package.json +3 -3
  197. package/react-core.build.log +15 -13
  198. package/src/AccordionControls/index.test.tsx +14 -0
  199. package/src/AccordionControls/index.tsx +24 -0
  200. package/src/AccordionSection/index.tsx +4 -5
  201. package/src/AccordionSectionHeader/index.tsx +2 -2
  202. package/src/BackLink/index.tsx +3 -0
  203. package/src/ButtonLink/index.test.tsx +56 -0
  204. package/src/ButtonLink/index.tsx +40 -0
  205. package/src/CallToAction/index.tsx +7 -13
  206. package/src/CheckboxItem/__snapshots__/index.test.tsx.snap +42 -0
  207. package/src/Container/index.tsx +0 -1
  208. package/src/GovGRLogo/index.tsx +1 -6
  209. package/src/Grid/__snapshots__/index.test.tsx.snap +105 -0
  210. package/src/Grid/index.test.tsx +29 -0
  211. package/src/Grid/index.tsx +121 -0
  212. package/src/HeaderLogo/__snapshots__/index.test.tsx.snap +1 -1
  213. package/src/HeaderLogo/index.tsx +15 -6
  214. package/src/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +2 -2
  215. package/src/HeaderSecondaryLogo/index.tsx +1 -1
  216. package/src/Heading/index.tsx +22 -3
  217. package/src/HellenicRepublicLogo/index.tsx +10 -10
  218. package/src/HellenicRepublicLogo/logo-el.ts +1 -0
  219. package/src/HellenicRepublicLogo/logo-en.ts +1 -0
  220. package/src/Layout/index.tsx +5 -2
  221. package/src/NavHorizontal/__snapshots__/index.test.tsx.snap +24 -0
  222. package/src/PhaseBanner/__snapshots__/index.test.tsx.snap +16 -0
  223. package/src/PhaseBanner/index.test.tsx +4 -0
  224. package/src/PhaseBanner/index.tsx +9 -2
  225. package/src/Table/__snapshots__/index.test.tsx.snap +59 -0
  226. package/src/Table/index.test.tsx +24 -0
  227. package/src/Table/index.tsx +68 -0
  228. package/src/TableBody/__snapshots__/index.test.tsx.snap +11 -0
  229. package/src/TableBody/index.test.tsx +8 -0
  230. package/src/TableBody/index.tsx +26 -0
  231. package/src/TableCaption/__snapshots__/index.test.tsx.snap +59 -0
  232. package/src/TableCaption/index.test.tsx +32 -0
  233. package/src/TableCaption/index.tsx +36 -0
  234. package/src/TableDataCell/__snapshots__/index.test.tsx.snap +23 -0
  235. package/src/TableDataCell/index.test.tsx +14 -0
  236. package/src/TableDataCell/index.tsx +37 -0
  237. package/src/TableHead/__snapshots__/index.test.tsx.snap +11 -0
  238. package/src/TableHead/index.test.tsx +8 -0
  239. package/src/TableHead/index.tsx +26 -0
  240. package/src/TableHeaderCell/__snapshots__/index.test.tsx.snap +182 -0
  241. package/src/TableHeaderCell/index.test.tsx +113 -0
  242. package/src/TableHeaderCell/index.tsx +55 -0
  243. package/src/TableRow/__snapshots__/index.test.tsx.snap +11 -0
  244. package/src/TableRow/index.test.tsx +8 -0
  245. package/src/TableRow/index.tsx +25 -0
  246. package/src/TabsListItem/index.tsx +24 -24
  247. package/src/TabsPanel/index.tsx +2 -0
  248. package/src/TextInput/__snapshots__/index.test.tsx.snap +161 -161
  249. package/src/TextInput/index.test.tsx +88 -72
  250. package/src/TextInput/index.tsx +10 -9
  251. package/src/index.ts +7 -0
  252. package/coverage/clover.xml +0 -919
  253. package/coverage/coverage-final.json +0 -115
  254. package/coverage/lcov-report/Accordion/index.html +0 -111
  255. package/coverage/lcov-report/Accordion/index.tsx.html +0 -158
  256. package/coverage/lcov-report/AccordionSection/index.html +0 -111
  257. package/coverage/lcov-report/AccordionSection/index.tsx.html +0 -182
  258. package/coverage/lcov-report/AccordionSectionContent/index.html +0 -111
  259. package/coverage/lcov-report/AccordionSectionContent/index.tsx.html +0 -161
  260. package/coverage/lcov-report/AccordionSectionHeader/index.html +0 -111
  261. package/coverage/lcov-report/AccordionSectionHeader/index.tsx.html +0 -194
  262. package/coverage/lcov-report/Aside/index.html +0 -111
  263. package/coverage/lcov-report/Aside/index.tsx.html +0 -161
  264. package/coverage/lcov-report/BackLink/index.html +0 -111
  265. package/coverage/lcov-report/BackLink/index.tsx.html +0 -188
  266. package/coverage/lcov-report/Blockquote/index.html +0 -111
  267. package/coverage/lcov-report/Blockquote/index.tsx.html +0 -155
  268. package/coverage/lcov-report/Bottom/index.html +0 -111
  269. package/coverage/lcov-report/Bottom/index.tsx.html +0 -149
  270. package/coverage/lcov-report/Breadcrumbs/index.html +0 -111
  271. package/coverage/lcov-report/Breadcrumbs/index.tsx.html +0 -158
  272. package/coverage/lcov-report/BreadcrumbsList/index.html +0 -111
  273. package/coverage/lcov-report/BreadcrumbsList/index.tsx.html +0 -158
  274. package/coverage/lcov-report/BreadcrumbsListItem/index.html +0 -111
  275. package/coverage/lcov-report/BreadcrumbsListItem/index.tsx.html +0 -197
  276. package/coverage/lcov-report/BurgerIcon/index.html +0 -111
  277. package/coverage/lcov-report/BurgerIcon/index.tsx.html +0 -227
  278. package/coverage/lcov-report/Button/index.html +0 -111
  279. package/coverage/lcov-report/Button/index.tsx.html +0 -221
  280. package/coverage/lcov-report/ButtonGroup/index.html +0 -111
  281. package/coverage/lcov-report/ButtonGroup/index.tsx.html +0 -155
  282. package/coverage/lcov-report/CallToAction/index.html +0 -111
  283. package/coverage/lcov-report/CallToAction/index.tsx.html +0 -203
  284. package/coverage/lcov-report/Card/index.html +0 -111
  285. package/coverage/lcov-report/Card/index.tsx.html +0 -203
  286. package/coverage/lcov-report/CardAction/index.html +0 -111
  287. package/coverage/lcov-report/CardAction/index.tsx.html +0 -164
  288. package/coverage/lcov-report/CardHeading/index.html +0 -111
  289. package/coverage/lcov-report/CardHeading/index.tsx.html +0 -167
  290. package/coverage/lcov-report/CardText/index.html +0 -111
  291. package/coverage/lcov-report/CardText/index.tsx.html +0 -161
  292. package/coverage/lcov-report/Checkbox/index.html +0 -111
  293. package/coverage/lcov-report/Checkbox/index.tsx.html +0 -161
  294. package/coverage/lcov-report/CheckboxConditional/index.html +0 -111
  295. package/coverage/lcov-report/CheckboxConditional/index.tsx.html +0 -236
  296. package/coverage/lcov-report/CheckboxItem/index.html +0 -111
  297. package/coverage/lcov-report/CheckboxItem/index.tsx.html +0 -233
  298. package/coverage/lcov-report/Confirmation/index.html +0 -111
  299. package/coverage/lcov-report/Confirmation/index.tsx.html +0 -158
  300. package/coverage/lcov-report/ConfirmationBody/index.html +0 -111
  301. package/coverage/lcov-report/ConfirmationBody/index.tsx.html +0 -158
  302. package/coverage/lcov-report/ConfirmationTitle/index.html +0 -111
  303. package/coverage/lcov-report/ConfirmationTitle/index.tsx.html +0 -158
  304. package/coverage/lcov-report/Container/index.html +0 -111
  305. package/coverage/lcov-report/Container/index.tsx.html +0 -179
  306. package/coverage/lcov-report/Copyright/index.html +0 -111
  307. package/coverage/lcov-report/Copyright/index.tsx.html +0 -158
  308. package/coverage/lcov-report/DateInput/index.html +0 -111
  309. package/coverage/lcov-report/DateInput/index.tsx.html +0 -164
  310. package/coverage/lcov-report/DateInputItem/index.html +0 -111
  311. package/coverage/lcov-report/DateInputItem/index.tsx.html +0 -227
  312. package/coverage/lcov-report/Details/index.html +0 -111
  313. package/coverage/lcov-report/Details/index.tsx.html +0 -158
  314. package/coverage/lcov-report/DetailsContent/index.html +0 -111
  315. package/coverage/lcov-report/DetailsContent/index.tsx.html +0 -161
  316. package/coverage/lcov-report/DetailsSummary/index.html +0 -111
  317. package/coverage/lcov-report/DetailsSummary/index.tsx.html +0 -158
  318. package/coverage/lcov-report/ErrorMessage/index.html +0 -111
  319. package/coverage/lcov-report/ErrorMessage/index.tsx.html +0 -164
  320. package/coverage/lcov-report/ErrorSummary/index.html +0 -111
  321. package/coverage/lcov-report/ErrorSummary/index.tsx.html +0 -155
  322. package/coverage/lcov-report/Fieldset/index.html +0 -111
  323. package/coverage/lcov-report/Fieldset/index.tsx.html +0 -158
  324. package/coverage/lcov-report/FieldsetLegend/index.html +0 -111
  325. package/coverage/lcov-report/FieldsetLegend/index.tsx.html +0 -233
  326. package/coverage/lcov-report/FileUpload/index.html +0 -111
  327. package/coverage/lcov-report/FileUpload/index.tsx.html +0 -197
  328. package/coverage/lcov-report/Footer/index.html +0 -111
  329. package/coverage/lcov-report/Footer/index.tsx.html +0 -155
  330. package/coverage/lcov-report/FooterContainer/index.html +0 -111
  331. package/coverage/lcov-report/FooterContainer/index.tsx.html +0 -158
  332. package/coverage/lcov-report/FooterContent/index.html +0 -111
  333. package/coverage/lcov-report/FooterContent/index.tsx.html +0 -161
  334. package/coverage/lcov-report/FooterContentLogos/index.html +0 -111
  335. package/coverage/lcov-report/FooterContentLogos/index.tsx.html +0 -164
  336. package/coverage/lcov-report/FooterHeading/index.html +0 -111
  337. package/coverage/lcov-report/FooterHeading/index.tsx.html +0 -185
  338. package/coverage/lcov-report/FooterImage/index.html +0 -111
  339. package/coverage/lcov-report/FooterImage/index.tsx.html +0 -161
  340. package/coverage/lcov-report/FooterInlineList/index.html +0 -111
  341. package/coverage/lcov-report/FooterInlineList/index.tsx.html +0 -164
  342. package/coverage/lcov-report/FooterInlineListItem/index.html +0 -111
  343. package/coverage/lcov-report/FooterInlineListItem/index.tsx.html +0 -158
  344. package/coverage/lcov-report/FooterLink/index.html +0 -111
  345. package/coverage/lcov-report/FooterLink/index.tsx.html +0 -173
  346. package/coverage/lcov-report/FooterList/index.html +0 -111
  347. package/coverage/lcov-report/FooterList/index.tsx.html +0 -179
  348. package/coverage/lcov-report/FooterListItem/index.html +0 -111
  349. package/coverage/lcov-report/FooterListItem/index.tsx.html +0 -161
  350. package/coverage/lcov-report/FooterMeta/index.html +0 -111
  351. package/coverage/lcov-report/FooterMeta/index.tsx.html +0 -161
  352. package/coverage/lcov-report/FooterMetaItem/index.html +0 -111
  353. package/coverage/lcov-report/FooterMetaItem/index.tsx.html +0 -179
  354. package/coverage/lcov-report/FooterNavigation/index.html +0 -111
  355. package/coverage/lcov-report/FooterNavigation/index.tsx.html +0 -164
  356. package/coverage/lcov-report/FooterSection/index.html +0 -111
  357. package/coverage/lcov-report/FooterSection/index.tsx.html +0 -164
  358. package/coverage/lcov-report/FormGroup/index.html +0 -111
  359. package/coverage/lcov-report/FormGroup/index.tsx.html +0 -173
  360. package/coverage/lcov-report/GovGRFooter/index.html +0 -111
  361. package/coverage/lcov-report/GovGRFooter/index.tsx.html +0 -155
  362. package/coverage/lcov-report/GovGRLogo/index.html +0 -111
  363. package/coverage/lcov-report/GovGRLogo/index.tsx.html +0 -176
  364. package/coverage/lcov-report/Header/index.html +0 -111
  365. package/coverage/lcov-report/Header/index.tsx.html +0 -167
  366. package/coverage/lcov-report/HeaderContent/index.html +0 -111
  367. package/coverage/lcov-report/HeaderContent/index.tsx.html +0 -158
  368. package/coverage/lcov-report/HeaderLogo/index.html +0 -111
  369. package/coverage/lcov-report/HeaderLogo/index.tsx.html +0 -164
  370. package/coverage/lcov-report/HeaderSecondaryLogo/index.html +0 -111
  371. package/coverage/lcov-report/HeaderSecondaryLogo/index.tsx.html +0 -185
  372. package/coverage/lcov-report/HeaderSection/index.html +0 -111
  373. package/coverage/lcov-report/HeaderSection/index.tsx.html +0 -158
  374. package/coverage/lcov-report/HeaderSubtitle/index.html +0 -111
  375. package/coverage/lcov-report/HeaderSubtitle/index.tsx.html +0 -140
  376. package/coverage/lcov-report/HeaderTitle/index.html +0 -111
  377. package/coverage/lcov-report/HeaderTitle/index.tsx.html +0 -176
  378. package/coverage/lcov-report/Heading/index.html +0 -111
  379. package/coverage/lcov-report/Heading/index.tsx.html +0 -212
  380. package/coverage/lcov-report/HeadingCaption/index.html +0 -111
  381. package/coverage/lcov-report/HeadingCaption/index.tsx.html +0 -185
  382. package/coverage/lcov-report/HellenicRepublicLogo/index.html +0 -111
  383. package/coverage/lcov-report/HellenicRepublicLogo/index.tsx.html +0 -206
  384. package/coverage/lcov-report/Hint/index.html +0 -111
  385. package/coverage/lcov-report/Hint/index.tsx.html +0 -155
  386. package/coverage/lcov-report/Label/index.html +0 -111
  387. package/coverage/lcov-report/Label/index.tsx.html +0 -176
  388. package/coverage/lcov-report/Layout/index.html +0 -111
  389. package/coverage/lcov-report/Layout/index.tsx.html +0 -155
  390. package/coverage/lcov-report/Link/index.html +0 -111
  391. package/coverage/lcov-report/Link/index.tsx.html +0 -176
  392. package/coverage/lcov-report/List/index.html +0 -111
  393. package/coverage/lcov-report/List/index.tsx.html +0 -197
  394. package/coverage/lcov-report/ListItem/index.html +0 -111
  395. package/coverage/lcov-report/ListItem/index.tsx.html +0 -155
  396. package/coverage/lcov-report/Main/index.html +0 -111
  397. package/coverage/lcov-report/Main/index.tsx.html +0 -158
  398. package/coverage/lcov-report/Masthead/index.html +0 -111
  399. package/coverage/lcov-report/Masthead/index.tsx.html +0 -206
  400. package/coverage/lcov-report/MastheadBody/index.html +0 -111
  401. package/coverage/lcov-report/MastheadBody/index.tsx.html +0 -158
  402. package/coverage/lcov-report/NavHorizontal/index.html +0 -111
  403. package/coverage/lcov-report/NavHorizontal/index.tsx.html +0 -182
  404. package/coverage/lcov-report/NavHorizontalList/index.html +0 -111
  405. package/coverage/lcov-report/NavHorizontalList/index.tsx.html +0 -161
  406. package/coverage/lcov-report/NavHorizontalListItem/index.html +0 -111
  407. package/coverage/lcov-report/NavHorizontalListItem/index.tsx.html +0 -206
  408. package/coverage/lcov-report/NavVertical/index.html +0 -111
  409. package/coverage/lcov-report/NavVertical/index.tsx.html +0 -161
  410. package/coverage/lcov-report/NavVerticalItem/index.html +0 -111
  411. package/coverage/lcov-report/NavVerticalItem/index.tsx.html +0 -182
  412. package/coverage/lcov-report/NormalText/index.html +0 -111
  413. package/coverage/lcov-report/NormalText/index.tsx.html +0 -263
  414. package/coverage/lcov-report/NotificationBanner/index.html +0 -111
  415. package/coverage/lcov-report/NotificationBanner/index.tsx.html +0 -197
  416. package/coverage/lcov-report/NotificationBannerContent/index.html +0 -111
  417. package/coverage/lcov-report/NotificationBannerContent/index.tsx.html +0 -167
  418. package/coverage/lcov-report/NotificationBannerHeader/index.html +0 -111
  419. package/coverage/lcov-report/NotificationBannerHeader/index.tsx.html +0 -182
  420. package/coverage/lcov-report/NotificationBannerHeading/index.html +0 -111
  421. package/coverage/lcov-report/NotificationBannerHeading/index.tsx.html +0 -164
  422. package/coverage/lcov-report/NotificationBannerLink/index.html +0 -111
  423. package/coverage/lcov-report/NotificationBannerLink/index.tsx.html +0 -191
  424. package/coverage/lcov-report/PageTitle/index.html +0 -111
  425. package/coverage/lcov-report/PageTitle/index.tsx.html +0 -137
  426. package/coverage/lcov-report/PageTitleCaption/index.html +0 -111
  427. package/coverage/lcov-report/PageTitleCaption/index.tsx.html +0 -191
  428. package/coverage/lcov-report/PageTitleHeading/index.html +0 -111
  429. package/coverage/lcov-report/PageTitleHeading/index.tsx.html +0 -191
  430. package/coverage/lcov-report/PageTitleSection/index.html +0 -111
  431. package/coverage/lcov-report/PageTitleSection/index.tsx.html +0 -140
  432. package/coverage/lcov-report/Paragraph/index.html +0 -111
  433. package/coverage/lcov-report/Paragraph/index.tsx.html +0 -260
  434. package/coverage/lcov-report/PhaseBanner/index.html +0 -111
  435. package/coverage/lcov-report/PhaseBanner/index.tsx.html +0 -176
  436. package/coverage/lcov-report/PhaseBannerTag/index.html +0 -111
  437. package/coverage/lcov-report/PhaseBannerTag/index.tsx.html +0 -161
  438. package/coverage/lcov-report/PhaseBannerText/index.html +0 -111
  439. package/coverage/lcov-report/PhaseBannerText/index.tsx.html +0 -164
  440. package/coverage/lcov-report/Radio/index.html +0 -111
  441. package/coverage/lcov-report/Radio/index.tsx.html +0 -158
  442. package/coverage/lcov-report/RadioItem/index.html +0 -111
  443. package/coverage/lcov-report/RadioItem/index.tsx.html +0 -230
  444. package/coverage/lcov-report/SectionBreak/index.html +0 -111
  445. package/coverage/lcov-report/SectionBreak/index.tsx.html +0 -194
  446. package/coverage/lcov-report/Select/index.html +0 -111
  447. package/coverage/lcov-report/Select/index.tsx.html +0 -179
  448. package/coverage/lcov-report/SelectOption/index.html +0 -111
  449. package/coverage/lcov-report/SelectOption/index.tsx.html +0 -200
  450. package/coverage/lcov-report/ServiceBadge/index.html +0 -111
  451. package/coverage/lcov-report/ServiceBadge/index.tsx.html +0 -161
  452. package/coverage/lcov-report/SummaryList/index.html +0 -111
  453. package/coverage/lcov-report/SummaryList/index.tsx.html +0 -158
  454. package/coverage/lcov-report/SummaryListItem/index.html +0 -111
  455. package/coverage/lcov-report/SummaryListItem/index.tsx.html +0 -161
  456. package/coverage/lcov-report/SummaryListItemAction/index.html +0 -111
  457. package/coverage/lcov-report/SummaryListItemAction/index.tsx.html +0 -161
  458. package/coverage/lcov-report/SummaryListItemKey/index.html +0 -111
  459. package/coverage/lcov-report/SummaryListItemKey/index.tsx.html +0 -161
  460. package/coverage/lcov-report/SummaryListItemValue/index.html +0 -111
  461. package/coverage/lcov-report/SummaryListItemValue/index.tsx.html +0 -158
  462. package/coverage/lcov-report/Tabs/index.html +0 -111
  463. package/coverage/lcov-report/Tabs/index.tsx.html +0 -161
  464. package/coverage/lcov-report/TabsHeading/index.html +0 -111
  465. package/coverage/lcov-report/TabsHeading/index.tsx.html +0 -185
  466. package/coverage/lcov-report/TabsList/index.html +0 -111
  467. package/coverage/lcov-report/TabsList/index.tsx.html +0 -161
  468. package/coverage/lcov-report/TabsListItem/index.html +0 -111
  469. package/coverage/lcov-report/TabsListItem/index.tsx.html +0 -227
  470. package/coverage/lcov-report/TabsPanel/index.html +0 -111
  471. package/coverage/lcov-report/TabsPanel/index.tsx.html +0 -182
  472. package/coverage/lcov-report/TextArea/index.html +0 -111
  473. package/coverage/lcov-report/TextArea/index.tsx.html +0 -224
  474. package/coverage/lcov-report/TextInput/index.html +0 -111
  475. package/coverage/lcov-report/TextInput/index.tsx.html +0 -320
  476. package/coverage/lcov-report/Top/index.html +0 -111
  477. package/coverage/lcov-report/Top/index.tsx.html +0 -152
  478. package/coverage/lcov-report/VisuallyHidden/index.html +0 -111
  479. package/coverage/lcov-report/VisuallyHidden/index.tsx.html +0 -161
  480. package/coverage/lcov-report/WarningText/index.html +0 -111
  481. package/coverage/lcov-report/WarningText/index.tsx.html +0 -221
  482. package/coverage/lcov-report/base.css +0 -224
  483. package/coverage/lcov-report/block-navigation.js +0 -79
  484. package/coverage/lcov-report/favicon.png +0 -0
  485. package/coverage/lcov-report/index.html +0 -1806
  486. package/coverage/lcov-report/prettify.css +0 -1
  487. package/coverage/lcov-report/prettify.js +0 -2
  488. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  489. package/coverage/lcov-report/sorter.js +0 -170
  490. package/coverage/lcov.info +0 -1508
@@ -1,92 +1,80 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`renders the TextInput with with characterWidth=5 with width=full 1`] = `
3
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=full 1`] = `
4
4
  <ForwardRef(TextInput)
5
- characterWidth="5"
6
- width="full"
5
+ cellWidth="full"
6
+ characterWidth={5}
7
7
  >
8
8
  <input
9
- className="govgr-!-width-full govgr-input"
10
- type="text"
11
- />
12
- </ForwardRef(TextInput)>
13
- `;
14
-
15
- exports[`renders the TextInput with with characterWidth=5 with width=one-half 1`] = `
16
- <ForwardRef(TextInput)
17
- characterWidth="5"
18
- width="one-half"
19
- >
20
- <input
21
- className="govgr-!-width-one-half govgr-input"
9
+ className="govgr-input--width-5 govgr-!-width-full govgr-input"
22
10
  type="text"
23
11
  />
24
12
  </ForwardRef(TextInput)>
25
13
  `;
26
14
 
27
- exports[`renders the TextInput with with characterWidth=5 with width=one-quarter 1`] = `
15
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=one-half 1`] = `
28
16
  <ForwardRef(TextInput)
29
- characterWidth="5"
30
- width="one-quarter"
17
+ cellWidth="one-half"
18
+ characterWidth={5}
31
19
  >
32
20
  <input
33
- className="govgr-!-width-one-quarter govgr-input"
21
+ className="govgr-!-width-one-half govgr-input--width-5 govgr-input"
34
22
  type="text"
35
23
  />
36
24
  </ForwardRef(TextInput)>
37
25
  `;
38
26
 
39
- exports[`renders the TextInput with with characterWidth=5 with width=one-third 1`] = `
27
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=one-quarter 1`] = `
40
28
  <ForwardRef(TextInput)
41
- characterWidth="5"
42
- width="one-third"
29
+ cellWidth="one-quarter"
30
+ characterWidth={5}
43
31
  >
44
32
  <input
45
- className="govgr-!-width-one-third govgr-input"
33
+ className="govgr-!-width-one-quarter govgr-input--width-5 govgr-input"
46
34
  type="text"
47
35
  />
48
36
  </ForwardRef(TextInput)>
49
37
  `;
50
38
 
51
- exports[`renders the TextInput with with characterWidth=5 with width=three-quarters 1`] = `
39
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=one-third 1`] = `
52
40
  <ForwardRef(TextInput)
53
- characterWidth="5"
54
- width="three-quarters"
41
+ cellWidth="one-third"
42
+ characterWidth={5}
55
43
  >
56
44
  <input
57
- className="govgr-!-width-three-quarters govgr-input"
45
+ className="govgr-!-width-one-third govgr-input--width-5 govgr-input"
58
46
  type="text"
59
47
  />
60
48
  </ForwardRef(TextInput)>
61
49
  `;
62
50
 
63
- exports[`renders the TextInput with with characterWidth=5 with width=two-thirds 1`] = `
51
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=three-quarters 1`] = `
64
52
  <ForwardRef(TextInput)
65
- characterWidth="5"
66
- width="two-thirds"
53
+ cellWidth="three-quarters"
54
+ characterWidth={5}
67
55
  >
68
56
  <input
69
- className="govgr-!-width-two-thirds govgr-input"
57
+ className="govgr-!-width-three-quarters govgr-input--width-5 govgr-input"
70
58
  type="text"
71
59
  />
72
60
  </ForwardRef(TextInput)>
73
61
  `;
74
62
 
75
- exports[`renders the TextInput with characterWidth=2 1`] = `
63
+ exports[`renders the TextInput with with characterWidth=5 with cellWidth=two-thirds 1`] = `
76
64
  <ForwardRef(TextInput)
77
- characterWidth="2"
65
+ cellWidth="two-thirds"
66
+ characterWidth={5}
78
67
  >
79
68
  <input
80
- className="govgr-input"
69
+ className="govgr-!-width-two-thirds govgr-input--width-5 govgr-input"
81
70
  type="text"
82
71
  />
83
72
  </ForwardRef(TextInput)>
84
73
  `;
85
74
 
86
- exports[`renders the TextInput with characterWidth=2 and with width=full 1`] = `
75
+ exports[`renders the TextInput with cellWidth=full 1`] = `
87
76
  <ForwardRef(TextInput)
88
- characterWidth="2"
89
- width="full"
77
+ cellWidth="full"
90
78
  >
91
79
  <input
92
80
  className="govgr-!-width-full govgr-input"
@@ -95,10 +83,9 @@ exports[`renders the TextInput with characterWidth=2 and with width=full 1`] = `
95
83
  </ForwardRef(TextInput)>
96
84
  `;
97
85
 
98
- exports[`renders the TextInput with characterWidth=2 and with width=one-half 1`] = `
86
+ exports[`renders the TextInput with cellWidth=one-half 1`] = `
99
87
  <ForwardRef(TextInput)
100
- characterWidth="2"
101
- width="one-half"
88
+ cellWidth="one-half"
102
89
  >
103
90
  <input
104
91
  className="govgr-!-width-one-half govgr-input"
@@ -107,10 +94,9 @@ exports[`renders the TextInput with characterWidth=2 and with width=one-half 1`]
107
94
  </ForwardRef(TextInput)>
108
95
  `;
109
96
 
110
- exports[`renders the TextInput with characterWidth=2 and with width=one-quarter 1`] = `
97
+ exports[`renders the TextInput with cellWidth=one-quarter 1`] = `
111
98
  <ForwardRef(TextInput)
112
- characterWidth="2"
113
- width="one-quarter"
99
+ cellWidth="one-quarter"
114
100
  >
115
101
  <input
116
102
  className="govgr-!-width-one-quarter govgr-input"
@@ -119,10 +105,9 @@ exports[`renders the TextInput with characterWidth=2 and with width=one-quarter
119
105
  </ForwardRef(TextInput)>
120
106
  `;
121
107
 
122
- exports[`renders the TextInput with characterWidth=2 and with width=one-third 1`] = `
108
+ exports[`renders the TextInput with cellWidth=one-third 1`] = `
123
109
  <ForwardRef(TextInput)
124
- characterWidth="2"
125
- width="one-third"
110
+ cellWidth="one-third"
126
111
  >
127
112
  <input
128
113
  className="govgr-!-width-one-third govgr-input"
@@ -131,10 +116,9 @@ exports[`renders the TextInput with characterWidth=2 and with width=one-third 1`
131
116
  </ForwardRef(TextInput)>
132
117
  `;
133
118
 
134
- exports[`renders the TextInput with characterWidth=2 and with width=three-quarters 1`] = `
119
+ exports[`renders the TextInput with cellWidth=three-quarters 1`] = `
135
120
  <ForwardRef(TextInput)
136
- characterWidth="2"
137
- width="three-quarters"
121
+ cellWidth="three-quarters"
138
122
  >
139
123
  <input
140
124
  className="govgr-!-width-three-quarters govgr-input"
@@ -143,10 +127,9 @@ exports[`renders the TextInput with characterWidth=2 and with width=three-quarte
143
127
  </ForwardRef(TextInput)>
144
128
  `;
145
129
 
146
- exports[`renders the TextInput with characterWidth=2 and with width=two-thirds 1`] = `
130
+ exports[`renders the TextInput with cellWidth=two-thirds 1`] = `
147
131
  <ForwardRef(TextInput)
148
- characterWidth="2"
149
- width="two-thirds"
132
+ cellWidth="two-thirds"
150
133
  >
151
134
  <input
152
135
  className="govgr-!-width-two-thirds govgr-input"
@@ -155,347 +138,364 @@ exports[`renders the TextInput with characterWidth=2 and with width=two-thirds 1
155
138
  </ForwardRef(TextInput)>
156
139
  `;
157
140
 
158
- exports[`renders the TextInput with characterWidth=3 1`] = `
141
+ exports[`renders the TextInput with characterWidth=2 1`] = `
159
142
  <ForwardRef(TextInput)
160
- characterWidth="3"
143
+ characterWidth={2}
161
144
  >
162
145
  <input
163
- className="govgr-input"
146
+ className="govgr-input--width-2 govgr-input"
164
147
  type="text"
165
148
  />
166
149
  </ForwardRef(TextInput)>
167
150
  `;
168
151
 
169
- exports[`renders the TextInput with characterWidth=3 and with width=full 1`] = `
152
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=full 1`] = `
170
153
  <ForwardRef(TextInput)
171
- characterWidth="3"
172
- width="full"
154
+ cellWidth="full"
155
+ characterWidth={2}
173
156
  >
174
157
  <input
175
- className="govgr-!-width-full govgr-input"
158
+ className="govgr-input--width-2 govgr-!-width-full govgr-input"
176
159
  type="text"
177
160
  />
178
161
  </ForwardRef(TextInput)>
179
162
  `;
180
163
 
181
- exports[`renders the TextInput with characterWidth=3 and with width=one-half 1`] = `
164
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=one-half 1`] = `
182
165
  <ForwardRef(TextInput)
183
- characterWidth="3"
184
- width="one-half"
166
+ cellWidth="one-half"
167
+ characterWidth={2}
185
168
  >
186
169
  <input
187
- className="govgr-!-width-one-half govgr-input"
170
+ className="govgr-!-width-one-half govgr-input--width-2 govgr-input"
188
171
  type="text"
189
172
  />
190
173
  </ForwardRef(TextInput)>
191
174
  `;
192
175
 
193
- exports[`renders the TextInput with characterWidth=3 and with width=one-quarter 1`] = `
176
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=one-quarter 1`] = `
194
177
  <ForwardRef(TextInput)
195
- characterWidth="3"
196
- width="one-quarter"
178
+ cellWidth="one-quarter"
179
+ characterWidth={2}
197
180
  >
198
181
  <input
199
- className="govgr-!-width-one-quarter govgr-input"
182
+ className="govgr-!-width-one-quarter govgr-input--width-2 govgr-input"
200
183
  type="text"
201
184
  />
202
185
  </ForwardRef(TextInput)>
203
186
  `;
204
187
 
205
- exports[`renders the TextInput with characterWidth=3 and with width=one-third 1`] = `
188
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=one-third 1`] = `
206
189
  <ForwardRef(TextInput)
207
- characterWidth="3"
208
- width="one-third"
190
+ cellWidth="one-third"
191
+ characterWidth={2}
209
192
  >
210
193
  <input
211
- className="govgr-!-width-one-third govgr-input"
194
+ className="govgr-!-width-one-third govgr-input--width-2 govgr-input"
212
195
  type="text"
213
196
  />
214
197
  </ForwardRef(TextInput)>
215
198
  `;
216
199
 
217
- exports[`renders the TextInput with characterWidth=3 and with width=three-quarters 1`] = `
200
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=three-quarters 1`] = `
218
201
  <ForwardRef(TextInput)
219
- characterWidth="3"
220
- width="three-quarters"
202
+ cellWidth="three-quarters"
203
+ characterWidth={2}
221
204
  >
222
205
  <input
223
- className="govgr-!-width-three-quarters govgr-input"
206
+ className="govgr-!-width-three-quarters govgr-input--width-2 govgr-input"
224
207
  type="text"
225
208
  />
226
209
  </ForwardRef(TextInput)>
227
210
  `;
228
211
 
229
- exports[`renders the TextInput with characterWidth=3 and with width=two-thirds 1`] = `
212
+ exports[`renders the TextInput with characterWidth=2 and with cellWidth=two-thirds 1`] = `
230
213
  <ForwardRef(TextInput)
231
- characterWidth="3"
232
- width="two-thirds"
214
+ cellWidth="two-thirds"
215
+ characterWidth={2}
233
216
  >
234
217
  <input
235
- className="govgr-!-width-two-thirds govgr-input"
218
+ className="govgr-!-width-two-thirds govgr-input--width-2 govgr-input"
236
219
  type="text"
237
220
  />
238
221
  </ForwardRef(TextInput)>
239
222
  `;
240
223
 
241
- exports[`renders the TextInput with characterWidth=4 1`] = `
224
+ exports[`renders the TextInput with characterWidth=3 1`] = `
242
225
  <ForwardRef(TextInput)
243
- characterWidth="4"
226
+ characterWidth={3}
244
227
  >
245
228
  <input
246
- className="govgr-input"
229
+ className="govgr-input--width-3 govgr-input"
247
230
  type="text"
248
231
  />
249
232
  </ForwardRef(TextInput)>
250
233
  `;
251
234
 
252
- exports[`renders the TextInput with characterWidth=4 and with width=full 1`] = `
235
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=full 1`] = `
253
236
  <ForwardRef(TextInput)
254
- characterWidth="4"
255
- width="full"
237
+ cellWidth="full"
238
+ characterWidth={3}
256
239
  >
257
240
  <input
258
- className="govgr-!-width-full govgr-input"
241
+ className="govgr-input--width-3 govgr-!-width-full govgr-input"
259
242
  type="text"
260
243
  />
261
244
  </ForwardRef(TextInput)>
262
245
  `;
263
246
 
264
- exports[`renders the TextInput with characterWidth=4 and with width=one-half 1`] = `
247
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=one-half 1`] = `
265
248
  <ForwardRef(TextInput)
266
- characterWidth="4"
267
- width="one-half"
249
+ cellWidth="one-half"
250
+ characterWidth={3}
268
251
  >
269
252
  <input
270
- className="govgr-!-width-one-half govgr-input"
253
+ className="govgr-!-width-one-half govgr-input--width-3 govgr-input"
271
254
  type="text"
272
255
  />
273
256
  </ForwardRef(TextInput)>
274
257
  `;
275
258
 
276
- exports[`renders the TextInput with characterWidth=4 and with width=one-quarter 1`] = `
259
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=one-quarter 1`] = `
277
260
  <ForwardRef(TextInput)
278
- characterWidth="4"
279
- width="one-quarter"
261
+ cellWidth="one-quarter"
262
+ characterWidth={3}
280
263
  >
281
264
  <input
282
- className="govgr-!-width-one-quarter govgr-input"
265
+ className="govgr-!-width-one-quarter govgr-input--width-3 govgr-input"
283
266
  type="text"
284
267
  />
285
268
  </ForwardRef(TextInput)>
286
269
  `;
287
270
 
288
- exports[`renders the TextInput with characterWidth=4 and with width=one-third 1`] = `
271
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=one-third 1`] = `
289
272
  <ForwardRef(TextInput)
290
- characterWidth="4"
291
- width="one-third"
273
+ cellWidth="one-third"
274
+ characterWidth={3}
292
275
  >
293
276
  <input
294
- className="govgr-!-width-one-third govgr-input"
277
+ className="govgr-!-width-one-third govgr-input--width-3 govgr-input"
295
278
  type="text"
296
279
  />
297
280
  </ForwardRef(TextInput)>
298
281
  `;
299
282
 
300
- exports[`renders the TextInput with characterWidth=4 and with width=three-quarters 1`] = `
283
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=three-quarters 1`] = `
301
284
  <ForwardRef(TextInput)
302
- characterWidth="4"
303
- width="three-quarters"
285
+ cellWidth="three-quarters"
286
+ characterWidth={3}
304
287
  >
305
288
  <input
306
- className="govgr-!-width-three-quarters govgr-input"
289
+ className="govgr-!-width-three-quarters govgr-input--width-3 govgr-input"
307
290
  type="text"
308
291
  />
309
292
  </ForwardRef(TextInput)>
310
293
  `;
311
294
 
312
- exports[`renders the TextInput with characterWidth=4 and with width=two-thirds 1`] = `
295
+ exports[`renders the TextInput with characterWidth=3 and with cellWidth=two-thirds 1`] = `
313
296
  <ForwardRef(TextInput)
314
- characterWidth="4"
315
- width="two-thirds"
297
+ cellWidth="two-thirds"
298
+ characterWidth={3}
316
299
  >
317
300
  <input
318
- className="govgr-!-width-two-thirds govgr-input"
301
+ className="govgr-!-width-two-thirds govgr-input--width-3 govgr-input"
319
302
  type="text"
320
303
  />
321
304
  </ForwardRef(TextInput)>
322
305
  `;
323
306
 
324
- exports[`renders the TextInput with characterWidth=5 1`] = `
307
+ exports[`renders the TextInput with characterWidth=4 1`] = `
325
308
  <ForwardRef(TextInput)
326
- characterWidth="5"
309
+ characterWidth={4}
327
310
  >
328
311
  <input
329
- className="govgr-input"
312
+ className="govgr-input--width-4 govgr-input"
330
313
  type="text"
331
314
  />
332
315
  </ForwardRef(TextInput)>
333
316
  `;
334
317
 
335
- exports[`renders the TextInput with characterWidth=10 1`] = `
318
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=full 1`] = `
336
319
  <ForwardRef(TextInput)
337
- characterWidth="10"
320
+ cellWidth="full"
321
+ characterWidth={4}
338
322
  >
339
323
  <input
340
- className="govgr-input"
324
+ className="govgr-input--width-4 govgr-!-width-full govgr-input"
341
325
  type="text"
342
326
  />
343
327
  </ForwardRef(TextInput)>
344
328
  `;
345
329
 
346
- exports[`renders the TextInput with characterWidth=20 1`] = `
330
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=one-half 1`] = `
347
331
  <ForwardRef(TextInput)
348
- characterWidth="20"
332
+ cellWidth="one-half"
333
+ characterWidth={4}
349
334
  >
350
335
  <input
351
- className="govgr-input"
336
+ className="govgr-!-width-one-half govgr-input--width-4 govgr-input"
352
337
  type="text"
353
338
  />
354
339
  </ForwardRef(TextInput)>
355
340
  `;
356
341
 
357
- exports[`renders the TextInput with characterWidth=20 and with width=full 1`] = `
342
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=one-quarter 1`] = `
358
343
  <ForwardRef(TextInput)
359
- characterWidth="20"
360
- width="full"
344
+ cellWidth="one-quarter"
345
+ characterWidth={4}
361
346
  >
362
347
  <input
363
- className="govgr-!-width-full govgr-input"
348
+ className="govgr-!-width-one-quarter govgr-input--width-4 govgr-input"
364
349
  type="text"
365
350
  />
366
351
  </ForwardRef(TextInput)>
367
352
  `;
368
353
 
369
- exports[`renders the TextInput with characterWidth=20 and with width=one-half 1`] = `
354
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=one-third 1`] = `
370
355
  <ForwardRef(TextInput)
371
- characterWidth="20"
372
- width="one-half"
356
+ cellWidth="one-third"
357
+ characterWidth={4}
373
358
  >
374
359
  <input
375
- className="govgr-!-width-one-half govgr-input"
360
+ className="govgr-!-width-one-third govgr-input--width-4 govgr-input"
376
361
  type="text"
377
362
  />
378
363
  </ForwardRef(TextInput)>
379
364
  `;
380
365
 
381
- exports[`renders the TextInput with characterWidth=20 and with width=one-quarter 1`] = `
366
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=three-quarters 1`] = `
382
367
  <ForwardRef(TextInput)
383
- characterWidth="20"
384
- width="one-quarter"
368
+ cellWidth="three-quarters"
369
+ characterWidth={4}
385
370
  >
386
371
  <input
387
- className="govgr-!-width-one-quarter govgr-input"
372
+ className="govgr-!-width-three-quarters govgr-input--width-4 govgr-input"
388
373
  type="text"
389
374
  />
390
375
  </ForwardRef(TextInput)>
391
376
  `;
392
377
 
393
- exports[`renders the TextInput with characterWidth=20 and with width=one-third 1`] = `
378
+ exports[`renders the TextInput with characterWidth=4 and with cellWidth=two-thirds 1`] = `
394
379
  <ForwardRef(TextInput)
395
- characterWidth="20"
396
- width="one-third"
380
+ cellWidth="two-thirds"
381
+ characterWidth={4}
397
382
  >
398
383
  <input
399
- className="govgr-!-width-one-third govgr-input"
384
+ className="govgr-!-width-two-thirds govgr-input--width-4 govgr-input"
400
385
  type="text"
401
386
  />
402
387
  </ForwardRef(TextInput)>
403
388
  `;
404
389
 
405
- exports[`renders the TextInput with characterWidth=20 and with width=three-quarters 1`] = `
390
+ exports[`renders the TextInput with characterWidth=5 1`] = `
406
391
  <ForwardRef(TextInput)
407
- characterWidth="20"
408
- width="three-quarters"
392
+ characterWidth={5}
409
393
  >
410
394
  <input
411
- className="govgr-!-width-three-quarters govgr-input"
395
+ className="govgr-input--width-5 govgr-input"
412
396
  type="text"
413
397
  />
414
398
  </ForwardRef(TextInput)>
415
399
  `;
416
400
 
417
- exports[`renders the TextInput with characterWidth=20 and with width=two-thirds 1`] = `
401
+ exports[`renders the TextInput with characterWidth=10 1`] = `
418
402
  <ForwardRef(TextInput)
419
- characterWidth="20"
420
- width="two-thirds"
403
+ characterWidth={10}
421
404
  >
422
405
  <input
423
- className="govgr-!-width-two-thirds govgr-input"
406
+ className="govgr-input--width-10 govgr-input"
424
407
  type="text"
425
408
  />
426
409
  </ForwardRef(TextInput)>
427
410
  `;
428
411
 
429
- exports[`renders the TextInput with no props 1`] = `
430
- <ForwardRef(TextInput)>
412
+ exports[`renders the TextInput with characterWidth=20 1`] = `
413
+ <ForwardRef(TextInput)
414
+ characterWidth={20}
415
+ >
431
416
  <input
432
- className="govgr-input"
417
+ className="govgr-input--width-20 govgr-input"
433
418
  type="text"
434
419
  />
435
420
  </ForwardRef(TextInput)>
436
421
  `;
437
422
 
438
- exports[`renders the TextInput with width=full 1`] = `
423
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=full 1`] = `
439
424
  <ForwardRef(TextInput)
440
- width="full"
425
+ cellWidth="full"
426
+ characterWidth={20}
441
427
  >
442
428
  <input
443
- className="govgr-!-width-full govgr-input"
429
+ className="govgr-input--width-20 govgr-!-width-full govgr-input"
444
430
  type="text"
445
431
  />
446
432
  </ForwardRef(TextInput)>
447
433
  `;
448
434
 
449
- exports[`renders the TextInput with width=one-half 1`] = `
435
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=one-half 1`] = `
450
436
  <ForwardRef(TextInput)
451
- width="one-half"
437
+ cellWidth="one-half"
438
+ characterWidth={20}
452
439
  >
453
440
  <input
454
- className="govgr-!-width-one-half govgr-input"
441
+ className="govgr-!-width-one-half govgr-input--width-20 govgr-input"
455
442
  type="text"
456
443
  />
457
444
  </ForwardRef(TextInput)>
458
445
  `;
459
446
 
460
- exports[`renders the TextInput with width=one-quarter 1`] = `
447
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=one-quarter 1`] = `
461
448
  <ForwardRef(TextInput)
462
- width="one-quarter"
449
+ cellWidth="one-quarter"
450
+ characterWidth={20}
463
451
  >
464
452
  <input
465
- className="govgr-!-width-one-quarter govgr-input"
453
+ className="govgr-!-width-one-quarter govgr-input--width-20 govgr-input"
466
454
  type="text"
467
455
  />
468
456
  </ForwardRef(TextInput)>
469
457
  `;
470
458
 
471
- exports[`renders the TextInput with width=one-third 1`] = `
459
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=one-third 1`] = `
472
460
  <ForwardRef(TextInput)
473
- width="one-third"
461
+ cellWidth="one-third"
462
+ characterWidth={20}
474
463
  >
475
464
  <input
476
- className="govgr-!-width-one-third govgr-input"
465
+ className="govgr-!-width-one-third govgr-input--width-20 govgr-input"
477
466
  type="text"
478
467
  />
479
468
  </ForwardRef(TextInput)>
480
469
  `;
481
470
 
482
- exports[`renders the TextInput with width=three-quarters 1`] = `
471
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=three-quarters 1`] = `
483
472
  <ForwardRef(TextInput)
484
- width="three-quarters"
473
+ cellWidth="three-quarters"
474
+ characterWidth={20}
485
475
  >
486
476
  <input
487
- className="govgr-!-width-three-quarters govgr-input"
477
+ className="govgr-!-width-three-quarters govgr-input--width-20 govgr-input"
488
478
  type="text"
489
479
  />
490
480
  </ForwardRef(TextInput)>
491
481
  `;
492
482
 
493
- exports[`renders the TextInput with width=two-thirds 1`] = `
483
+ exports[`renders the TextInput with characterWidth=20 and with cellWidth=two-thirds 1`] = `
494
484
  <ForwardRef(TextInput)
495
- width="two-thirds"
485
+ cellWidth="two-thirds"
486
+ characterWidth={20}
496
487
  >
497
488
  <input
498
- className="govgr-!-width-two-thirds govgr-input"
489
+ className="govgr-!-width-two-thirds govgr-input--width-20 govgr-input"
490
+ type="text"
491
+ />
492
+ </ForwardRef(TextInput)>
493
+ `;
494
+
495
+ exports[`renders the TextInput with no props 1`] = `
496
+ <ForwardRef(TextInput)>
497
+ <input
498
+ className="govgr-input"
499
499
  type="text"
500
500
  />
501
501
  </ForwardRef(TextInput)>