@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.
- package/CHANGELOG.json +34 -0
- package/CHANGELOG.md +15 -1
- package/dist/AccordionControls/index.d.ts +9 -0
- package/dist/AccordionControls/index.js +35 -0
- package/dist/AccordionControls/index.test.d.ts +1 -0
- package/dist/AccordionControls/index.test.js +15 -0
- package/dist/AccordionSection/index.js +5 -5
- package/dist/AccordionSectionHeader/index.js +1 -1
- package/dist/BackLink/index.js +3 -0
- package/dist/ButtonLink/index.d.ts +17 -0
- package/dist/ButtonLink/index.js +37 -0
- package/dist/ButtonLink/index.test.d.ts +1 -0
- package/dist/ButtonLink/index.test.js +80 -0
- package/dist/CHANGELOG.md +15 -1
- package/dist/CallToAction/index.d.ts +4 -7
- package/dist/CallToAction/index.js +6 -7
- package/dist/CheckboxItem/__snapshots__/index.test.tsx.snap +42 -0
- package/dist/Container/index.js +0 -1
- package/dist/GovGRLogo/index.d.ts +1 -5
- package/dist/Grid/__snapshots__/index.test.tsx.snap +105 -0
- package/dist/Grid/index.d.ts +20 -0
- package/dist/Grid/index.js +46 -0
- package/dist/Grid/index.test.d.ts +1 -0
- package/dist/Grid/index.test.js +71 -0
- package/dist/HeaderLogo/__snapshots__/index.test.tsx.snap +1 -1
- package/dist/HeaderLogo/index.d.ts +10 -2
- package/dist/HeaderLogo/index.js +8 -6
- package/dist/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +2 -2
- package/dist/HeaderSecondaryLogo/index.js +1 -1
- package/dist/Heading/index.d.ts +2 -1
- package/dist/Heading/index.js +22 -3
- package/dist/HellenicRepublicLogo/index.d.ts +5 -0
- package/dist/HellenicRepublicLogo/index.js +8 -4
- package/dist/HellenicRepublicLogo/logo-el.d.ts +2 -0
- package/dist/HellenicRepublicLogo/logo-el.js +8 -0
- package/dist/HellenicRepublicLogo/logo-en.d.ts +2 -0
- package/dist/HellenicRepublicLogo/logo-en.js +8 -0
- package/dist/Layout/index.d.ts +2 -1
- package/dist/Layout/index.js +4 -2
- package/dist/NavHorizontal/__snapshots__/index.test.tsx.snap +24 -0
- package/dist/PhaseBanner/__snapshots__/index.test.tsx.snap +16 -0
- package/dist/PhaseBanner/index.d.ts +6 -1
- package/dist/PhaseBanner/index.js +4 -2
- package/dist/PhaseBanner/index.test.js +8 -0
- package/dist/Table/__snapshots__/index.test.tsx.snap +59 -0
- package/dist/Table/index.d.ts +34 -0
- package/dist/Table/index.js +42 -0
- package/dist/Table/index.test.d.ts +1 -0
- package/dist/Table/index.test.js +47 -0
- package/dist/TableBody/__snapshots__/index.test.tsx.snap +11 -0
- package/dist/TableBody/index.d.ts +9 -0
- package/dist/TableBody/index.js +35 -0
- package/dist/TableBody/index.test.d.ts +1 -0
- package/dist/TableBody/index.test.js +15 -0
- package/dist/TableCaption/__snapshots__/index.test.tsx.snap +59 -0
- package/dist/TableCaption/index.d.ts +15 -0
- package/dist/TableCaption/index.js +37 -0
- package/dist/TableCaption/index.test.d.ts +1 -0
- package/dist/TableCaption/index.test.js +47 -0
- package/dist/TableDataCell/__snapshots__/index.test.tsx.snap +23 -0
- package/dist/TableDataCell/index.d.ts +15 -0
- package/dist/TableDataCell/index.js +37 -0
- package/dist/TableDataCell/index.test.d.ts +1 -0
- package/dist/TableDataCell/index.test.js +23 -0
- package/dist/TableHead/__snapshots__/index.test.tsx.snap +11 -0
- package/dist/TableHead/index.d.ts +9 -0
- package/dist/TableHead/index.js +35 -0
- package/dist/TableHead/index.test.d.ts +1 -0
- package/dist/TableHead/index.test.js +15 -0
- package/dist/TableHeaderCell/__snapshots__/index.test.tsx.snap +182 -0
- package/dist/TableHeaderCell/index.d.ts +21 -0
- package/dist/TableHeaderCell/index.js +38 -0
- package/dist/TableHeaderCell/index.test.d.ts +1 -0
- package/dist/TableHeaderCell/index.test.js +125 -0
- package/dist/TableRow/__snapshots__/index.test.tsx.snap +11 -0
- package/dist/TableRow/index.d.ts +9 -0
- package/dist/TableRow/index.js +35 -0
- package/dist/TableRow/index.test.d.ts +1 -0
- package/dist/TableRow/index.test.js +15 -0
- package/dist/TabsListItem/index.d.ts +3 -3
- package/dist/TabsListItem/index.js +8 -7
- package/dist/TabsPanel/index.js +2 -0
- package/dist/TextInput/__snapshots__/index.test.tsx.snap +161 -161
- package/dist/TextInput/index.d.ts +4 -3
- package/dist/TextInput/index.js +3 -3
- package/dist/TextInput/index.test.js +72 -72
- package/dist/es/AccordionControls/index.js +20 -0
- package/dist/es/AccordionControls/index.test.js +9 -0
- package/dist/es/AccordionSection/index.js +5 -5
- package/dist/es/AccordionSectionHeader/index.js +1 -1
- package/dist/es/BackLink/index.js +3 -0
- package/dist/es/ButtonLink/index.js +22 -0
- package/dist/es/ButtonLink/index.test.js +74 -0
- package/dist/es/CallToAction/index.js +5 -7
- package/dist/es/CheckboxItem/__snapshots__/index.test.tsx.snap +42 -0
- package/dist/es/Container/index.js +0 -1
- package/dist/es/Grid/__snapshots__/index.test.tsx.snap +105 -0
- package/dist/es/Grid/index.js +31 -0
- package/dist/es/Grid/index.test.js +65 -0
- package/dist/es/HeaderLogo/__snapshots__/index.test.tsx.snap +1 -1
- package/dist/es/HeaderLogo/index.js +8 -6
- package/dist/es/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +2 -2
- package/dist/es/HeaderSecondaryLogo/index.js +1 -1
- package/dist/es/Heading/index.js +22 -3
- package/dist/es/HellenicRepublicLogo/index.js +6 -4
- package/dist/es/HellenicRepublicLogo/logo-el.js +1 -0
- package/dist/es/HellenicRepublicLogo/logo-en.js +1 -0
- package/dist/es/Layout/index.js +4 -2
- package/dist/es/NavHorizontal/__snapshots__/index.test.tsx.snap +24 -0
- package/dist/es/PhaseBanner/__snapshots__/index.test.tsx.snap +16 -0
- package/dist/es/PhaseBanner/index.js +4 -2
- package/dist/es/PhaseBanner/index.test.js +8 -0
- package/dist/es/Table/__snapshots__/index.test.tsx.snap +59 -0
- package/dist/es/Table/index.js +27 -0
- package/dist/es/Table/index.test.js +41 -0
- package/dist/es/TableBody/__snapshots__/index.test.tsx.snap +11 -0
- package/dist/es/TableBody/index.js +20 -0
- package/dist/es/TableBody/index.test.js +9 -0
- package/dist/es/TableCaption/__snapshots__/index.test.tsx.snap +59 -0
- package/dist/es/TableCaption/index.js +22 -0
- package/dist/es/TableCaption/index.test.js +41 -0
- package/dist/es/TableDataCell/__snapshots__/index.test.tsx.snap +23 -0
- package/dist/es/TableDataCell/index.js +22 -0
- package/dist/es/TableDataCell/index.test.js +17 -0
- package/dist/es/TableHead/__snapshots__/index.test.tsx.snap +11 -0
- package/dist/es/TableHead/index.js +20 -0
- package/dist/es/TableHead/index.test.js +9 -0
- package/dist/es/TableHeaderCell/__snapshots__/index.test.tsx.snap +182 -0
- package/dist/es/TableHeaderCell/index.js +23 -0
- package/dist/es/TableHeaderCell/index.test.js +119 -0
- package/dist/es/TableRow/__snapshots__/index.test.tsx.snap +11 -0
- package/dist/es/TableRow/index.js +20 -0
- package/dist/es/TableRow/index.test.js +9 -0
- package/dist/es/TabsListItem/index.js +8 -7
- package/dist/es/TabsPanel/index.js +2 -0
- package/dist/es/TextInput/__snapshots__/index.test.tsx.snap +161 -161
- package/dist/es/TextInput/index.js +3 -3
- package/dist/es/TextInput/index.test.js +72 -72
- package/dist/es/index.js +7 -0
- package/dist/esm/AccordionControls/index.js +20 -0
- package/dist/esm/AccordionControls/index.test.js +9 -0
- package/dist/esm/AccordionSection/index.js +5 -5
- package/dist/esm/AccordionSectionHeader/index.js +1 -1
- package/dist/esm/BackLink/index.js +3 -0
- package/dist/esm/ButtonLink/index.js +22 -0
- package/dist/esm/ButtonLink/index.test.js +74 -0
- package/dist/esm/CallToAction/index.js +5 -7
- package/dist/esm/CheckboxItem/__snapshots__/index.test.tsx.snap +42 -0
- package/dist/esm/Container/index.js +0 -1
- package/dist/esm/Grid/__snapshots__/index.test.tsx.snap +105 -0
- package/dist/esm/Grid/index.js +31 -0
- package/dist/esm/Grid/index.test.js +65 -0
- package/dist/esm/HeaderLogo/__snapshots__/index.test.tsx.snap +1 -1
- package/dist/esm/HeaderLogo/index.js +8 -6
- package/dist/esm/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +2 -2
- package/dist/esm/HeaderSecondaryLogo/index.js +1 -1
- package/dist/esm/Heading/index.js +22 -3
- package/dist/esm/HellenicRepublicLogo/index.js +6 -4
- package/dist/esm/HellenicRepublicLogo/logo-el.js +1 -0
- package/dist/esm/HellenicRepublicLogo/logo-en.js +1 -0
- package/dist/esm/Layout/index.js +4 -2
- package/dist/esm/NavHorizontal/__snapshots__/index.test.tsx.snap +24 -0
- package/dist/esm/PhaseBanner/__snapshots__/index.test.tsx.snap +16 -0
- package/dist/esm/PhaseBanner/index.js +4 -2
- package/dist/esm/PhaseBanner/index.test.js +8 -0
- package/dist/esm/Table/__snapshots__/index.test.tsx.snap +59 -0
- package/dist/esm/Table/index.js +27 -0
- package/dist/esm/Table/index.test.js +41 -0
- package/dist/esm/TableBody/__snapshots__/index.test.tsx.snap +11 -0
- package/dist/esm/TableBody/index.js +20 -0
- package/dist/esm/TableBody/index.test.js +9 -0
- package/dist/esm/TableCaption/__snapshots__/index.test.tsx.snap +59 -0
- package/dist/esm/TableCaption/index.js +22 -0
- package/dist/esm/TableCaption/index.test.js +41 -0
- package/dist/esm/TableDataCell/__snapshots__/index.test.tsx.snap +23 -0
- package/dist/esm/TableDataCell/index.js +22 -0
- package/dist/esm/TableDataCell/index.test.js +17 -0
- package/dist/esm/TableHead/__snapshots__/index.test.tsx.snap +11 -0
- package/dist/esm/TableHead/index.js +20 -0
- package/dist/esm/TableHead/index.test.js +9 -0
- package/dist/esm/TableHeaderCell/__snapshots__/index.test.tsx.snap +182 -0
- package/dist/esm/TableHeaderCell/index.js +23 -0
- package/dist/esm/TableHeaderCell/index.test.js +119 -0
- package/dist/esm/TableRow/__snapshots__/index.test.tsx.snap +11 -0
- package/dist/esm/TableRow/index.js +20 -0
- package/dist/esm/TableRow/index.test.js +9 -0
- package/dist/esm/TabsListItem/index.js +8 -7
- package/dist/esm/TabsPanel/index.js +2 -0
- package/dist/esm/TextInput/__snapshots__/index.test.tsx.snap +161 -161
- package/dist/esm/TextInput/index.js +3 -3
- package/dist/esm/TextInput/index.test.js +72 -72
- package/dist/esm/index.js +8 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.js +56 -0
- package/dist/package.json +2 -2
- package/package.json +3 -3
- package/react-core.build.log +15 -13
- package/src/AccordionControls/index.test.tsx +14 -0
- package/src/AccordionControls/index.tsx +24 -0
- package/src/AccordionSection/index.tsx +4 -5
- package/src/AccordionSectionHeader/index.tsx +2 -2
- package/src/BackLink/index.tsx +3 -0
- package/src/ButtonLink/index.test.tsx +56 -0
- package/src/ButtonLink/index.tsx +40 -0
- package/src/CallToAction/index.tsx +7 -13
- package/src/CheckboxItem/__snapshots__/index.test.tsx.snap +42 -0
- package/src/Container/index.tsx +0 -1
- package/src/GovGRLogo/index.tsx +1 -6
- package/src/Grid/__snapshots__/index.test.tsx.snap +105 -0
- package/src/Grid/index.test.tsx +29 -0
- package/src/Grid/index.tsx +121 -0
- package/src/HeaderLogo/__snapshots__/index.test.tsx.snap +1 -1
- package/src/HeaderLogo/index.tsx +15 -6
- package/src/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +2 -2
- package/src/HeaderSecondaryLogo/index.tsx +1 -1
- package/src/Heading/index.tsx +22 -3
- package/src/HellenicRepublicLogo/index.tsx +10 -10
- package/src/HellenicRepublicLogo/logo-el.ts +1 -0
- package/src/HellenicRepublicLogo/logo-en.ts +1 -0
- package/src/Layout/index.tsx +5 -2
- package/src/NavHorizontal/__snapshots__/index.test.tsx.snap +24 -0
- package/src/PhaseBanner/__snapshots__/index.test.tsx.snap +16 -0
- package/src/PhaseBanner/index.test.tsx +4 -0
- package/src/PhaseBanner/index.tsx +9 -2
- package/src/Table/__snapshots__/index.test.tsx.snap +59 -0
- package/src/Table/index.test.tsx +24 -0
- package/src/Table/index.tsx +68 -0
- package/src/TableBody/__snapshots__/index.test.tsx.snap +11 -0
- package/src/TableBody/index.test.tsx +8 -0
- package/src/TableBody/index.tsx +26 -0
- package/src/TableCaption/__snapshots__/index.test.tsx.snap +59 -0
- package/src/TableCaption/index.test.tsx +32 -0
- package/src/TableCaption/index.tsx +36 -0
- package/src/TableDataCell/__snapshots__/index.test.tsx.snap +23 -0
- package/src/TableDataCell/index.test.tsx +14 -0
- package/src/TableDataCell/index.tsx +37 -0
- package/src/TableHead/__snapshots__/index.test.tsx.snap +11 -0
- package/src/TableHead/index.test.tsx +8 -0
- package/src/TableHead/index.tsx +26 -0
- package/src/TableHeaderCell/__snapshots__/index.test.tsx.snap +182 -0
- package/src/TableHeaderCell/index.test.tsx +113 -0
- package/src/TableHeaderCell/index.tsx +55 -0
- package/src/TableRow/__snapshots__/index.test.tsx.snap +11 -0
- package/src/TableRow/index.test.tsx +8 -0
- package/src/TableRow/index.tsx +25 -0
- package/src/TabsListItem/index.tsx +24 -24
- package/src/TabsPanel/index.tsx +2 -0
- package/src/TextInput/__snapshots__/index.test.tsx.snap +161 -161
- package/src/TextInput/index.test.tsx +88 -72
- package/src/TextInput/index.tsx +10 -9
- package/src/index.ts +7 -0
- package/coverage/clover.xml +0 -919
- package/coverage/coverage-final.json +0 -115
- package/coverage/lcov-report/Accordion/index.html +0 -111
- package/coverage/lcov-report/Accordion/index.tsx.html +0 -158
- package/coverage/lcov-report/AccordionSection/index.html +0 -111
- package/coverage/lcov-report/AccordionSection/index.tsx.html +0 -182
- package/coverage/lcov-report/AccordionSectionContent/index.html +0 -111
- package/coverage/lcov-report/AccordionSectionContent/index.tsx.html +0 -161
- package/coverage/lcov-report/AccordionSectionHeader/index.html +0 -111
- package/coverage/lcov-report/AccordionSectionHeader/index.tsx.html +0 -194
- package/coverage/lcov-report/Aside/index.html +0 -111
- package/coverage/lcov-report/Aside/index.tsx.html +0 -161
- package/coverage/lcov-report/BackLink/index.html +0 -111
- package/coverage/lcov-report/BackLink/index.tsx.html +0 -188
- package/coverage/lcov-report/Blockquote/index.html +0 -111
- package/coverage/lcov-report/Blockquote/index.tsx.html +0 -155
- package/coverage/lcov-report/Bottom/index.html +0 -111
- package/coverage/lcov-report/Bottom/index.tsx.html +0 -149
- package/coverage/lcov-report/Breadcrumbs/index.html +0 -111
- package/coverage/lcov-report/Breadcrumbs/index.tsx.html +0 -158
- package/coverage/lcov-report/BreadcrumbsList/index.html +0 -111
- package/coverage/lcov-report/BreadcrumbsList/index.tsx.html +0 -158
- package/coverage/lcov-report/BreadcrumbsListItem/index.html +0 -111
- package/coverage/lcov-report/BreadcrumbsListItem/index.tsx.html +0 -197
- package/coverage/lcov-report/BurgerIcon/index.html +0 -111
- package/coverage/lcov-report/BurgerIcon/index.tsx.html +0 -227
- package/coverage/lcov-report/Button/index.html +0 -111
- package/coverage/lcov-report/Button/index.tsx.html +0 -221
- package/coverage/lcov-report/ButtonGroup/index.html +0 -111
- package/coverage/lcov-report/ButtonGroup/index.tsx.html +0 -155
- package/coverage/lcov-report/CallToAction/index.html +0 -111
- package/coverage/lcov-report/CallToAction/index.tsx.html +0 -203
- package/coverage/lcov-report/Card/index.html +0 -111
- package/coverage/lcov-report/Card/index.tsx.html +0 -203
- package/coverage/lcov-report/CardAction/index.html +0 -111
- package/coverage/lcov-report/CardAction/index.tsx.html +0 -164
- package/coverage/lcov-report/CardHeading/index.html +0 -111
- package/coverage/lcov-report/CardHeading/index.tsx.html +0 -167
- package/coverage/lcov-report/CardText/index.html +0 -111
- package/coverage/lcov-report/CardText/index.tsx.html +0 -161
- package/coverage/lcov-report/Checkbox/index.html +0 -111
- package/coverage/lcov-report/Checkbox/index.tsx.html +0 -161
- package/coverage/lcov-report/CheckboxConditional/index.html +0 -111
- package/coverage/lcov-report/CheckboxConditional/index.tsx.html +0 -236
- package/coverage/lcov-report/CheckboxItem/index.html +0 -111
- package/coverage/lcov-report/CheckboxItem/index.tsx.html +0 -233
- package/coverage/lcov-report/Confirmation/index.html +0 -111
- package/coverage/lcov-report/Confirmation/index.tsx.html +0 -158
- package/coverage/lcov-report/ConfirmationBody/index.html +0 -111
- package/coverage/lcov-report/ConfirmationBody/index.tsx.html +0 -158
- package/coverage/lcov-report/ConfirmationTitle/index.html +0 -111
- package/coverage/lcov-report/ConfirmationTitle/index.tsx.html +0 -158
- package/coverage/lcov-report/Container/index.html +0 -111
- package/coverage/lcov-report/Container/index.tsx.html +0 -179
- package/coverage/lcov-report/Copyright/index.html +0 -111
- package/coverage/lcov-report/Copyright/index.tsx.html +0 -158
- package/coverage/lcov-report/DateInput/index.html +0 -111
- package/coverage/lcov-report/DateInput/index.tsx.html +0 -164
- package/coverage/lcov-report/DateInputItem/index.html +0 -111
- package/coverage/lcov-report/DateInputItem/index.tsx.html +0 -227
- package/coverage/lcov-report/Details/index.html +0 -111
- package/coverage/lcov-report/Details/index.tsx.html +0 -158
- package/coverage/lcov-report/DetailsContent/index.html +0 -111
- package/coverage/lcov-report/DetailsContent/index.tsx.html +0 -161
- package/coverage/lcov-report/DetailsSummary/index.html +0 -111
- package/coverage/lcov-report/DetailsSummary/index.tsx.html +0 -158
- package/coverage/lcov-report/ErrorMessage/index.html +0 -111
- package/coverage/lcov-report/ErrorMessage/index.tsx.html +0 -164
- package/coverage/lcov-report/ErrorSummary/index.html +0 -111
- package/coverage/lcov-report/ErrorSummary/index.tsx.html +0 -155
- package/coverage/lcov-report/Fieldset/index.html +0 -111
- package/coverage/lcov-report/Fieldset/index.tsx.html +0 -158
- package/coverage/lcov-report/FieldsetLegend/index.html +0 -111
- package/coverage/lcov-report/FieldsetLegend/index.tsx.html +0 -233
- package/coverage/lcov-report/FileUpload/index.html +0 -111
- package/coverage/lcov-report/FileUpload/index.tsx.html +0 -197
- package/coverage/lcov-report/Footer/index.html +0 -111
- package/coverage/lcov-report/Footer/index.tsx.html +0 -155
- package/coverage/lcov-report/FooterContainer/index.html +0 -111
- package/coverage/lcov-report/FooterContainer/index.tsx.html +0 -158
- package/coverage/lcov-report/FooterContent/index.html +0 -111
- package/coverage/lcov-report/FooterContent/index.tsx.html +0 -161
- package/coverage/lcov-report/FooterContentLogos/index.html +0 -111
- package/coverage/lcov-report/FooterContentLogos/index.tsx.html +0 -164
- package/coverage/lcov-report/FooterHeading/index.html +0 -111
- package/coverage/lcov-report/FooterHeading/index.tsx.html +0 -185
- package/coverage/lcov-report/FooterImage/index.html +0 -111
- package/coverage/lcov-report/FooterImage/index.tsx.html +0 -161
- package/coverage/lcov-report/FooterInlineList/index.html +0 -111
- package/coverage/lcov-report/FooterInlineList/index.tsx.html +0 -164
- package/coverage/lcov-report/FooterInlineListItem/index.html +0 -111
- package/coverage/lcov-report/FooterInlineListItem/index.tsx.html +0 -158
- package/coverage/lcov-report/FooterLink/index.html +0 -111
- package/coverage/lcov-report/FooterLink/index.tsx.html +0 -173
- package/coverage/lcov-report/FooterList/index.html +0 -111
- package/coverage/lcov-report/FooterList/index.tsx.html +0 -179
- package/coverage/lcov-report/FooterListItem/index.html +0 -111
- package/coverage/lcov-report/FooterListItem/index.tsx.html +0 -161
- package/coverage/lcov-report/FooterMeta/index.html +0 -111
- package/coverage/lcov-report/FooterMeta/index.tsx.html +0 -161
- package/coverage/lcov-report/FooterMetaItem/index.html +0 -111
- package/coverage/lcov-report/FooterMetaItem/index.tsx.html +0 -179
- package/coverage/lcov-report/FooterNavigation/index.html +0 -111
- package/coverage/lcov-report/FooterNavigation/index.tsx.html +0 -164
- package/coverage/lcov-report/FooterSection/index.html +0 -111
- package/coverage/lcov-report/FooterSection/index.tsx.html +0 -164
- package/coverage/lcov-report/FormGroup/index.html +0 -111
- package/coverage/lcov-report/FormGroup/index.tsx.html +0 -173
- package/coverage/lcov-report/GovGRFooter/index.html +0 -111
- package/coverage/lcov-report/GovGRFooter/index.tsx.html +0 -155
- package/coverage/lcov-report/GovGRLogo/index.html +0 -111
- package/coverage/lcov-report/GovGRLogo/index.tsx.html +0 -176
- package/coverage/lcov-report/Header/index.html +0 -111
- package/coverage/lcov-report/Header/index.tsx.html +0 -167
- package/coverage/lcov-report/HeaderContent/index.html +0 -111
- package/coverage/lcov-report/HeaderContent/index.tsx.html +0 -158
- package/coverage/lcov-report/HeaderLogo/index.html +0 -111
- package/coverage/lcov-report/HeaderLogo/index.tsx.html +0 -164
- package/coverage/lcov-report/HeaderSecondaryLogo/index.html +0 -111
- package/coverage/lcov-report/HeaderSecondaryLogo/index.tsx.html +0 -185
- package/coverage/lcov-report/HeaderSection/index.html +0 -111
- package/coverage/lcov-report/HeaderSection/index.tsx.html +0 -158
- package/coverage/lcov-report/HeaderSubtitle/index.html +0 -111
- package/coverage/lcov-report/HeaderSubtitle/index.tsx.html +0 -140
- package/coverage/lcov-report/HeaderTitle/index.html +0 -111
- package/coverage/lcov-report/HeaderTitle/index.tsx.html +0 -176
- package/coverage/lcov-report/Heading/index.html +0 -111
- package/coverage/lcov-report/Heading/index.tsx.html +0 -212
- package/coverage/lcov-report/HeadingCaption/index.html +0 -111
- package/coverage/lcov-report/HeadingCaption/index.tsx.html +0 -185
- package/coverage/lcov-report/HellenicRepublicLogo/index.html +0 -111
- package/coverage/lcov-report/HellenicRepublicLogo/index.tsx.html +0 -206
- package/coverage/lcov-report/Hint/index.html +0 -111
- package/coverage/lcov-report/Hint/index.tsx.html +0 -155
- package/coverage/lcov-report/Label/index.html +0 -111
- package/coverage/lcov-report/Label/index.tsx.html +0 -176
- package/coverage/lcov-report/Layout/index.html +0 -111
- package/coverage/lcov-report/Layout/index.tsx.html +0 -155
- package/coverage/lcov-report/Link/index.html +0 -111
- package/coverage/lcov-report/Link/index.tsx.html +0 -176
- package/coverage/lcov-report/List/index.html +0 -111
- package/coverage/lcov-report/List/index.tsx.html +0 -197
- package/coverage/lcov-report/ListItem/index.html +0 -111
- package/coverage/lcov-report/ListItem/index.tsx.html +0 -155
- package/coverage/lcov-report/Main/index.html +0 -111
- package/coverage/lcov-report/Main/index.tsx.html +0 -158
- package/coverage/lcov-report/Masthead/index.html +0 -111
- package/coverage/lcov-report/Masthead/index.tsx.html +0 -206
- package/coverage/lcov-report/MastheadBody/index.html +0 -111
- package/coverage/lcov-report/MastheadBody/index.tsx.html +0 -158
- package/coverage/lcov-report/NavHorizontal/index.html +0 -111
- package/coverage/lcov-report/NavHorizontal/index.tsx.html +0 -182
- package/coverage/lcov-report/NavHorizontalList/index.html +0 -111
- package/coverage/lcov-report/NavHorizontalList/index.tsx.html +0 -161
- package/coverage/lcov-report/NavHorizontalListItem/index.html +0 -111
- package/coverage/lcov-report/NavHorizontalListItem/index.tsx.html +0 -206
- package/coverage/lcov-report/NavVertical/index.html +0 -111
- package/coverage/lcov-report/NavVertical/index.tsx.html +0 -161
- package/coverage/lcov-report/NavVerticalItem/index.html +0 -111
- package/coverage/lcov-report/NavVerticalItem/index.tsx.html +0 -182
- package/coverage/lcov-report/NormalText/index.html +0 -111
- package/coverage/lcov-report/NormalText/index.tsx.html +0 -263
- package/coverage/lcov-report/NotificationBanner/index.html +0 -111
- package/coverage/lcov-report/NotificationBanner/index.tsx.html +0 -197
- package/coverage/lcov-report/NotificationBannerContent/index.html +0 -111
- package/coverage/lcov-report/NotificationBannerContent/index.tsx.html +0 -167
- package/coverage/lcov-report/NotificationBannerHeader/index.html +0 -111
- package/coverage/lcov-report/NotificationBannerHeader/index.tsx.html +0 -182
- package/coverage/lcov-report/NotificationBannerHeading/index.html +0 -111
- package/coverage/lcov-report/NotificationBannerHeading/index.tsx.html +0 -164
- package/coverage/lcov-report/NotificationBannerLink/index.html +0 -111
- package/coverage/lcov-report/NotificationBannerLink/index.tsx.html +0 -191
- package/coverage/lcov-report/PageTitle/index.html +0 -111
- package/coverage/lcov-report/PageTitle/index.tsx.html +0 -137
- package/coverage/lcov-report/PageTitleCaption/index.html +0 -111
- package/coverage/lcov-report/PageTitleCaption/index.tsx.html +0 -191
- package/coverage/lcov-report/PageTitleHeading/index.html +0 -111
- package/coverage/lcov-report/PageTitleHeading/index.tsx.html +0 -191
- package/coverage/lcov-report/PageTitleSection/index.html +0 -111
- package/coverage/lcov-report/PageTitleSection/index.tsx.html +0 -140
- package/coverage/lcov-report/Paragraph/index.html +0 -111
- package/coverage/lcov-report/Paragraph/index.tsx.html +0 -260
- package/coverage/lcov-report/PhaseBanner/index.html +0 -111
- package/coverage/lcov-report/PhaseBanner/index.tsx.html +0 -176
- package/coverage/lcov-report/PhaseBannerTag/index.html +0 -111
- package/coverage/lcov-report/PhaseBannerTag/index.tsx.html +0 -161
- package/coverage/lcov-report/PhaseBannerText/index.html +0 -111
- package/coverage/lcov-report/PhaseBannerText/index.tsx.html +0 -164
- package/coverage/lcov-report/Radio/index.html +0 -111
- package/coverage/lcov-report/Radio/index.tsx.html +0 -158
- package/coverage/lcov-report/RadioItem/index.html +0 -111
- package/coverage/lcov-report/RadioItem/index.tsx.html +0 -230
- package/coverage/lcov-report/SectionBreak/index.html +0 -111
- package/coverage/lcov-report/SectionBreak/index.tsx.html +0 -194
- package/coverage/lcov-report/Select/index.html +0 -111
- package/coverage/lcov-report/Select/index.tsx.html +0 -179
- package/coverage/lcov-report/SelectOption/index.html +0 -111
- package/coverage/lcov-report/SelectOption/index.tsx.html +0 -200
- package/coverage/lcov-report/ServiceBadge/index.html +0 -111
- package/coverage/lcov-report/ServiceBadge/index.tsx.html +0 -161
- package/coverage/lcov-report/SummaryList/index.html +0 -111
- package/coverage/lcov-report/SummaryList/index.tsx.html +0 -158
- package/coverage/lcov-report/SummaryListItem/index.html +0 -111
- package/coverage/lcov-report/SummaryListItem/index.tsx.html +0 -161
- package/coverage/lcov-report/SummaryListItemAction/index.html +0 -111
- package/coverage/lcov-report/SummaryListItemAction/index.tsx.html +0 -161
- package/coverage/lcov-report/SummaryListItemKey/index.html +0 -111
- package/coverage/lcov-report/SummaryListItemKey/index.tsx.html +0 -161
- package/coverage/lcov-report/SummaryListItemValue/index.html +0 -111
- package/coverage/lcov-report/SummaryListItemValue/index.tsx.html +0 -158
- package/coverage/lcov-report/Tabs/index.html +0 -111
- package/coverage/lcov-report/Tabs/index.tsx.html +0 -161
- package/coverage/lcov-report/TabsHeading/index.html +0 -111
- package/coverage/lcov-report/TabsHeading/index.tsx.html +0 -185
- package/coverage/lcov-report/TabsList/index.html +0 -111
- package/coverage/lcov-report/TabsList/index.tsx.html +0 -161
- package/coverage/lcov-report/TabsListItem/index.html +0 -111
- package/coverage/lcov-report/TabsListItem/index.tsx.html +0 -227
- package/coverage/lcov-report/TabsPanel/index.html +0 -111
- package/coverage/lcov-report/TabsPanel/index.tsx.html +0 -182
- package/coverage/lcov-report/TextArea/index.html +0 -111
- package/coverage/lcov-report/TextArea/index.tsx.html +0 -224
- package/coverage/lcov-report/TextInput/index.html +0 -111
- package/coverage/lcov-report/TextInput/index.tsx.html +0 -320
- package/coverage/lcov-report/Top/index.html +0 -111
- package/coverage/lcov-report/Top/index.tsx.html +0 -152
- package/coverage/lcov-report/VisuallyHidden/index.html +0 -111
- package/coverage/lcov-report/VisuallyHidden/index.tsx.html +0 -161
- package/coverage/lcov-report/WarningText/index.html +0 -111
- package/coverage/lcov-report/WarningText/index.tsx.html +0 -221
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -79
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +0 -1806
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -170
- 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
|
|
3
|
+
exports[`renders the TextInput with with characterWidth=5 with cellWidth=full 1`] = `
|
|
4
4
|
<ForwardRef(TextInput)
|
|
5
|
-
|
|
6
|
-
|
|
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
|
|
15
|
+
exports[`renders the TextInput with with characterWidth=5 with cellWidth=one-half 1`] = `
|
|
28
16
|
<ForwardRef(TextInput)
|
|
29
|
-
|
|
30
|
-
|
|
17
|
+
cellWidth="one-half"
|
|
18
|
+
characterWidth={5}
|
|
31
19
|
>
|
|
32
20
|
<input
|
|
33
|
-
className="govgr-!-width-one-
|
|
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
|
|
27
|
+
exports[`renders the TextInput with with characterWidth=5 with cellWidth=one-quarter 1`] = `
|
|
40
28
|
<ForwardRef(TextInput)
|
|
41
|
-
|
|
42
|
-
|
|
29
|
+
cellWidth="one-quarter"
|
|
30
|
+
characterWidth={5}
|
|
43
31
|
>
|
|
44
32
|
<input
|
|
45
|
-
className="govgr-!-width-one-
|
|
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
|
|
39
|
+
exports[`renders the TextInput with with characterWidth=5 with cellWidth=one-third 1`] = `
|
|
52
40
|
<ForwardRef(TextInput)
|
|
53
|
-
|
|
54
|
-
|
|
41
|
+
cellWidth="one-third"
|
|
42
|
+
characterWidth={5}
|
|
55
43
|
>
|
|
56
44
|
<input
|
|
57
|
-
className="govgr-!-width-
|
|
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
|
|
51
|
+
exports[`renders the TextInput with with characterWidth=5 with cellWidth=three-quarters 1`] = `
|
|
64
52
|
<ForwardRef(TextInput)
|
|
65
|
-
|
|
66
|
-
|
|
53
|
+
cellWidth="three-quarters"
|
|
54
|
+
characterWidth={5}
|
|
67
55
|
>
|
|
68
56
|
<input
|
|
69
|
-
className="govgr-!-width-
|
|
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=
|
|
63
|
+
exports[`renders the TextInput with with characterWidth=5 with cellWidth=two-thirds 1`] = `
|
|
76
64
|
<ForwardRef(TextInput)
|
|
77
|
-
|
|
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
|
|
75
|
+
exports[`renders the TextInput with cellWidth=full 1`] = `
|
|
87
76
|
<ForwardRef(TextInput)
|
|
88
|
-
|
|
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
|
|
86
|
+
exports[`renders the TextInput with cellWidth=one-half 1`] = `
|
|
99
87
|
<ForwardRef(TextInput)
|
|
100
|
-
|
|
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
|
|
97
|
+
exports[`renders the TextInput with cellWidth=one-quarter 1`] = `
|
|
111
98
|
<ForwardRef(TextInput)
|
|
112
|
-
|
|
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
|
|
108
|
+
exports[`renders the TextInput with cellWidth=one-third 1`] = `
|
|
123
109
|
<ForwardRef(TextInput)
|
|
124
|
-
|
|
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
|
|
119
|
+
exports[`renders the TextInput with cellWidth=three-quarters 1`] = `
|
|
135
120
|
<ForwardRef(TextInput)
|
|
136
|
-
|
|
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
|
|
130
|
+
exports[`renders the TextInput with cellWidth=two-thirds 1`] = `
|
|
147
131
|
<ForwardRef(TextInput)
|
|
148
|
-
|
|
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=
|
|
141
|
+
exports[`renders the TextInput with characterWidth=2 1`] = `
|
|
159
142
|
<ForwardRef(TextInput)
|
|
160
|
-
characterWidth=
|
|
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=
|
|
152
|
+
exports[`renders the TextInput with characterWidth=2 and with cellWidth=full 1`] = `
|
|
170
153
|
<ForwardRef(TextInput)
|
|
171
|
-
|
|
172
|
-
|
|
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=
|
|
164
|
+
exports[`renders the TextInput with characterWidth=2 and with cellWidth=one-half 1`] = `
|
|
182
165
|
<ForwardRef(TextInput)
|
|
183
|
-
|
|
184
|
-
|
|
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=
|
|
176
|
+
exports[`renders the TextInput with characterWidth=2 and with cellWidth=one-quarter 1`] = `
|
|
194
177
|
<ForwardRef(TextInput)
|
|
195
|
-
|
|
196
|
-
|
|
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=
|
|
188
|
+
exports[`renders the TextInput with characterWidth=2 and with cellWidth=one-third 1`] = `
|
|
206
189
|
<ForwardRef(TextInput)
|
|
207
|
-
|
|
208
|
-
|
|
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=
|
|
200
|
+
exports[`renders the TextInput with characterWidth=2 and with cellWidth=three-quarters 1`] = `
|
|
218
201
|
<ForwardRef(TextInput)
|
|
219
|
-
|
|
220
|
-
|
|
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=
|
|
212
|
+
exports[`renders the TextInput with characterWidth=2 and with cellWidth=two-thirds 1`] = `
|
|
230
213
|
<ForwardRef(TextInput)
|
|
231
|
-
|
|
232
|
-
|
|
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=
|
|
224
|
+
exports[`renders the TextInput with characterWidth=3 1`] = `
|
|
242
225
|
<ForwardRef(TextInput)
|
|
243
|
-
characterWidth=
|
|
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=
|
|
235
|
+
exports[`renders the TextInput with characterWidth=3 and with cellWidth=full 1`] = `
|
|
253
236
|
<ForwardRef(TextInput)
|
|
254
|
-
|
|
255
|
-
|
|
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=
|
|
247
|
+
exports[`renders the TextInput with characterWidth=3 and with cellWidth=one-half 1`] = `
|
|
265
248
|
<ForwardRef(TextInput)
|
|
266
|
-
|
|
267
|
-
|
|
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=
|
|
259
|
+
exports[`renders the TextInput with characterWidth=3 and with cellWidth=one-quarter 1`] = `
|
|
277
260
|
<ForwardRef(TextInput)
|
|
278
|
-
|
|
279
|
-
|
|
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=
|
|
271
|
+
exports[`renders the TextInput with characterWidth=3 and with cellWidth=one-third 1`] = `
|
|
289
272
|
<ForwardRef(TextInput)
|
|
290
|
-
|
|
291
|
-
|
|
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=
|
|
283
|
+
exports[`renders the TextInput with characterWidth=3 and with cellWidth=three-quarters 1`] = `
|
|
301
284
|
<ForwardRef(TextInput)
|
|
302
|
-
|
|
303
|
-
|
|
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=
|
|
295
|
+
exports[`renders the TextInput with characterWidth=3 and with cellWidth=two-thirds 1`] = `
|
|
313
296
|
<ForwardRef(TextInput)
|
|
314
|
-
|
|
315
|
-
|
|
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=
|
|
307
|
+
exports[`renders the TextInput with characterWidth=4 1`] = `
|
|
325
308
|
<ForwardRef(TextInput)
|
|
326
|
-
characterWidth=
|
|
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=
|
|
318
|
+
exports[`renders the TextInput with characterWidth=4 and with cellWidth=full 1`] = `
|
|
336
319
|
<ForwardRef(TextInput)
|
|
337
|
-
|
|
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=
|
|
330
|
+
exports[`renders the TextInput with characterWidth=4 and with cellWidth=one-half 1`] = `
|
|
347
331
|
<ForwardRef(TextInput)
|
|
348
|
-
|
|
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=
|
|
342
|
+
exports[`renders the TextInput with characterWidth=4 and with cellWidth=one-quarter 1`] = `
|
|
358
343
|
<ForwardRef(TextInput)
|
|
359
|
-
|
|
360
|
-
|
|
344
|
+
cellWidth="one-quarter"
|
|
345
|
+
characterWidth={4}
|
|
361
346
|
>
|
|
362
347
|
<input
|
|
363
|
-
className="govgr-!-width-
|
|
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=
|
|
354
|
+
exports[`renders the TextInput with characterWidth=4 and with cellWidth=one-third 1`] = `
|
|
370
355
|
<ForwardRef(TextInput)
|
|
371
|
-
|
|
372
|
-
|
|
356
|
+
cellWidth="one-third"
|
|
357
|
+
characterWidth={4}
|
|
373
358
|
>
|
|
374
359
|
<input
|
|
375
|
-
className="govgr-!-width-one-
|
|
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=
|
|
366
|
+
exports[`renders the TextInput with characterWidth=4 and with cellWidth=three-quarters 1`] = `
|
|
382
367
|
<ForwardRef(TextInput)
|
|
383
|
-
|
|
384
|
-
|
|
368
|
+
cellWidth="three-quarters"
|
|
369
|
+
characterWidth={4}
|
|
385
370
|
>
|
|
386
371
|
<input
|
|
387
|
-
className="govgr-!-width-
|
|
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=
|
|
378
|
+
exports[`renders the TextInput with characterWidth=4 and with cellWidth=two-thirds 1`] = `
|
|
394
379
|
<ForwardRef(TextInput)
|
|
395
|
-
|
|
396
|
-
|
|
380
|
+
cellWidth="two-thirds"
|
|
381
|
+
characterWidth={4}
|
|
397
382
|
>
|
|
398
383
|
<input
|
|
399
|
-
className="govgr-!-width-
|
|
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=
|
|
390
|
+
exports[`renders the TextInput with characterWidth=5 1`] = `
|
|
406
391
|
<ForwardRef(TextInput)
|
|
407
|
-
characterWidth=
|
|
408
|
-
width="three-quarters"
|
|
392
|
+
characterWidth={5}
|
|
409
393
|
>
|
|
410
394
|
<input
|
|
411
|
-
className="govgr
|
|
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=
|
|
401
|
+
exports[`renders the TextInput with characterWidth=10 1`] = `
|
|
418
402
|
<ForwardRef(TextInput)
|
|
419
|
-
characterWidth=
|
|
420
|
-
width="two-thirds"
|
|
403
|
+
characterWidth={10}
|
|
421
404
|
>
|
|
422
405
|
<input
|
|
423
|
-
className="govgr
|
|
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
|
|
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
|
|
423
|
+
exports[`renders the TextInput with characterWidth=20 and with cellWidth=full 1`] = `
|
|
439
424
|
<ForwardRef(TextInput)
|
|
440
|
-
|
|
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
|
|
435
|
+
exports[`renders the TextInput with characterWidth=20 and with cellWidth=one-half 1`] = `
|
|
450
436
|
<ForwardRef(TextInput)
|
|
451
|
-
|
|
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
|
|
447
|
+
exports[`renders the TextInput with characterWidth=20 and with cellWidth=one-quarter 1`] = `
|
|
461
448
|
<ForwardRef(TextInput)
|
|
462
|
-
|
|
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
|
|
459
|
+
exports[`renders the TextInput with characterWidth=20 and with cellWidth=one-third 1`] = `
|
|
472
460
|
<ForwardRef(TextInput)
|
|
473
|
-
|
|
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
|
|
471
|
+
exports[`renders the TextInput with characterWidth=20 and with cellWidth=three-quarters 1`] = `
|
|
483
472
|
<ForwardRef(TextInput)
|
|
484
|
-
|
|
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
|
|
483
|
+
exports[`renders the TextInput with characterWidth=20 and with cellWidth=two-thirds 1`] = `
|
|
494
484
|
<ForwardRef(TextInput)
|
|
495
|
-
|
|
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)>
|