@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
@@ -31,210 +31,226 @@ it('renders the TextInput with characterWidth=20', () => {
31
31
  expect(mount(<TextInput characterWidth={20}></TextInput>)).toMatchSnapshot();
32
32
  });
33
33
 
34
- it('renders the TextInput with width=one-quarter', () => {
34
+ it('renders the TextInput with cellWidth=one-quarter', () => {
35
35
  expect(
36
- mount(<TextInput width={'one-quarter'}></TextInput>)
36
+ mount(<TextInput cellWidth={'one-quarter'}></TextInput>)
37
37
  ).toMatchSnapshot();
38
38
  });
39
39
 
40
- it('renders the TextInput with width=one-third', () => {
41
- expect(mount(<TextInput width={'one-third'}></TextInput>)).toMatchSnapshot();
40
+ it('renders the TextInput with cellWidth=one-third', () => {
41
+ expect(
42
+ mount(<TextInput cellWidth={'one-third'}></TextInput>)
43
+ ).toMatchSnapshot();
42
44
  });
43
45
 
44
- it('renders the TextInput with width=one-half', () => {
45
- expect(mount(<TextInput width={'one-half'}></TextInput>)).toMatchSnapshot();
46
+ it('renders the TextInput with cellWidth=one-half', () => {
47
+ expect(
48
+ mount(<TextInput cellWidth={'one-half'}></TextInput>)
49
+ ).toMatchSnapshot();
46
50
  });
47
51
 
48
- it('renders the TextInput with width=two-thirds', () => {
49
- expect(mount(<TextInput width={'two-thirds'}></TextInput>)).toMatchSnapshot();
52
+ it('renders the TextInput with cellWidth=two-thirds', () => {
53
+ expect(
54
+ mount(<TextInput cellWidth={'two-thirds'}></TextInput>)
55
+ ).toMatchSnapshot();
50
56
  });
51
57
 
52
- it('renders the TextInput with width=three-quarters', () => {
58
+ it('renders the TextInput with cellWidth=three-quarters', () => {
53
59
  expect(
54
- mount(<TextInput width={'three-quarters'}></TextInput>)
60
+ mount(<TextInput cellWidth={'three-quarters'}></TextInput>)
55
61
  ).toMatchSnapshot();
56
62
  });
57
63
 
58
- it('renders the TextInput with width=full', () => {
59
- expect(mount(<TextInput width={'full'}></TextInput>)).toMatchSnapshot();
64
+ it('renders the TextInput with cellWidth=full', () => {
65
+ expect(mount(<TextInput cellWidth={'full'}></TextInput>)).toMatchSnapshot();
60
66
  });
61
67
 
62
- it('renders the TextInput with characterWidth=2 and with width=one-quarter', () => {
68
+ it('renders the TextInput with characterWidth=2 and with cellWidth=one-quarter', () => {
63
69
  expect(
64
- mount(<TextInput characterWidth={2} width={'one-quarter'}></TextInput>)
70
+ mount(<TextInput characterWidth={2} cellWidth={'one-quarter'}></TextInput>)
65
71
  ).toMatchSnapshot();
66
72
  });
67
73
 
68
- it('renders the TextInput with characterWidth=3 and with width=one-quarter', () => {
74
+ it('renders the TextInput with characterWidth=3 and with cellWidth=one-quarter', () => {
69
75
  expect(
70
- mount(<TextInput characterWidth={3} width={'one-quarter'}></TextInput>)
76
+ mount(<TextInput characterWidth={3} cellWidth={'one-quarter'}></TextInput>)
71
77
  ).toMatchSnapshot();
72
78
  });
73
79
 
74
- it('renders the TextInput with characterWidth=4 and with width=one-quarter', () => {
80
+ it('renders the TextInput with characterWidth=4 and with cellWidth=one-quarter', () => {
75
81
  expect(
76
- mount(<TextInput characterWidth={4} width={'one-quarter'}></TextInput>)
82
+ mount(<TextInput characterWidth={4} cellWidth={'one-quarter'}></TextInput>)
77
83
  ).toMatchSnapshot();
78
84
  });
79
85
 
80
- it('renders the TextInput with with characterWidth=5 with width=one-quarter', () => {
86
+ it('renders the TextInput with with characterWidth=5 with cellWidth=one-quarter', () => {
81
87
  expect(
82
- mount(<TextInput characterWidth={5} width={'one-quarter'}></TextInput>)
88
+ mount(<TextInput characterWidth={5} cellWidth={'one-quarter'}></TextInput>)
83
89
  ).toMatchSnapshot();
84
90
  });
85
91
 
86
- it('renders the TextInput with characterWidth=20 and with width=one-quarter', () => {
92
+ it('renders the TextInput with characterWidth=20 and with cellWidth=one-quarter', () => {
87
93
  expect(
88
- mount(<TextInput characterWidth={20} width={'one-quarter'}></TextInput>)
94
+ mount(<TextInput characterWidth={20} cellWidth={'one-quarter'}></TextInput>)
89
95
  ).toMatchSnapshot();
90
96
  });
91
97
 
92
- it('renders the TextInput with characterWidth=2 and with width=one-third', () => {
98
+ it('renders the TextInput with characterWidth=2 and with cellWidth=one-third', () => {
93
99
  expect(
94
- mount(<TextInput characterWidth={2} width={'one-third'}></TextInput>)
100
+ mount(<TextInput characterWidth={2} cellWidth={'one-third'}></TextInput>)
95
101
  ).toMatchSnapshot();
96
102
  });
97
103
 
98
- it('renders the TextInput with characterWidth=3 and with width=one-third', () => {
104
+ it('renders the TextInput with characterWidth=3 and with cellWidth=one-third', () => {
99
105
  expect(
100
- mount(<TextInput characterWidth={3} width={'one-third'}></TextInput>)
106
+ mount(<TextInput characterWidth={3} cellWidth={'one-third'}></TextInput>)
101
107
  ).toMatchSnapshot();
102
108
  });
103
109
 
104
- it('renders the TextInput with characterWidth=4 and with width=one-third', () => {
110
+ it('renders the TextInput with characterWidth=4 and with cellWidth=one-third', () => {
105
111
  expect(
106
- mount(<TextInput characterWidth={4} width={'one-third'}></TextInput>)
112
+ mount(<TextInput characterWidth={4} cellWidth={'one-third'}></TextInput>)
107
113
  ).toMatchSnapshot();
108
114
  });
109
115
 
110
- it('renders the TextInput with with characterWidth=5 with width=one-third', () => {
116
+ it('renders the TextInput with with characterWidth=5 with cellWidth=one-third', () => {
111
117
  expect(
112
- mount(<TextInput characterWidth={5} width={'one-third'}></TextInput>)
118
+ mount(<TextInput characterWidth={5} cellWidth={'one-third'}></TextInput>)
113
119
  ).toMatchSnapshot();
114
120
  });
115
121
 
116
- it('renders the TextInput with characterWidth=20 and with width=one-third', () => {
122
+ it('renders the TextInput with characterWidth=20 and with cellWidth=one-third', () => {
117
123
  expect(
118
- mount(<TextInput characterWidth={20} width={'one-third'}></TextInput>)
124
+ mount(<TextInput characterWidth={20} cellWidth={'one-third'}></TextInput>)
119
125
  ).toMatchSnapshot();
120
126
  });
121
127
 
122
- it('renders the TextInput with characterWidth=2 and with width=one-half', () => {
128
+ it('renders the TextInput with characterWidth=2 and with cellWidth=one-half', () => {
123
129
  expect(
124
- mount(<TextInput characterWidth={2} width={'one-half'}></TextInput>)
130
+ mount(<TextInput characterWidth={2} cellWidth={'one-half'}></TextInput>)
125
131
  ).toMatchSnapshot();
126
132
  });
127
133
 
128
- it('renders the TextInput with characterWidth=3 and with width=one-half', () => {
134
+ it('renders the TextInput with characterWidth=3 and with cellWidth=one-half', () => {
129
135
  expect(
130
- mount(<TextInput characterWidth={3} width={'one-half'}></TextInput>)
136
+ mount(<TextInput characterWidth={3} cellWidth={'one-half'}></TextInput>)
131
137
  ).toMatchSnapshot();
132
138
  });
133
139
 
134
- it('renders the TextInput with characterWidth=4 and with width=one-half', () => {
140
+ it('renders the TextInput with characterWidth=4 and with cellWidth=one-half', () => {
135
141
  expect(
136
- mount(<TextInput characterWidth={4} width={'one-half'}></TextInput>)
142
+ mount(<TextInput characterWidth={4} cellWidth={'one-half'}></TextInput>)
137
143
  ).toMatchSnapshot();
138
144
  });
139
145
 
140
- it('renders the TextInput with with characterWidth=5 with width=one-half', () => {
146
+ it('renders the TextInput with with characterWidth=5 with cellWidth=one-half', () => {
141
147
  expect(
142
- mount(<TextInput characterWidth={5} width={'one-half'}></TextInput>)
148
+ mount(<TextInput characterWidth={5} cellWidth={'one-half'}></TextInput>)
143
149
  ).toMatchSnapshot();
144
150
  });
145
151
 
146
- it('renders the TextInput with characterWidth=20 and with width=one-half', () => {
152
+ it('renders the TextInput with characterWidth=20 and with cellWidth=one-half', () => {
147
153
  expect(
148
- mount(<TextInput characterWidth={20} width={'one-half'}></TextInput>)
154
+ mount(<TextInput characterWidth={20} cellWidth={'one-half'}></TextInput>)
149
155
  ).toMatchSnapshot();
150
156
  });
151
157
 
152
- it('renders the TextInput with characterWidth=2 and with width=two-thirds', () => {
158
+ it('renders the TextInput with characterWidth=2 and with cellWidth=two-thirds', () => {
153
159
  expect(
154
- mount(<TextInput characterWidth={2} width={'two-thirds'}></TextInput>)
160
+ mount(<TextInput characterWidth={2} cellWidth={'two-thirds'}></TextInput>)
155
161
  ).toMatchSnapshot();
156
162
  });
157
163
 
158
- it('renders the TextInput with characterWidth=3 and with width=two-thirds', () => {
164
+ it('renders the TextInput with characterWidth=3 and with cellWidth=two-thirds', () => {
159
165
  expect(
160
- mount(<TextInput characterWidth={3} width={'two-thirds'}></TextInput>)
166
+ mount(<TextInput characterWidth={3} cellWidth={'two-thirds'}></TextInput>)
161
167
  ).toMatchSnapshot();
162
168
  });
163
169
 
164
- it('renders the TextInput with characterWidth=4 and with width=two-thirds', () => {
170
+ it('renders the TextInput with characterWidth=4 and with cellWidth=two-thirds', () => {
165
171
  expect(
166
- mount(<TextInput characterWidth={4} width={'two-thirds'}></TextInput>)
172
+ mount(<TextInput characterWidth={4} cellWidth={'two-thirds'}></TextInput>)
167
173
  ).toMatchSnapshot();
168
174
  });
169
175
 
170
- it('renders the TextInput with with characterWidth=5 with width=two-thirds', () => {
176
+ it('renders the TextInput with with characterWidth=5 with cellWidth=two-thirds', () => {
171
177
  expect(
172
- mount(<TextInput characterWidth={5} width={'two-thirds'}></TextInput>)
178
+ mount(<TextInput characterWidth={5} cellWidth={'two-thirds'}></TextInput>)
173
179
  ).toMatchSnapshot();
174
180
  });
175
181
 
176
- it('renders the TextInput with characterWidth=20 and with width=two-thirds', () => {
182
+ it('renders the TextInput with characterWidth=20 and with cellWidth=two-thirds', () => {
177
183
  expect(
178
- mount(<TextInput characterWidth={20} width={'two-thirds'}></TextInput>)
184
+ mount(<TextInput characterWidth={20} cellWidth={'two-thirds'}></TextInput>)
179
185
  ).toMatchSnapshot();
180
186
  });
181
187
 
182
- it('renders the TextInput with characterWidth=2 and with width=three-quarters', () => {
188
+ it('renders the TextInput with characterWidth=2 and with cellWidth=three-quarters', () => {
183
189
  expect(
184
- mount(<TextInput characterWidth={2} width={'three-quarters'}></TextInput>)
190
+ mount(
191
+ <TextInput characterWidth={2} cellWidth={'three-quarters'}></TextInput>
192
+ )
185
193
  ).toMatchSnapshot();
186
194
  });
187
195
 
188
- it('renders the TextInput with characterWidth=3 and with width=three-quarters', () => {
196
+ it('renders the TextInput with characterWidth=3 and with cellWidth=three-quarters', () => {
189
197
  expect(
190
- mount(<TextInput characterWidth={3} width={'three-quarters'}></TextInput>)
198
+ mount(
199
+ <TextInput characterWidth={3} cellWidth={'three-quarters'}></TextInput>
200
+ )
191
201
  ).toMatchSnapshot();
192
202
  });
193
203
 
194
- it('renders the TextInput with characterWidth=4 and with width=three-quarters', () => {
204
+ it('renders the TextInput with characterWidth=4 and with cellWidth=three-quarters', () => {
195
205
  expect(
196
- mount(<TextInput characterWidth={4} width={'three-quarters'}></TextInput>)
206
+ mount(
207
+ <TextInput characterWidth={4} cellWidth={'three-quarters'}></TextInput>
208
+ )
197
209
  ).toMatchSnapshot();
198
210
  });
199
211
 
200
- it('renders the TextInput with with characterWidth=5 with width=three-quarters', () => {
212
+ it('renders the TextInput with with characterWidth=5 with cellWidth=three-quarters', () => {
201
213
  expect(
202
- mount(<TextInput characterWidth={5} width={'three-quarters'}></TextInput>)
214
+ mount(
215
+ <TextInput characterWidth={5} cellWidth={'three-quarters'}></TextInput>
216
+ )
203
217
  ).toMatchSnapshot();
204
218
  });
205
219
 
206
- it('renders the TextInput with characterWidth=20 and with width=three-quarters', () => {
220
+ it('renders the TextInput with characterWidth=20 and with cellWidth=three-quarters', () => {
207
221
  expect(
208
- mount(<TextInput characterWidth={20} width={'three-quarters'}></TextInput>)
222
+ mount(
223
+ <TextInput characterWidth={20} cellWidth={'three-quarters'}></TextInput>
224
+ )
209
225
  ).toMatchSnapshot();
210
226
  });
211
227
 
212
- it('renders the TextInput with characterWidth=2 and with width=full', () => {
228
+ it('renders the TextInput with characterWidth=2 and with cellWidth=full', () => {
213
229
  expect(
214
- mount(<TextInput characterWidth={2} width={'full'}></TextInput>)
230
+ mount(<TextInput characterWidth={2} cellWidth={'full'}></TextInput>)
215
231
  ).toMatchSnapshot();
216
232
  });
217
233
 
218
- it('renders the TextInput with characterWidth=3 and with width=full', () => {
234
+ it('renders the TextInput with characterWidth=3 and with cellWidth=full', () => {
219
235
  expect(
220
- mount(<TextInput characterWidth={3} width={'full'}></TextInput>)
236
+ mount(<TextInput characterWidth={3} cellWidth={'full'}></TextInput>)
221
237
  ).toMatchSnapshot();
222
238
  });
223
239
 
224
- it('renders the TextInput with characterWidth=4 and with width=full', () => {
240
+ it('renders the TextInput with characterWidth=4 and with cellWidth=full', () => {
225
241
  expect(
226
- mount(<TextInput characterWidth={4} width={'full'}></TextInput>)
242
+ mount(<TextInput characterWidth={4} cellWidth={'full'}></TextInput>)
227
243
  ).toMatchSnapshot();
228
244
  });
229
245
 
230
- it('renders the TextInput with with characterWidth=5 with width=full', () => {
246
+ it('renders the TextInput with with characterWidth=5 with cellWidth=full', () => {
231
247
  expect(
232
- mount(<TextInput characterWidth={5} width={'full'}></TextInput>)
248
+ mount(<TextInput characterWidth={5} cellWidth={'full'}></TextInput>)
233
249
  ).toMatchSnapshot();
234
250
  });
235
251
 
236
- it('renders the TextInput with characterWidth=20 and with width=full', () => {
252
+ it('renders the TextInput with characterWidth=20 and with cellWidth=full', () => {
237
253
  expect(
238
- mount(<TextInput characterWidth={20} width={'full'}></TextInput>)
254
+ mount(<TextInput characterWidth={20} cellWidth={'full'}></TextInput>)
239
255
  ).toMatchSnapshot();
240
256
  });
@@ -14,9 +14,10 @@ export interface TextInputProps extends InputElementAttributes {
14
14
  characterWidth?: 2 | 3 | 4 | 5 | 10 | 20;
15
15
 
16
16
  /**
17
- * width is optional.
17
+ * cellWidth is optional.
18
+ * Use cellWidth prop to define a custom width for a specific reference number in your components.
18
19
  */
19
- width?:
20
+ cellWidth?:
20
21
  | 'one-quarter'
21
22
  | 'one-third'
22
23
  | 'one-half'
@@ -40,7 +41,7 @@ export const TextInput = React.forwardRef<HTMLInputElement, TextInputProps>(
40
41
  type = 'text',
41
42
  name,
42
43
  characterWidth,
43
- width,
44
+ cellWidth,
44
45
  error,
45
46
  className,
46
47
  children,
@@ -61,12 +62,12 @@ export const TextInput = React.forwardRef<HTMLInputElement, TextInputProps>(
61
62
  'govgr-input--width-5': characterWidth === 5,
62
63
  'govgr-input--width-10': characterWidth === 10,
63
64
  'govgr-input--width-20': characterWidth === 20,
64
- 'govgr-!-width-one-quarter': width === 'one-quarter',
65
- 'govgr-!-width-one-third': width === 'one-third',
66
- 'govgr-!-width-one-half': width === 'one-half',
67
- 'govgr-!-width-two-thirds': width === 'two-thirds',
68
- 'govgr-!-width-three-quarters': width === 'three-quarters',
69
- 'govgr-!-width-full': width === 'full',
65
+ 'govgr-!-width-one-quarter': cellWidth === 'one-quarter',
66
+ 'govgr-!-width-one-third': cellWidth === 'one-third',
67
+ 'govgr-!-width-one-half': cellWidth === 'one-half',
68
+ 'govgr-!-width-two-thirds': cellWidth === 'two-thirds',
69
+ 'govgr-!-width-three-quarters': cellWidth === 'three-quarters',
70
+ 'govgr-!-width-full': cellWidth === 'full',
70
71
  'govgr-error-input': error === true,
71
72
  })}
72
73
  {...props}
package/src/index.ts CHANGED
@@ -102,6 +102,13 @@ export { default as SummaryListItem } from '@digigov/react-core/SummaryListItem'
102
102
  export { default as SummaryListItemAction } from '@digigov/react-core/SummaryListItemAction';
103
103
  export { default as SummaryListItemKey } from '@digigov/react-core/SummaryListItemKey';
104
104
  export { default as SummaryListItemValue } from '@digigov/react-core/SummaryListItemValue';
105
+ export { default as Table } from '@digigov/react-core/Table';
106
+ export { default as TableRow } from '@digigov/react-core/TableRow';
107
+ export { default as TableCaption } from '@digigov/react-core/TableCaption';
108
+ export { default as TableHead } from '@digigov/react-core/TableHead';
109
+ export { default as TableBody } from '@digigov/react-core/TableBody';
110
+ export { default as TableDataCell } from '@digigov/react-core/TableDataCell';
111
+ export { default as TableHeaderCell } from '@digigov/react-core/TableHeaderCell';
105
112
  export { default as TabsList } from '@digigov/react-core/TabsList';
106
113
  export { default as TabsListItem } from '@digigov/react-core/TabsListItem';
107
114
  export { default as TabsPanel } from '@digigov/react-core/TabsPanel';