@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
package/coverage/clover.xml
DELETED
|
@@ -1,919 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="1637571361495" clover="3.2.0">
|
|
3
|
-
<project timestamp="1637571361495" name="All files">
|
|
4
|
-
<metrics statements="229" coveredstatements="229" conditionals="25" coveredconditionals="24" methods="114" coveredmethods="114" elements="368" coveredelements="367" complexity="0" loc="229" ncloc="229" packages="114" files="114" classes="114"/>
|
|
5
|
-
<package name="Accordion">
|
|
6
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
7
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Accordion/index.tsx">
|
|
8
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
9
|
-
<line num="10" count="1" type="stmt"/>
|
|
10
|
-
<line num="12" count="1" type="stmt"/>
|
|
11
|
-
</file>
|
|
12
|
-
</package>
|
|
13
|
-
<package name="AccordionSection">
|
|
14
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
15
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/AccordionSection/index.tsx">
|
|
16
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
17
|
-
<line num="16" count="1" type="stmt"/>
|
|
18
|
-
<line num="20" count="3" type="stmt"/>
|
|
19
|
-
</file>
|
|
20
|
-
</package>
|
|
21
|
-
<package name="AccordionSectionContent">
|
|
22
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
23
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/AccordionSectionContent/index.tsx">
|
|
24
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
25
|
-
<line num="10" count="1" type="stmt"/>
|
|
26
|
-
<line num="14" count="1" type="stmt"/>
|
|
27
|
-
</file>
|
|
28
|
-
</package>
|
|
29
|
-
<package name="AccordionSectionHeader">
|
|
30
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
31
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/AccordionSectionHeader/index.tsx">
|
|
32
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
33
|
-
<line num="9" count="1" type="stmt"/>
|
|
34
|
-
<line num="13" count="1" type="stmt"/>
|
|
35
|
-
</file>
|
|
36
|
-
</package>
|
|
37
|
-
<package name="Aside">
|
|
38
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
39
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Aside/index.tsx">
|
|
40
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
41
|
-
<line num="10" count="1" type="stmt"/>
|
|
42
|
-
<line num="14" count="1" type="stmt"/>
|
|
43
|
-
</file>
|
|
44
|
-
</package>
|
|
45
|
-
<package name="BackLink">
|
|
46
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
47
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/BackLink/index.tsx">
|
|
48
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
49
|
-
<line num="14" count="1" type="stmt"/>
|
|
50
|
-
<line num="16" count="2" type="stmt"/>
|
|
51
|
-
</file>
|
|
52
|
-
</package>
|
|
53
|
-
<package name="Blockquote">
|
|
54
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
55
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Blockquote/index.tsx">
|
|
56
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
57
|
-
<line num="9" count="1" type="stmt"/>
|
|
58
|
-
<line num="11" count="1" type="stmt"/>
|
|
59
|
-
</file>
|
|
60
|
-
</package>
|
|
61
|
-
<package name="Bottom">
|
|
62
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
63
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Bottom/index.tsx">
|
|
64
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
65
|
-
<line num="9" count="1" type="stmt"/>
|
|
66
|
-
<line num="11" count="1" type="stmt"/>
|
|
67
|
-
</file>
|
|
68
|
-
</package>
|
|
69
|
-
<package name="Breadcrumbs">
|
|
70
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
71
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Breadcrumbs/index.tsx">
|
|
72
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
73
|
-
<line num="10" count="1" type="stmt"/>
|
|
74
|
-
<line num="12" count="1" type="stmt"/>
|
|
75
|
-
</file>
|
|
76
|
-
</package>
|
|
77
|
-
<package name="BreadcrumbsList">
|
|
78
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
79
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/BreadcrumbsList/index.tsx">
|
|
80
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
81
|
-
<line num="9" count="1" type="stmt"/>
|
|
82
|
-
<line num="13" count="1" type="stmt"/>
|
|
83
|
-
</file>
|
|
84
|
-
</package>
|
|
85
|
-
<package name="BreadcrumbsListItem">
|
|
86
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
87
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/BreadcrumbsListItem/index.tsx">
|
|
88
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
89
|
-
<line num="15" count="1" type="stmt"/>
|
|
90
|
-
<line num="19" count="2" type="stmt"/>
|
|
91
|
-
</file>
|
|
92
|
-
</package>
|
|
93
|
-
<package name="BurgerIcon">
|
|
94
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
95
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/BurgerIcon/index.tsx">
|
|
96
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
97
|
-
<line num="17" count="1" type="stmt"/>
|
|
98
|
-
<line num="19" count="3" type="stmt"/>
|
|
99
|
-
</file>
|
|
100
|
-
</package>
|
|
101
|
-
<package name="Button">
|
|
102
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
103
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Button/index.tsx">
|
|
104
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
105
|
-
<line num="23" count="1" type="stmt"/>
|
|
106
|
-
<line num="28" count="9" type="stmt"/>
|
|
107
|
-
</file>
|
|
108
|
-
</package>
|
|
109
|
-
<package name="ButtonGroup">
|
|
110
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
111
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/ButtonGroup/index.tsx">
|
|
112
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
113
|
-
<line num="9" count="1" type="stmt"/>
|
|
114
|
-
<line num="11" count="1" type="stmt"/>
|
|
115
|
-
</file>
|
|
116
|
-
</package>
|
|
117
|
-
<package name="CallToAction">
|
|
118
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
119
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/CallToAction/index.tsx">
|
|
120
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
121
|
-
<line num="14" count="1" type="stmt"/>
|
|
122
|
-
<line num="18" count="1" type="stmt"/>
|
|
123
|
-
</file>
|
|
124
|
-
</package>
|
|
125
|
-
<package name="Card">
|
|
126
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
127
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Card/index.tsx">
|
|
128
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
129
|
-
<line num="17" count="1" type="stmt"/>
|
|
130
|
-
<line num="21" count="2" type="stmt"/>
|
|
131
|
-
</file>
|
|
132
|
-
</package>
|
|
133
|
-
<package name="CardAction">
|
|
134
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
135
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/CardAction/index.tsx">
|
|
136
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
137
|
-
<line num="11" count="1" type="stmt"/>
|
|
138
|
-
<line num="13" count="1" type="stmt"/>
|
|
139
|
-
</file>
|
|
140
|
-
</package>
|
|
141
|
-
<package name="CardHeading">
|
|
142
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
143
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/CardHeading/index.tsx">
|
|
144
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
145
|
-
<line num="10" count="1" type="stmt"/>
|
|
146
|
-
<line num="12" count="1" type="stmt"/>
|
|
147
|
-
</file>
|
|
148
|
-
</package>
|
|
149
|
-
<package name="CardText">
|
|
150
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
151
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/CardText/index.tsx">
|
|
152
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
153
|
-
<line num="10" count="1" type="stmt"/>
|
|
154
|
-
<line num="12" count="1" type="stmt"/>
|
|
155
|
-
</file>
|
|
156
|
-
</package>
|
|
157
|
-
<package name="Checkbox">
|
|
158
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
159
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Checkbox/index.tsx">
|
|
160
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
161
|
-
<line num="11" count="2" type="stmt"/>
|
|
162
|
-
<line num="13" count="14" type="stmt"/>
|
|
163
|
-
</file>
|
|
164
|
-
</package>
|
|
165
|
-
<package name="CheckboxConditional">
|
|
166
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
167
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/CheckboxConditional/index.tsx">
|
|
168
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
169
|
-
<line num="16" count="1" type="stmt"/>
|
|
170
|
-
<line num="20" count="2" type="stmt"/>
|
|
171
|
-
</file>
|
|
172
|
-
</package>
|
|
173
|
-
<package name="CheckboxItem">
|
|
174
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
175
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/CheckboxItem/index.tsx">
|
|
176
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
177
|
-
<line num="21" count="3" type="stmt"/>
|
|
178
|
-
<line num="23" count="28" type="stmt"/>
|
|
179
|
-
</file>
|
|
180
|
-
</package>
|
|
181
|
-
<package name="Confirmation">
|
|
182
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
183
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Confirmation/index.tsx">
|
|
184
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
185
|
-
<line num="9" count="1" type="stmt"/>
|
|
186
|
-
<line num="11" count="1" type="stmt"/>
|
|
187
|
-
</file>
|
|
188
|
-
</package>
|
|
189
|
-
<package name="ConfirmationBody">
|
|
190
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
191
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/ConfirmationBody/index.tsx">
|
|
192
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
193
|
-
<line num="9" count="1" type="stmt"/>
|
|
194
|
-
<line num="13" count="1" type="stmt"/>
|
|
195
|
-
</file>
|
|
196
|
-
</package>
|
|
197
|
-
<package name="ConfirmationTitle">
|
|
198
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
199
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/ConfirmationTitle/index.tsx">
|
|
200
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
201
|
-
<line num="9" count="1" type="stmt"/>
|
|
202
|
-
<line num="13" count="1" type="stmt"/>
|
|
203
|
-
</file>
|
|
204
|
-
</package>
|
|
205
|
-
<package name="Container">
|
|
206
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
207
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Container/index.tsx">
|
|
208
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
209
|
-
<line num="9" count="1" type="stmt"/>
|
|
210
|
-
<line num="11" count="1" type="stmt"/>
|
|
211
|
-
</file>
|
|
212
|
-
</package>
|
|
213
|
-
<package name="Copyright">
|
|
214
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
215
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Copyright/index.tsx">
|
|
216
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
217
|
-
<line num="10" count="1" type="stmt"/>
|
|
218
|
-
<line num="12" count="1" type="stmt"/>
|
|
219
|
-
</file>
|
|
220
|
-
</package>
|
|
221
|
-
<package name="DateInput">
|
|
222
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
223
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/DateInput/index.tsx">
|
|
224
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
225
|
-
<line num="12" count="1" type="stmt"/>
|
|
226
|
-
<line num="14" count="1" type="stmt"/>
|
|
227
|
-
</file>
|
|
228
|
-
</package>
|
|
229
|
-
<package name="DateInputItem">
|
|
230
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
231
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/DateInputItem/index.tsx">
|
|
232
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
233
|
-
<line num="16" count="1" type="stmt"/>
|
|
234
|
-
<line num="20" count="2" type="stmt"/>
|
|
235
|
-
</file>
|
|
236
|
-
</package>
|
|
237
|
-
<package name="Details">
|
|
238
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
239
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Details/index.tsx">
|
|
240
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
241
|
-
<line num="10" count="1" type="stmt"/>
|
|
242
|
-
<line num="12" count="1" type="stmt"/>
|
|
243
|
-
</file>
|
|
244
|
-
</package>
|
|
245
|
-
<package name="DetailsContent">
|
|
246
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
247
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/DetailsContent/index.tsx">
|
|
248
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
249
|
-
<line num="10" count="1" type="stmt"/>
|
|
250
|
-
<line num="14" count="1" type="stmt"/>
|
|
251
|
-
</file>
|
|
252
|
-
</package>
|
|
253
|
-
<package name="DetailsSummary">
|
|
254
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
255
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/DetailsSummary/index.tsx">
|
|
256
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
257
|
-
<line num="9" count="1" type="stmt"/>
|
|
258
|
-
<line num="13" count="1" type="stmt"/>
|
|
259
|
-
</file>
|
|
260
|
-
</package>
|
|
261
|
-
<package name="ErrorMessage">
|
|
262
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
263
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/ErrorMessage/index.tsx">
|
|
264
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
265
|
-
<line num="11" count="1" type="stmt"/>
|
|
266
|
-
<line num="15" count="1" type="stmt"/>
|
|
267
|
-
</file>
|
|
268
|
-
</package>
|
|
269
|
-
<package name="ErrorSummary">
|
|
270
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
271
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/ErrorSummary/index.tsx">
|
|
272
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
273
|
-
<line num="9" count="1" type="stmt"/>
|
|
274
|
-
<line num="11" count="1" type="stmt"/>
|
|
275
|
-
</file>
|
|
276
|
-
</package>
|
|
277
|
-
<package name="Fieldset">
|
|
278
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
279
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Fieldset/index.tsx">
|
|
280
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
281
|
-
<line num="10" count="2" type="stmt"/>
|
|
282
|
-
<line num="12" count="13" type="stmt"/>
|
|
283
|
-
</file>
|
|
284
|
-
</package>
|
|
285
|
-
<package name="FieldsetLegend">
|
|
286
|
-
<metrics statements="2" coveredstatements="2" conditionals="6" coveredconditionals="5" methods="1" coveredmethods="1"/>
|
|
287
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FieldsetLegend/index.tsx">
|
|
288
|
-
<metrics statements="2" coveredstatements="2" conditionals="6" coveredconditionals="5" methods="1" coveredmethods="1"/>
|
|
289
|
-
<line num="22" count="1" type="stmt"/>
|
|
290
|
-
<line num="29" count="12" type="stmt"/>
|
|
291
|
-
</file>
|
|
292
|
-
</package>
|
|
293
|
-
<package name="FileUpload">
|
|
294
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
295
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FileUpload/index.tsx">
|
|
296
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
297
|
-
<line num="15" count="1" type="stmt"/>
|
|
298
|
-
<line num="17" count="2" type="stmt"/>
|
|
299
|
-
</file>
|
|
300
|
-
</package>
|
|
301
|
-
<package name="Footer">
|
|
302
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
303
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Footer/index.tsx">
|
|
304
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
305
|
-
<line num="9" count="1" type="stmt"/>
|
|
306
|
-
<line num="11" count="1" type="stmt"/>
|
|
307
|
-
</file>
|
|
308
|
-
</package>
|
|
309
|
-
<package name="FooterContainer">
|
|
310
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
311
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterContainer/index.tsx">
|
|
312
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
313
|
-
<line num="9" count="1" type="stmt"/>
|
|
314
|
-
<line num="13" count="1" type="stmt"/>
|
|
315
|
-
</file>
|
|
316
|
-
</package>
|
|
317
|
-
<package name="FooterContent">
|
|
318
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
319
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterContent/index.tsx">
|
|
320
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
321
|
-
<line num="10" count="1" type="stmt"/>
|
|
322
|
-
<line num="14" count="1" type="stmt"/>
|
|
323
|
-
</file>
|
|
324
|
-
</package>
|
|
325
|
-
<package name="FooterContentLogos">
|
|
326
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
327
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterContentLogos/index.tsx">
|
|
328
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
329
|
-
<line num="11" count="1" type="stmt"/>
|
|
330
|
-
<line num="15" count="1" type="stmt"/>
|
|
331
|
-
</file>
|
|
332
|
-
</package>
|
|
333
|
-
<package name="FooterHeading">
|
|
334
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
335
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterHeading/index.tsx">
|
|
336
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
337
|
-
<line num="16" count="1" type="stmt"/>
|
|
338
|
-
<line num="20" count="3" type="stmt"/>
|
|
339
|
-
</file>
|
|
340
|
-
</package>
|
|
341
|
-
<package name="FooterImage">
|
|
342
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
343
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterImage/index.tsx">
|
|
344
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
345
|
-
<line num="11" count="1" type="stmt"/>
|
|
346
|
-
<line num="13" count="1" type="stmt"/>
|
|
347
|
-
</file>
|
|
348
|
-
</package>
|
|
349
|
-
<package name="FooterInlineList">
|
|
350
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
351
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterInlineList/index.tsx">
|
|
352
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
353
|
-
<line num="11" count="1" type="stmt"/>
|
|
354
|
-
<line num="15" count="1" type="stmt"/>
|
|
355
|
-
</file>
|
|
356
|
-
</package>
|
|
357
|
-
<package name="FooterInlineListItem">
|
|
358
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
359
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterInlineListItem/index.tsx">
|
|
360
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
361
|
-
<line num="9" count="1" type="stmt"/>
|
|
362
|
-
<line num="13" count="1" type="stmt"/>
|
|
363
|
-
</file>
|
|
364
|
-
</package>
|
|
365
|
-
<package name="FooterLink">
|
|
366
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
367
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterLink/index.tsx">
|
|
368
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
369
|
-
<line num="14" count="1" type="stmt"/>
|
|
370
|
-
<line num="16" count="2" type="stmt"/>
|
|
371
|
-
</file>
|
|
372
|
-
</package>
|
|
373
|
-
<package name="FooterList">
|
|
374
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
375
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterList/index.tsx">
|
|
376
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
377
|
-
<line num="16" count="1" type="stmt"/>
|
|
378
|
-
<line num="18" count="2" type="stmt"/>
|
|
379
|
-
</file>
|
|
380
|
-
</package>
|
|
381
|
-
<package name="FooterListItem">
|
|
382
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
383
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterListItem/index.tsx">
|
|
384
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
385
|
-
<line num="10" count="1" type="stmt"/>
|
|
386
|
-
<line num="14" count="1" type="stmt"/>
|
|
387
|
-
</file>
|
|
388
|
-
</package>
|
|
389
|
-
<package name="FooterMeta">
|
|
390
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
391
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterMeta/index.tsx">
|
|
392
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
393
|
-
<line num="11" count="1" type="stmt"/>
|
|
394
|
-
<line num="13" count="1" type="stmt"/>
|
|
395
|
-
</file>
|
|
396
|
-
</package>
|
|
397
|
-
<package name="FooterMetaItem">
|
|
398
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
399
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterMetaItem/index.tsx">
|
|
400
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
401
|
-
<line num="15" count="1" type="stmt"/>
|
|
402
|
-
<line num="19" count="3" type="stmt"/>
|
|
403
|
-
</file>
|
|
404
|
-
</package>
|
|
405
|
-
<package name="FooterNavigation">
|
|
406
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
407
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterNavigation/index.tsx">
|
|
408
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
409
|
-
<line num="11" count="1" type="stmt"/>
|
|
410
|
-
<line num="15" count="1" type="stmt"/>
|
|
411
|
-
</file>
|
|
412
|
-
</package>
|
|
413
|
-
<package name="FooterSection">
|
|
414
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
415
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FooterSection/index.tsx">
|
|
416
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
417
|
-
<line num="11" count="1" type="stmt"/>
|
|
418
|
-
<line num="15" count="1" type="stmt"/>
|
|
419
|
-
</file>
|
|
420
|
-
</package>
|
|
421
|
-
<package name="FormGroup">
|
|
422
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
423
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/FormGroup/index.tsx">
|
|
424
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
425
|
-
<line num="14" count="2" type="stmt"/>
|
|
426
|
-
<line num="16" count="15" type="stmt"/>
|
|
427
|
-
</file>
|
|
428
|
-
</package>
|
|
429
|
-
<package name="GovGRFooter">
|
|
430
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
431
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/GovGRFooter/index.tsx">
|
|
432
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
433
|
-
<line num="9" count="1" type="stmt"/>
|
|
434
|
-
<line num="11" count="1" type="stmt"/>
|
|
435
|
-
</file>
|
|
436
|
-
</package>
|
|
437
|
-
<package name="GovGRLogo">
|
|
438
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
439
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/GovGRLogo/index.tsx">
|
|
440
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
441
|
-
<line num="14" count="1" type="stmt"/>
|
|
442
|
-
<line num="19" count="1" type="stmt"/>
|
|
443
|
-
</file>
|
|
444
|
-
</package>
|
|
445
|
-
<package name="Header">
|
|
446
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
447
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Header/index.tsx">
|
|
448
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
449
|
-
<line num="10" count="1" type="stmt"/>
|
|
450
|
-
<line num="12" count="1" type="stmt"/>
|
|
451
|
-
</file>
|
|
452
|
-
</package>
|
|
453
|
-
<package name="HeaderContent">
|
|
454
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
455
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/HeaderContent/index.tsx">
|
|
456
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
457
|
-
<line num="9" count="1" type="stmt"/>
|
|
458
|
-
<line num="13" count="1" type="stmt"/>
|
|
459
|
-
</file>
|
|
460
|
-
</package>
|
|
461
|
-
<package name="HeaderLogo">
|
|
462
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
463
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/HeaderLogo/index.tsx">
|
|
464
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
465
|
-
<line num="9" count="1" type="stmt"/>
|
|
466
|
-
<line num="11" count="1" type="stmt"/>
|
|
467
|
-
</file>
|
|
468
|
-
</package>
|
|
469
|
-
<package name="HeaderSecondaryLogo">
|
|
470
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
471
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/HeaderSecondaryLogo/index.tsx">
|
|
472
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
473
|
-
<line num="19" count="1" type="stmt"/>
|
|
474
|
-
<line num="23" count="2" type="stmt"/>
|
|
475
|
-
</file>
|
|
476
|
-
</package>
|
|
477
|
-
<package name="HeaderSection">
|
|
478
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
479
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/HeaderSection/index.tsx">
|
|
480
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
481
|
-
<line num="9" count="1" type="stmt"/>
|
|
482
|
-
<line num="13" count="1" type="stmt"/>
|
|
483
|
-
</file>
|
|
484
|
-
</package>
|
|
485
|
-
<package name="HeaderSubtitle">
|
|
486
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
487
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/HeaderSubtitle/index.tsx">
|
|
488
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
489
|
-
<line num="9" count="1" type="stmt"/>
|
|
490
|
-
<line num="13" count="1" type="stmt"/>
|
|
491
|
-
</file>
|
|
492
|
-
</package>
|
|
493
|
-
<package name="HeaderTitle">
|
|
494
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
495
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/HeaderTitle/index.tsx">
|
|
496
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
497
|
-
<line num="14" count="1" type="stmt"/>
|
|
498
|
-
<line num="18" count="2" type="stmt"/>
|
|
499
|
-
</file>
|
|
500
|
-
</package>
|
|
501
|
-
<package name="Heading">
|
|
502
|
-
<metrics statements="3" coveredstatements="3" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
|
|
503
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Heading/index.tsx">
|
|
504
|
-
<metrics statements="3" coveredstatements="3" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
|
|
505
|
-
<line num="21" count="1" type="stmt"/>
|
|
506
|
-
<line num="26" count="17" type="stmt"/>
|
|
507
|
-
<line num="27" count="17" type="stmt"/>
|
|
508
|
-
</file>
|
|
509
|
-
</package>
|
|
510
|
-
<package name="HeadingCaption">
|
|
511
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
512
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/HeadingCaption/index.tsx">
|
|
513
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
514
|
-
<line num="16" count="1" type="stmt"/>
|
|
515
|
-
<line num="20" count="4" type="stmt"/>
|
|
516
|
-
</file>
|
|
517
|
-
</package>
|
|
518
|
-
<package name="HellenicRepublicLogo">
|
|
519
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
520
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/HellenicRepublicLogo/index.tsx">
|
|
521
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
522
|
-
<line num="16" count="1" type="stmt"/>
|
|
523
|
-
<line num="28" count="1" type="stmt"/>
|
|
524
|
-
</file>
|
|
525
|
-
</package>
|
|
526
|
-
<package name="Hint">
|
|
527
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
528
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Hint/index.tsx">
|
|
529
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
530
|
-
<line num="9" count="2" type="stmt"/>
|
|
531
|
-
<line num="11" count="7" type="stmt"/>
|
|
532
|
-
</file>
|
|
533
|
-
</package>
|
|
534
|
-
<package name="Label">
|
|
535
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
536
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Label/index.tsx">
|
|
537
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
538
|
-
<line num="15" count="1" type="stmt"/>
|
|
539
|
-
<line num="17" count="1" type="stmt"/>
|
|
540
|
-
</file>
|
|
541
|
-
</package>
|
|
542
|
-
<package name="Layout">
|
|
543
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
544
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Layout/index.tsx">
|
|
545
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
546
|
-
<line num="9" count="1" type="stmt"/>
|
|
547
|
-
<line num="11" count="1" type="stmt"/>
|
|
548
|
-
</file>
|
|
549
|
-
</package>
|
|
550
|
-
<package name="Link">
|
|
551
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
552
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Link/index.tsx">
|
|
553
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
554
|
-
<line num="15" count="1" type="stmt"/>
|
|
555
|
-
<line num="17" count="3" type="stmt"/>
|
|
556
|
-
</file>
|
|
557
|
-
</package>
|
|
558
|
-
<package name="List">
|
|
559
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
560
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/List/index.tsx">
|
|
561
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
562
|
-
<line num="19" count="1" type="stmt"/>
|
|
563
|
-
<line num="23" count="7" type="stmt"/>
|
|
564
|
-
</file>
|
|
565
|
-
</package>
|
|
566
|
-
<package name="ListItem">
|
|
567
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
568
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/ListItem/index.tsx">
|
|
569
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
570
|
-
<line num="9" count="2" type="stmt"/>
|
|
571
|
-
<line num="11" count="9" type="stmt"/>
|
|
572
|
-
</file>
|
|
573
|
-
</package>
|
|
574
|
-
<package name="Main">
|
|
575
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
576
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Main/index.tsx">
|
|
577
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
578
|
-
<line num="9" count="1" type="stmt"/>
|
|
579
|
-
<line num="13" count="1" type="stmt"/>
|
|
580
|
-
</file>
|
|
581
|
-
</package>
|
|
582
|
-
<package name="Masthead">
|
|
583
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
584
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Masthead/index.tsx">
|
|
585
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
586
|
-
<line num="9" count="1" type="stmt"/>
|
|
587
|
-
<line num="11" count="1" type="stmt"/>
|
|
588
|
-
</file>
|
|
589
|
-
</package>
|
|
590
|
-
<package name="MastheadBody">
|
|
591
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
592
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/MastheadBody/index.tsx">
|
|
593
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
594
|
-
<line num="9" count="1" type="stmt"/>
|
|
595
|
-
<line num="13" count="1" type="stmt"/>
|
|
596
|
-
</file>
|
|
597
|
-
</package>
|
|
598
|
-
<package name="NavHorizontal">
|
|
599
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
600
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NavHorizontal/index.tsx">
|
|
601
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
602
|
-
<line num="17" count="1" type="stmt"/>
|
|
603
|
-
<line num="19" count="3" type="stmt"/>
|
|
604
|
-
</file>
|
|
605
|
-
</package>
|
|
606
|
-
<package name="NavHorizontalList">
|
|
607
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
608
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NavHorizontalList/index.tsx">
|
|
609
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
610
|
-
<line num="10" count="1" type="stmt"/>
|
|
611
|
-
<line num="14" count="1" type="stmt"/>
|
|
612
|
-
</file>
|
|
613
|
-
</package>
|
|
614
|
-
<package name="NavHorizontalListItem">
|
|
615
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
616
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NavHorizontalListItem/index.tsx">
|
|
617
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
618
|
-
<line num="20" count="1" type="stmt"/>
|
|
619
|
-
<line num="27" count="5" type="stmt"/>
|
|
620
|
-
</file>
|
|
621
|
-
</package>
|
|
622
|
-
<package name="NavVertical">
|
|
623
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
624
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NavVertical/index.tsx">
|
|
625
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
626
|
-
<line num="11" count="1" type="stmt"/>
|
|
627
|
-
<line num="13" count="1" type="stmt"/>
|
|
628
|
-
</file>
|
|
629
|
-
</package>
|
|
630
|
-
<package name="NavVerticalItem">
|
|
631
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
632
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NavVerticalItem/index.tsx">
|
|
633
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
634
|
-
<line num="15" count="1" type="stmt"/>
|
|
635
|
-
<line num="19" count="3" type="stmt"/>
|
|
636
|
-
</file>
|
|
637
|
-
</package>
|
|
638
|
-
<package name="NormalText">
|
|
639
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
640
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NormalText/index.tsx">
|
|
641
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
642
|
-
<line num="30" count="1" type="stmt"/>
|
|
643
|
-
<line num="35" count="40" type="stmt"/>
|
|
644
|
-
</file>
|
|
645
|
-
</package>
|
|
646
|
-
<package name="NotificationBanner">
|
|
647
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
648
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NotificationBanner/index.tsx">
|
|
649
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
650
|
-
<line num="18" count="1" type="stmt"/>
|
|
651
|
-
<line num="22" count="3" type="stmt"/>
|
|
652
|
-
</file>
|
|
653
|
-
</package>
|
|
654
|
-
<package name="NotificationBannerContent">
|
|
655
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
656
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NotificationBannerContent/index.tsx">
|
|
657
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
658
|
-
<line num="12" count="1" type="stmt"/>
|
|
659
|
-
<line num="16" count="1" type="stmt"/>
|
|
660
|
-
</file>
|
|
661
|
-
</package>
|
|
662
|
-
<package name="NotificationBannerHeader">
|
|
663
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
664
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NotificationBannerHeader/index.tsx">
|
|
665
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
666
|
-
<line num="11" count="1" type="stmt"/>
|
|
667
|
-
<line num="15" count="1" type="stmt"/>
|
|
668
|
-
</file>
|
|
669
|
-
</package>
|
|
670
|
-
<package name="NotificationBannerHeading">
|
|
671
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
672
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NotificationBannerHeading/index.tsx">
|
|
673
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
674
|
-
<line num="11" count="1" type="stmt"/>
|
|
675
|
-
<line num="15" count="1" type="stmt"/>
|
|
676
|
-
</file>
|
|
677
|
-
</package>
|
|
678
|
-
<package name="NotificationBannerLink">
|
|
679
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
680
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/NotificationBannerLink/index.tsx">
|
|
681
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
682
|
-
<line num="16" count="1" type="stmt"/>
|
|
683
|
-
<line num="23" count="2" type="stmt"/>
|
|
684
|
-
</file>
|
|
685
|
-
</package>
|
|
686
|
-
<package name="PageTitle">
|
|
687
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
688
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/PageTitle/index.tsx">
|
|
689
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
690
|
-
<line num="9" count="1" type="stmt"/>
|
|
691
|
-
<line num="11" count="1" type="stmt"/>
|
|
692
|
-
</file>
|
|
693
|
-
</package>
|
|
694
|
-
<package name="PageTitleCaption">
|
|
695
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
696
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/PageTitleCaption/index.tsx">
|
|
697
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
698
|
-
<line num="15" count="1" type="stmt"/>
|
|
699
|
-
<line num="22" count="4" type="stmt"/>
|
|
700
|
-
</file>
|
|
701
|
-
</package>
|
|
702
|
-
<package name="PageTitleHeading">
|
|
703
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
704
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/PageTitleHeading/index.tsx">
|
|
705
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
706
|
-
<line num="14" count="1" type="stmt"/>
|
|
707
|
-
<line num="21" count="5" type="stmt"/>
|
|
708
|
-
</file>
|
|
709
|
-
</package>
|
|
710
|
-
<package name="PageTitleSection">
|
|
711
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
712
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/PageTitleSection/index.tsx">
|
|
713
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
714
|
-
<line num="9" count="1" type="stmt"/>
|
|
715
|
-
<line num="13" count="1" type="stmt"/>
|
|
716
|
-
</file>
|
|
717
|
-
</package>
|
|
718
|
-
<package name="Paragraph">
|
|
719
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
720
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Paragraph/index.tsx">
|
|
721
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
722
|
-
<line num="29" count="1" type="stmt"/>
|
|
723
|
-
<line num="34" count="41" type="stmt"/>
|
|
724
|
-
</file>
|
|
725
|
-
</package>
|
|
726
|
-
<package name="PhaseBanner">
|
|
727
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
728
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/PhaseBanner/index.tsx">
|
|
729
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
730
|
-
<line num="10" count="1" type="stmt"/>
|
|
731
|
-
<line num="12" count="1" type="stmt"/>
|
|
732
|
-
</file>
|
|
733
|
-
</package>
|
|
734
|
-
<package name="PhaseBannerTag">
|
|
735
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
736
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/PhaseBannerTag/index.tsx">
|
|
737
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
738
|
-
<line num="9" count="1" type="stmt"/>
|
|
739
|
-
<line num="13" count="1" type="stmt"/>
|
|
740
|
-
</file>
|
|
741
|
-
</package>
|
|
742
|
-
<package name="PhaseBannerText">
|
|
743
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
744
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/PhaseBannerText/index.tsx">
|
|
745
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
746
|
-
<line num="11" count="1" type="stmt"/>
|
|
747
|
-
<line num="15" count="1" type="stmt"/>
|
|
748
|
-
</file>
|
|
749
|
-
</package>
|
|
750
|
-
<package name="Radio">
|
|
751
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
752
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Radio/index.tsx">
|
|
753
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
754
|
-
<line num="10" count="1" type="stmt"/>
|
|
755
|
-
<line num="12" count="1" type="stmt"/>
|
|
756
|
-
</file>
|
|
757
|
-
</package>
|
|
758
|
-
<package name="RadioItem">
|
|
759
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
760
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/RadioItem/index.tsx">
|
|
761
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
762
|
-
<line num="20" count="1" type="stmt"/>
|
|
763
|
-
<line num="22" count="4" type="stmt"/>
|
|
764
|
-
</file>
|
|
765
|
-
</package>
|
|
766
|
-
<package name="SectionBreak">
|
|
767
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
768
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/SectionBreak/index.tsx">
|
|
769
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
770
|
-
<line num="20" count="1" type="stmt"/>
|
|
771
|
-
<line num="22" count="6" type="stmt"/>
|
|
772
|
-
</file>
|
|
773
|
-
</package>
|
|
774
|
-
<package name="Select">
|
|
775
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
776
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Select/index.tsx">
|
|
777
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
778
|
-
<line num="16" count="1" type="stmt"/>
|
|
779
|
-
<line num="18" count="3" type="stmt"/>
|
|
780
|
-
</file>
|
|
781
|
-
</package>
|
|
782
|
-
<package name="SelectOption">
|
|
783
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
784
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/SelectOption/index.tsx">
|
|
785
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
786
|
-
<line num="20" count="1" type="stmt"/>
|
|
787
|
-
<line num="27" count="2" type="stmt"/>
|
|
788
|
-
</file>
|
|
789
|
-
</package>
|
|
790
|
-
<package name="ServiceBadge">
|
|
791
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
792
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/ServiceBadge/index.tsx">
|
|
793
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
794
|
-
<line num="11" count="1" type="stmt"/>
|
|
795
|
-
<line num="13" count="1" type="stmt"/>
|
|
796
|
-
</file>
|
|
797
|
-
</package>
|
|
798
|
-
<package name="SummaryList">
|
|
799
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
800
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/SummaryList/index.tsx">
|
|
801
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
802
|
-
<line num="10" count="1" type="stmt"/>
|
|
803
|
-
<line num="12" count="1" type="stmt"/>
|
|
804
|
-
</file>
|
|
805
|
-
</package>
|
|
806
|
-
<package name="SummaryListItem">
|
|
807
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
808
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/SummaryListItem/index.tsx">
|
|
809
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
810
|
-
<line num="10" count="1" type="stmt"/>
|
|
811
|
-
<line num="14" count="1" type="stmt"/>
|
|
812
|
-
</file>
|
|
813
|
-
</package>
|
|
814
|
-
<package name="SummaryListItemAction">
|
|
815
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
816
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/SummaryListItemAction/index.tsx">
|
|
817
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
818
|
-
<line num="10" count="1" type="stmt"/>
|
|
819
|
-
<line num="14" count="1" type="stmt"/>
|
|
820
|
-
</file>
|
|
821
|
-
</package>
|
|
822
|
-
<package name="SummaryListItemKey">
|
|
823
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
824
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/SummaryListItemKey/index.tsx">
|
|
825
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
826
|
-
<line num="10" count="1" type="stmt"/>
|
|
827
|
-
<line num="14" count="1" type="stmt"/>
|
|
828
|
-
</file>
|
|
829
|
-
</package>
|
|
830
|
-
<package name="SummaryListItemValue">
|
|
831
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
832
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/SummaryListItemValue/index.tsx">
|
|
833
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
834
|
-
<line num="9" count="1" type="stmt"/>
|
|
835
|
-
<line num="13" count="1" type="stmt"/>
|
|
836
|
-
</file>
|
|
837
|
-
</package>
|
|
838
|
-
<package name="Tabs">
|
|
839
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
840
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Tabs/index.tsx">
|
|
841
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
842
|
-
<line num="10" count="1" type="stmt"/>
|
|
843
|
-
<line num="14" count="1" type="stmt"/>
|
|
844
|
-
</file>
|
|
845
|
-
</package>
|
|
846
|
-
<package name="TabsHeading">
|
|
847
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
848
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/TabsHeading/index.tsx">
|
|
849
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
850
|
-
<line num="16" count="1" type="stmt"/>
|
|
851
|
-
<line num="20" count="3" type="stmt"/>
|
|
852
|
-
</file>
|
|
853
|
-
</package>
|
|
854
|
-
<package name="TabsList">
|
|
855
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
856
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/TabsList/index.tsx">
|
|
857
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
858
|
-
<line num="10" count="1" type="stmt"/>
|
|
859
|
-
<line num="12" count="1" type="stmt"/>
|
|
860
|
-
</file>
|
|
861
|
-
</package>
|
|
862
|
-
<package name="TabsListItem">
|
|
863
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
864
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/TabsListItem/index.tsx">
|
|
865
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
866
|
-
<line num="22" count="1" type="stmt"/>
|
|
867
|
-
<line num="27" count="5" type="stmt"/>
|
|
868
|
-
</file>
|
|
869
|
-
</package>
|
|
870
|
-
<package name="TabsPanel">
|
|
871
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
872
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/TabsPanel/index.tsx">
|
|
873
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
874
|
-
<line num="17" count="1" type="stmt"/>
|
|
875
|
-
<line num="19" count="4" type="stmt"/>
|
|
876
|
-
</file>
|
|
877
|
-
</package>
|
|
878
|
-
<package name="TextArea">
|
|
879
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
880
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/TextArea/index.tsx">
|
|
881
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
882
|
-
<line num="26" count="1" type="stmt"/>
|
|
883
|
-
<line num="31" count="6" type="stmt"/>
|
|
884
|
-
</file>
|
|
885
|
-
</package>
|
|
886
|
-
<package name="TextInput">
|
|
887
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
888
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/TextInput/index.tsx">
|
|
889
|
-
<metrics statements="2" coveredstatements="2" conditionals="1" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
890
|
-
<line num="37" count="1" type="stmt"/>
|
|
891
|
-
<line num="51" count="43" type="stmt"/>
|
|
892
|
-
</file>
|
|
893
|
-
</package>
|
|
894
|
-
<package name="Top">
|
|
895
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
896
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/Top/index.tsx">
|
|
897
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
898
|
-
<line num="9" count="1" type="stmt"/>
|
|
899
|
-
<line num="13" count="1" type="stmt"/>
|
|
900
|
-
</file>
|
|
901
|
-
</package>
|
|
902
|
-
<package name="VisuallyHidden">
|
|
903
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
904
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/VisuallyHidden/index.tsx">
|
|
905
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
906
|
-
<line num="10" count="1" type="stmt"/>
|
|
907
|
-
<line num="14" count="1" type="stmt"/>
|
|
908
|
-
</file>
|
|
909
|
-
</package>
|
|
910
|
-
<package name="WarningText">
|
|
911
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
912
|
-
<file name="index.tsx" path="/Users/dimitristsironis/grnet/digigov-sdk/ui/react-core/src/WarningText/index.tsx">
|
|
913
|
-
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
914
|
-
<line num="11" count="1" type="stmt"/>
|
|
915
|
-
<line num="13" count="1" type="stmt"/>
|
|
916
|
-
</file>
|
|
917
|
-
</package>
|
|
918
|
-
</project>
|
|
919
|
-
</coverage>
|