@digigov/react-core 0.18.1 → 0.19.1
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/Base/index.d.ts +10 -10
- package/Base/index.js +7 -4
- package/CHANGELOG.md +21 -1
- package/Container/index.js +2 -2
- package/Header/__snapshots__/index.test.tsx.snap +0 -2
- package/Header/index.js +0 -1
- package/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
- package/HeaderNavMenuContent/index.d.ts +11 -0
- package/HeaderNavMenuContent/index.js +40 -0
- package/HeaderNavMenuContent/index.test.d.ts +1 -0
- package/HeaderNavMenuContent/index.test.js +15 -0
- package/Masthead/index.d.ts +6 -0
- package/Masthead/index.js +4 -2
- package/NavHorizontal/__snapshots__/index.test.tsx.snap +6 -23
- package/NavHorizontal/index.d.ts +4 -4
- package/NavHorizontal/index.js +5 -4
- package/NavHorizontal/index.test.js +2 -10
- package/NavHorizontalList/__snapshots__/index.test.tsx.snap +22 -5
- package/NavHorizontalList/index.d.ts +7 -2
- package/NavHorizontalList/index.js +5 -3
- package/NavHorizontalList/index.test.js +8 -0
- package/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +7 -87
- package/NavHorizontalListItem/index.d.ts +4 -12
- package/NavHorizontalListItem/index.js +7 -10
- package/NavHorizontalListItem/index.test.js +0 -34
- package/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
- package/NavHorizontalListItemButton/index.d.ts +22 -0
- package/NavHorizontalListItemButton/index.js +45 -0
- package/NavHorizontalListItemButton/index.test.d.ts +1 -0
- package/NavHorizontalListItemButton/index.test.js +31 -0
- package/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
- package/NavHorizontalListItemLink/index.d.ts +20 -0
- package/NavHorizontalListItemLink/index.js +41 -0
- package/NavHorizontalListItemLink/index.test.d.ts +1 -0
- package/NavHorizontalListItemLink/index.test.js +49 -0
- package/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
- package/NavMenu/index.d.ts +10 -0
- package/NavMenu/index.js +39 -0
- package/NavMenu/index.test.d.ts +1 -0
- package/NavMenu/index.test.js +15 -0
- package/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
- package/NavMenuContainer/index.d.ts +10 -0
- package/NavMenuContainer/index.js +38 -0
- package/NavMenuContainer/index.test.d.ts +1 -0
- package/NavMenuContainer/index.test.js +15 -0
- package/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
- package/NavMenuContainerContent/index.d.ts +11 -0
- package/NavMenuContainerContent/index.js +41 -0
- package/NavMenuContainerContent/index.test.d.ts +1 -0
- package/NavMenuContainerContent/index.test.js +15 -0
- package/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
- package/NavMenuContainerContentList/index.d.ts +10 -0
- package/NavMenuContainerContentList/index.js +39 -0
- package/NavMenuContainerContentList/index.test.d.ts +1 -0
- package/NavMenuContainerContentList/index.test.js +15 -0
- package/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/NavMenuContainerContentListItem/index.d.ts +10 -0
- package/NavMenuContainerContentListItem/index.js +39 -0
- package/NavMenuContainerContentListItem/index.test.d.ts +1 -0
- package/NavMenuContainerContentListItem/index.test.js +15 -0
- package/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
- package/NavMenuContainerTitle/index.d.ts +11 -0
- package/NavMenuContainerTitle/index.js +46 -0
- package/NavMenuContainerTitle/index.test.d.ts +1 -0
- package/NavMenuContainerTitle/index.test.js +15 -0
- package/README.md +0 -10
- package/es/Base/index.js +7 -4
- package/es/Container/index.js +2 -2
- package/es/Header/__snapshots__/index.test.tsx.snap +0 -2
- package/es/Header/index.js +0 -1
- package/es/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
- package/es/HeaderNavMenuContent/index.js +24 -0
- package/es/HeaderNavMenuContent/index.test.js +9 -0
- package/es/Masthead/index.js +4 -2
- package/es/NavHorizontal/__snapshots__/index.test.tsx.snap +6 -23
- package/es/NavHorizontal/index.js +5 -4
- package/es/NavHorizontal/index.test.js +2 -10
- package/es/NavHorizontalList/__snapshots__/index.test.tsx.snap +22 -5
- package/es/NavHorizontalList/index.js +5 -3
- package/es/NavHorizontalList/index.test.js +8 -0
- package/es/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +7 -87
- package/es/NavHorizontalListItem/index.js +7 -10
- package/es/NavHorizontalListItem/index.test.js +0 -34
- package/es/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
- package/es/NavHorizontalListItemButton/index.js +28 -0
- package/es/NavHorizontalListItemButton/index.test.js +25 -0
- package/es/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
- package/es/NavHorizontalListItemLink/index.js +25 -0
- package/es/NavHorizontalListItemLink/index.test.js +43 -0
- package/es/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
- package/es/NavMenu/index.js +23 -0
- package/es/NavMenu/index.test.js +9 -0
- package/es/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
- package/es/NavMenuContainer/index.js +22 -0
- package/es/NavMenuContainer/index.test.js +9 -0
- package/es/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
- package/es/NavMenuContainerContent/index.js +25 -0
- package/es/NavMenuContainerContent/index.test.js +9 -0
- package/es/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
- package/es/NavMenuContainerContentList/index.js +23 -0
- package/es/NavMenuContainerContentList/index.test.js +9 -0
- package/es/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/es/NavMenuContainerContentListItem/index.js +23 -0
- package/es/NavMenuContainerContentListItem/index.test.js +9 -0
- package/es/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
- package/es/NavMenuContainerTitle/index.js +29 -0
- package/es/NavMenuContainerTitle/index.test.js +9 -0
- package/es/index.js +147 -139
- package/es/registry.js +18 -0
- package/esm/Base/index.js +7 -4
- package/esm/Container/index.js +2 -2
- package/esm/Header/__snapshots__/index.test.tsx.snap +0 -2
- package/esm/Header/index.js +0 -1
- package/esm/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
- package/esm/HeaderNavMenuContent/index.js +24 -0
- package/esm/HeaderNavMenuContent/index.test.js +9 -0
- package/esm/Masthead/index.js +4 -2
- package/esm/NavHorizontal/__snapshots__/index.test.tsx.snap +6 -23
- package/esm/NavHorizontal/index.js +5 -4
- package/esm/NavHorizontal/index.test.js +2 -10
- package/esm/NavHorizontalList/__snapshots__/index.test.tsx.snap +22 -5
- package/esm/NavHorizontalList/index.js +5 -3
- package/esm/NavHorizontalList/index.test.js +8 -0
- package/esm/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +7 -87
- package/esm/NavHorizontalListItem/index.js +7 -10
- package/esm/NavHorizontalListItem/index.test.js +0 -34
- package/esm/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
- package/esm/NavHorizontalListItemButton/index.js +28 -0
- package/esm/NavHorizontalListItemButton/index.test.js +25 -0
- package/esm/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
- package/esm/NavHorizontalListItemLink/index.js +25 -0
- package/esm/NavHorizontalListItemLink/index.test.js +43 -0
- package/esm/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
- package/esm/NavMenu/index.js +23 -0
- package/esm/NavMenu/index.test.js +9 -0
- package/esm/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
- package/esm/NavMenuContainer/index.js +22 -0
- package/esm/NavMenuContainer/index.test.js +9 -0
- package/esm/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
- package/esm/NavMenuContainerContent/index.js +25 -0
- package/esm/NavMenuContainerContent/index.test.js +9 -0
- package/esm/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
- package/esm/NavMenuContainerContentList/index.js +23 -0
- package/esm/NavMenuContainerContentList/index.test.js +9 -0
- package/esm/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/esm/NavMenuContainerContentListItem/index.js +23 -0
- package/esm/NavMenuContainerContentListItem/index.test.js +9 -0
- package/esm/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
- package/esm/NavMenuContainerTitle/index.js +29 -0
- package/esm/NavMenuContainerTitle/index.test.js +9 -0
- package/esm/index.js +148 -140
- package/esm/registry.js +18 -0
- package/index.d.ts +147 -139
- package/index.js +1910 -1113
- package/package.json +2 -2
- package/registry.d.ts +9 -0
- package/registry.js +27 -0
- package/src/Accordion/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Accordion/index.test.tsx +8 -0
- package/src/Accordion/index.tsx +27 -0
- package/src/AccordionControls/__snapshots__/index.test.tsx.snap +18 -0
- package/src/AccordionControls/index.test.tsx +14 -0
- package/src/AccordionControls/index.tsx +25 -0
- package/src/AccordionSection/__snapshots__/index.test.tsx.snap +54 -0
- package/src/AccordionSection/index.test.tsx +20 -0
- package/src/AccordionSection/index.tsx +35 -0
- package/src/AccordionSectionContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/AccordionSectionContent/index.test.tsx +10 -0
- package/src/AccordionSectionContent/index.tsx +28 -0
- package/src/AccordionSectionHeader/__snapshots__/index.test.tsx.snap +24 -0
- package/src/AccordionSectionHeader/index.test.tsx +10 -0
- package/src/AccordionSectionHeader/index.tsx +39 -0
- package/src/AccordionSectionSummary/__snapshots__/index.test.tsx.snap +20 -0
- package/src/AccordionSectionSummary/index.test.tsx +10 -0
- package/src/AccordionSectionSummary/index.tsx +34 -0
- package/src/AccordionSectionSummaryHeading/__snapshots__/index.test.tsx.snap +26 -0
- package/src/AccordionSectionSummaryHeading/index.test.tsx +12 -0
- package/src/AccordionSectionSummaryHeading/index.tsx +44 -0
- package/src/ArrowIcon/__snapshots__/index.test.tsx.snap +115 -0
- package/src/ArrowIcon/index.test.tsx +20 -0
- package/src/ArrowIcon/index.tsx +52 -0
- package/src/Aside/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Aside/index.test.tsx +8 -0
- package/src/Aside/index.tsx +28 -0
- package/src/BackLink/__snapshots__/index.test.tsx.snap +93 -0
- package/src/BackLink/index.test.tsx +11 -0
- package/src/BackLink/index.tsx +41 -0
- package/src/Base/index.tsx +153 -0
- package/src/Blockquote/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Blockquote/index.test.tsx +8 -0
- package/src/Blockquote/index.tsx +26 -0
- package/src/Bottom/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Bottom/index.test.tsx +8 -0
- package/src/Bottom/index.tsx +26 -0
- package/src/Breadcrumbs/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Breadcrumbs/index.test.tsx +8 -0
- package/src/Breadcrumbs/index.tsx +27 -0
- package/src/BreadcrumbsList/__snapshots__/index.test.tsx.snap +16 -0
- package/src/BreadcrumbsList/index.test.tsx +8 -0
- package/src/BreadcrumbsList/index.tsx +27 -0
- package/src/BreadcrumbsListItem/__snapshots__/index.test.tsx.snap +42 -0
- package/src/BreadcrumbsListItem/index.test.tsx +15 -0
- package/src/BreadcrumbsListItem/index.tsx +40 -0
- package/src/BurgerIcon/__snapshots__/index.test.tsx.snap +460 -0
- package/src/BurgerIcon/index.test.tsx +45 -0
- package/src/BurgerIcon/index.tsx +57 -0
- package/src/Button/__snapshots__/index.test.tsx.snap +214 -0
- package/src/Button/index.test.tsx +58 -0
- package/src/Button/index.tsx +62 -0
- package/src/ButtonGroup/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ButtonGroup/index.test.tsx +8 -0
- package/src/ButtonGroup/index.tsx +26 -0
- package/src/ButtonLink/__snapshots__/index.test.tsx.snap +199 -0
- package/src/ButtonLink/index.test.tsx +64 -0
- package/src/ButtonLink/index.tsx +41 -0
- package/src/CallToAction/__snapshots__/index.test.tsx.snap +46 -0
- package/src/CallToAction/index.test.tsx +8 -0
- package/src/CallToAction/index.tsx +31 -0
- package/src/Card/__snapshots__/index.test.tsx.snap +215 -0
- package/src/Card/index.test.tsx +66 -0
- package/src/Card/index.tsx +62 -0
- package/src/CardAction/__snapshots__/index.test.tsx.snap +16 -0
- package/src/CardAction/index.test.tsx +8 -0
- package/src/CardAction/index.tsx +28 -0
- package/src/CardHeading/__snapshots__/index.test.tsx.snap +20 -0
- package/src/CardHeading/index.test.tsx +8 -0
- package/src/CardHeading/index.tsx +29 -0
- package/src/CardText/__snapshots__/index.test.tsx.snap +16 -0
- package/src/CardText/index.test.tsx +8 -0
- package/src/CardText/index.tsx +27 -0
- package/src/CaretIcon/__snapshots__/index.test.tsx.snap +115 -0
- package/src/CaretIcon/index.test.tsx +20 -0
- package/src/CaretIcon/index.tsx +44 -0
- package/src/CheckIcon/__snapshots__/index.test.tsx.snap +452 -0
- package/src/CheckIcon/index.test.tsx +50 -0
- package/src/CheckIcon/index.tsx +34 -0
- package/src/Checkbox/__snapshots__/index.test.tsx.snap +51 -0
- package/src/Checkbox/index.test.tsx +19 -0
- package/src/Checkbox/index.tsx +28 -0
- package/src/CheckboxConditional/__snapshots__/index.test.tsx.snap +24 -0
- package/src/CheckboxConditional/index.test.tsx +10 -0
- package/src/CheckboxConditional/index.tsx +41 -0
- package/src/CheckboxItem/__snapshots__/index.test.tsx.snap +81 -0
- package/src/CheckboxItem/index.test.tsx +19 -0
- package/src/CheckboxItem/index.tsx +53 -0
- package/src/CloseIcon/__snapshots__/index.test.tsx.snap +28 -0
- package/src/CloseIcon/index.test.tsx +8 -0
- package/src/CloseIcon/index.tsx +35 -0
- package/src/Confirmation/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Confirmation/index.test.tsx +8 -0
- package/src/Confirmation/index.tsx +27 -0
- package/src/ConfirmationBody/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ConfirmationBody/index.test.tsx +8 -0
- package/src/ConfirmationBody/index.tsx +27 -0
- package/src/ConfirmationTitle/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ConfirmationTitle/index.test.tsx +8 -0
- package/src/ConfirmationTitle/index.tsx +27 -0
- package/src/Container/__snapshots__/index.test.tsx.snap +78 -0
- package/src/Container/index.test.tsx +20 -0
- package/src/Container/index.tsx +46 -0
- package/src/CopyrightContainer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/CopyrightContainer/index.test.tsx +10 -0
- package/src/CopyrightContainer/index.tsx +28 -0
- package/src/DateInputContainer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/DateInputContainer/index.test.tsx +10 -0
- package/src/DateInputContainer/index.tsx +30 -0
- package/src/DateInputItem/__snapshots__/index.test.tsx.snap +94 -0
- package/src/DateInputItem/index.test.tsx +24 -0
- package/src/DateInputItem/index.tsx +65 -0
- package/src/Details/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Details/index.test.tsx +8 -0
- package/src/Details/index.tsx +27 -0
- package/src/DetailsContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/DetailsContent/index.test.tsx +8 -0
- package/src/DetailsContent/index.tsx +28 -0
- package/src/DetailsSummary/__snapshots__/index.test.tsx.snap +16 -0
- package/src/DetailsSummary/index.test.tsx +8 -0
- package/src/DetailsSummary/index.tsx +27 -0
- package/src/ErrorMessage/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ErrorMessage/index.test.tsx +8 -0
- package/src/ErrorMessage/index.tsx +29 -0
- package/src/ErrorSummary/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ErrorSummary/index.test.tsx +8 -0
- package/src/ErrorSummary/index.tsx +26 -0
- package/src/FieldContainer/__snapshots__/index.test.tsx.snap +77 -0
- package/src/FieldContainer/index.test.tsx +20 -0
- package/src/FieldContainer/index.tsx +39 -0
- package/src/Fieldset/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Fieldset/index.test.tsx +8 -0
- package/src/Fieldset/index.tsx +28 -0
- package/src/FieldsetLegend/__snapshots__/index.test.tsx.snap +193 -0
- package/src/FieldsetLegend/index.test.tsx +98 -0
- package/src/FieldsetLegend/index.tsx +49 -0
- package/src/FileUpload/__snapshots__/index.test.tsx.snap +61 -0
- package/src/FileUpload/index.test.tsx +12 -0
- package/src/FileUpload/index.tsx +54 -0
- package/src/FileUploadContainer/__snapshots__/index.test.tsx.snap +29 -0
- package/src/FileUploadContainer/index.test.tsx +12 -0
- package/src/FileUploadContainer/index.tsx +36 -0
- package/src/Footer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Footer/index.test.tsx +8 -0
- package/src/Footer/index.tsx +26 -0
- package/src/FooterContainer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterContainer/index.test.tsx +8 -0
- package/src/FooterContainer/index.tsx +39 -0
- package/src/FooterContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterContent/index.test.tsx +8 -0
- package/src/FooterContent/index.tsx +28 -0
- package/src/FooterContentLogos/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterContentLogos/index.test.tsx +10 -0
- package/src/FooterContentLogos/index.tsx +29 -0
- package/src/FooterHeading/__snapshots__/index.test.tsx.snap +50 -0
- package/src/FooterHeading/index.test.tsx +20 -0
- package/src/FooterHeading/index.tsx +36 -0
- package/src/FooterImage/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterImage/index.test.tsx +8 -0
- package/src/FooterImage/index.tsx +37 -0
- package/src/FooterInlineList/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterInlineList/index.test.tsx +8 -0
- package/src/FooterInlineList/index.tsx +29 -0
- package/src/FooterInlineListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterInlineListItem/index.test.tsx +10 -0
- package/src/FooterInlineListItem/index.tsx +27 -0
- package/src/FooterLink/__snapshots__/index.test.tsx.snap +35 -0
- package/src/FooterLink/index.test.tsx +12 -0
- package/src/FooterLink/index.tsx +32 -0
- package/src/FooterList/__snapshots__/index.test.tsx.snap +33 -0
- package/src/FooterList/index.test.tsx +12 -0
- package/src/FooterList/index.tsx +34 -0
- package/src/FooterListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterListItem/index.test.tsx +8 -0
- package/src/FooterListItem/index.tsx +28 -0
- package/src/FooterMeta/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterMeta/index.test.tsx +8 -0
- package/src/FooterMeta/index.tsx +28 -0
- package/src/FooterMetaItem/__snapshots__/index.test.tsx.snap +50 -0
- package/src/FooterMetaItem/index.test.tsx +20 -0
- package/src/FooterMetaItem/index.tsx +34 -0
- package/src/FooterNavigation/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterNavigation/index.test.tsx +8 -0
- package/src/FooterNavigation/index.tsx +29 -0
- package/src/FooterSection/__snapshots__/index.test.tsx.snap +16 -0
- package/src/FooterSection/index.test.tsx +8 -0
- package/src/FooterSection/index.tsx +29 -0
- package/src/Form/__snapshots__/index.test.tsx.snap +33 -0
- package/src/Form/index.test.tsx +12 -0
- package/src/Form/index.tsx +31 -0
- package/src/GovGRLogo/__snapshots__/index.test.tsx.snap +27 -0
- package/src/GovGRLogo/govgr-logo-base64.js +1 -0
- package/src/GovGRLogo/govgr-logo-blue-base64.ts +1 -0
- package/src/GovGRLogo/index.test.tsx +8 -0
- package/src/GovGRLogo/index.tsx +42 -0
- package/src/Grid/__snapshots__/index.test.tsx.snap +135 -0
- package/src/Grid/index.test.tsx +29 -0
- package/src/Grid/index.tsx +126 -0
- package/src/Header/__snapshots__/index.test.tsx.snap +18 -0
- package/src/Header/index.test.tsx +8 -0
- package/src/Header/index.tsx +28 -0
- package/src/HeaderContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/HeaderContent/index.test.tsx +8 -0
- package/src/HeaderContent/index.tsx +27 -0
- package/src/HeaderLogo/__snapshots__/index.test.tsx.snap +18 -0
- package/src/HeaderLogo/index.test.tsx +8 -0
- package/src/HeaderLogo/index.tsx +45 -0
- package/src/HeaderNavMenuContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/HeaderNavMenuContent/index.test.tsx +10 -0
- package/src/HeaderNavMenuContent/index.tsx +29 -0
- package/src/HeaderSecondaryLogo/__snapshots__/index.test.tsx.snap +48 -0
- package/src/HeaderSecondaryLogo/index.test.tsx +26 -0
- package/src/HeaderSecondaryLogo/index.tsx +52 -0
- package/src/HeaderSection/__snapshots__/index.test.tsx.snap +16 -0
- package/src/HeaderSection/index.test.tsx +8 -0
- package/src/HeaderSection/index.tsx +27 -0
- package/src/HeaderSubtitle/__snapshots__/index.test.tsx.snap +16 -0
- package/src/HeaderSubtitle/index.test.tsx +8 -0
- package/src/HeaderSubtitle/index.tsx +20 -0
- package/src/HeaderTitle/__snapshots__/index.test.tsx.snap +37 -0
- package/src/HeaderTitle/index.test.tsx +13 -0
- package/src/HeaderTitle/index.tsx +33 -0
- package/src/Heading/__snapshots__/index.test.tsx.snap +300 -0
- package/src/Heading/index.test.tsx +144 -0
- package/src/Heading/index.tsx +64 -0
- package/src/HeadingCaption/__snapshots__/index.test.tsx.snap +67 -0
- package/src/HeadingCaption/index.test.tsx +26 -0
- package/src/HeadingCaption/index.tsx +36 -0
- package/src/HellenicRepublicLogo/__snapshots__/index.test.tsx.snap +30 -0
- package/src/HellenicRepublicLogo/index.test.tsx +8 -0
- package/src/HellenicRepublicLogo/index.tsx +61 -0
- package/src/HellenicRepublicLogo/logo-el.ts +1 -0
- package/src/HellenicRepublicLogo/logo-en.ts +1 -0
- package/src/HellenicRepublicLogo/logo-inverted-el.ts +1 -0
- package/src/HellenicRepublicLogo/logo-inverted-en.ts +1 -0
- package/src/Hidden/__snapshots__/index.test.tsx.snap +96 -0
- package/src/Hidden/index.test.tsx +50 -0
- package/src/Hidden/index.tsx +51 -0
- package/src/Hint/__snapshots__/index.test.tsx.snap +67 -0
- package/src/Hint/index.test.tsx +17 -0
- package/src/Hint/index.tsx +35 -0
- package/src/LabelContainer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/LabelContainer/index.test.tsx +8 -0
- package/src/LabelContainer/index.tsx +27 -0
- package/src/LabelTitle/__snapshots__/index.test.tsx.snap +193 -0
- package/src/LabelTitle/index.test.tsx +68 -0
- package/src/LabelTitle/index.tsx +44 -0
- package/src/Layout/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Layout/index.test.tsx +8 -0
- package/src/Layout/index.tsx +29 -0
- package/src/LinkBase/__snapshots__/index.test.tsx.snap +50 -0
- package/src/LinkBase/index.test.tsx +16 -0
- package/src/LinkBase/index.tsx +33 -0
- package/src/List/__snapshots__/index.test.tsx.snap +212 -0
- package/src/List/index.test.tsx +61 -0
- package/src/List/index.tsx +40 -0
- package/src/ListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/ListItem/index.test.tsx +8 -0
- package/src/ListItem/index.tsx +26 -0
- package/src/Main/__snapshots__/index.test.tsx.snap +18 -0
- package/src/Main/index.test.tsx +8 -0
- package/src/Main/index.tsx +28 -0
- package/src/Masthead/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Masthead/index.test.tsx +8 -0
- package/src/Masthead/index.tsx +36 -0
- package/src/MastheadBody/__snapshots__/index.test.tsx.snap +16 -0
- package/src/MastheadBody/index.test.tsx +8 -0
- package/src/MastheadBody/index.tsx +27 -0
- package/src/MoreVertIcon/__snapshots__/index.test.tsx.snap +632 -0
- package/src/MoreVertIcon/index.test.tsx +50 -0
- package/src/MoreVertIcon/index.tsx +36 -0
- package/src/NavHorizontal/__snapshots__/index.test.tsx.snap +33 -0
- package/src/NavHorizontal/index.test.tsx +12 -0
- package/src/NavHorizontal/index.tsx +35 -0
- package/src/NavHorizontalList/__snapshots__/index.test.tsx.snap +33 -0
- package/src/NavHorizontalList/index.test.tsx +13 -0
- package/src/NavHorizontalList/index.tsx +39 -0
- package/src/NavHorizontalListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NavHorizontalListItem/index.test.tsx +10 -0
- package/src/NavHorizontalListItem/index.tsx +28 -0
- package/src/NavHorizontalListItemButton/__snapshots__/index.test.tsx.snap +146 -0
- package/src/NavHorizontalListItemButton/index.test.tsx +29 -0
- package/src/NavHorizontalListItemButton/index.tsx +47 -0
- package/src/NavHorizontalListItemLink/__snapshots__/index.test.tsx.snap +121 -0
- package/src/NavHorizontalListItemLink/index.test.tsx +45 -0
- package/src/NavHorizontalListItemLink/index.tsx +44 -0
- package/src/NavMenu/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NavMenu/index.test.tsx +7 -0
- package/src/NavMenu/index.tsx +27 -0
- package/src/NavMenuContainer/__snapshots__/index.test.tsx.snap +29 -0
- package/src/NavMenuContainer/index.test.tsx +7 -0
- package/src/NavMenuContainer/index.tsx +22 -0
- package/src/NavMenuContainerContent/__snapshots__/index.test.tsx.snap +22 -0
- package/src/NavMenuContainerContent/index.test.tsx +9 -0
- package/src/NavMenuContainerContent/index.tsx +23 -0
- package/src/NavMenuContainerContentList/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NavMenuContainerContentList/index.test.tsx +9 -0
- package/src/NavMenuContainerContentList/index.tsx +28 -0
- package/src/NavMenuContainerContentListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NavMenuContainerContentListItem/index.test.tsx +11 -0
- package/src/NavMenuContainerContentListItem/index.tsx +31 -0
- package/src/NavMenuContainerTitle/__snapshots__/index.test.tsx.snap +36 -0
- package/src/NavMenuContainerTitle/index.test.tsx +9 -0
- package/src/NavMenuContainerTitle/index.tsx +26 -0
- package/src/NavVertical/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NavVertical/index.test.tsx +8 -0
- package/src/NavVertical/index.tsx +28 -0
- package/src/NavVerticalItem/__snapshots__/index.test.tsx.snap +50 -0
- package/src/NavVerticalItem/index.test.tsx +20 -0
- package/src/NavVerticalItem/index.tsx +35 -0
- package/src/NormalText/__snapshots__/index.test.tsx.snap +707 -0
- package/src/NormalText/index.test.tsx +346 -0
- package/src/NormalText/index.tsx +62 -0
- package/src/NotificationBannerContainer/__snapshots__/index.test.tsx.snap +68 -0
- package/src/NotificationBannerContainer/index.test.tsx +30 -0
- package/src/NotificationBannerContainer/index.tsx +43 -0
- package/src/NotificationBannerContent/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NotificationBannerContent/index.test.tsx +10 -0
- package/src/NotificationBannerContent/index.tsx +30 -0
- package/src/NotificationBannerHeader/__snapshots__/index.test.tsx.snap +20 -0
- package/src/NotificationBannerHeader/index.test.tsx +10 -0
- package/src/NotificationBannerHeader/index.tsx +35 -0
- package/src/NotificationBannerHeading/__snapshots__/index.test.tsx.snap +16 -0
- package/src/NotificationBannerHeading/index.test.tsx +10 -0
- package/src/NotificationBannerHeading/index.tsx +29 -0
- package/src/NotificationBannerLink/__snapshots__/index.test.tsx.snap +37 -0
- package/src/NotificationBannerLink/index.test.tsx +20 -0
- package/src/NotificationBannerLink/index.tsx +38 -0
- package/src/PageTitle/__snapshots__/index.test.tsx.snap +16 -0
- package/src/PageTitle/index.test.tsx +8 -0
- package/src/PageTitle/index.tsx +19 -0
- package/src/PageTitleCaption/__snapshots__/index.test.tsx.snap +67 -0
- package/src/PageTitleCaption/index.test.tsx +26 -0
- package/src/PageTitleCaption/index.tsx +38 -0
- package/src/PageTitleHeading/__snapshots__/index.test.tsx.snap +84 -0
- package/src/PageTitleHeading/index.test.tsx +32 -0
- package/src/PageTitleHeading/index.tsx +38 -0
- package/src/PageTitleSection/__snapshots__/index.test.tsx.snap +16 -0
- package/src/PageTitleSection/index.test.tsx +8 -0
- package/src/PageTitleSection/index.tsx +21 -0
- package/src/Paragraph/__snapshots__/index.test.tsx.snap +724 -0
- package/src/Paragraph/index.test.tsx +331 -0
- package/src/Paragraph/index.tsx +61 -0
- package/src/PhaseBanner/__snapshots__/index.test.tsx.snap +41 -0
- package/src/PhaseBanner/index.test.tsx +12 -0
- package/src/PhaseBanner/index.tsx +43 -0
- package/src/PhaseBannerHeaderContainer/__snapshots__/inde.test.tsx.snap +16 -0
- package/src/PhaseBannerHeaderContainer/inde.test.tsx +10 -0
- package/src/PhaseBannerHeaderContainer/index.tsx +28 -0
- package/src/PhaseBannerTag/__snapshots__/index.test.tsx.snap +16 -0
- package/src/PhaseBannerTag/index.test.tsx +8 -0
- package/src/PhaseBannerTag/index.tsx +28 -0
- package/src/PhaseBannerText/__snapshots__/index.test.tsx.snap +16 -0
- package/src/PhaseBannerText/index.test.tsx +8 -0
- package/src/PhaseBannerText/index.tsx +29 -0
- package/src/RadioConditional/__snapshots__/index.test.tsx.snap +24 -0
- package/src/RadioConditional/index.test.tsx +8 -0
- package/src/RadioConditional/index.tsx +41 -0
- package/src/RadioContainer/__snapshots__/index.test.tsx.snap +16 -0
- package/src/RadioContainer/index.test.tsx +8 -0
- package/src/RadioContainer/index.tsx +34 -0
- package/src/RadioItem/__snapshots__/index.test.tsx.snap +112 -0
- package/src/RadioItem/index.test.tsx +28 -0
- package/src/RadioItem/index.tsx +51 -0
- package/src/SectionBreak/__snapshots__/index.test.tsx.snap +89 -0
- package/src/SectionBreak/index.test.tsx +28 -0
- package/src/SectionBreak/index.tsx +39 -0
- package/src/SelectContainer/__snapshots__/index.test.tsx.snap +57 -0
- package/src/SelectContainer/index.test.tsx +24 -0
- package/src/SelectContainer/index.tsx +34 -0
- package/src/SelectOption/__snapshots__/index.test.tsx.snap +35 -0
- package/src/SelectOption/index.test.tsx +14 -0
- package/src/SelectOption/index.tsx +41 -0
- package/src/SkipLink/__snapshots__/index.test.tsx.snap +20 -0
- package/src/SkipLink/index.test.tsx +8 -0
- package/src/SkipLink/index.tsx +33 -0
- package/src/SummaryList/__snapshots__/index.test.tsx.snap +16 -0
- package/src/SummaryList/index.test.tsx +8 -0
- package/src/SummaryList/index.tsx +35 -0
- package/src/SummaryListItem/__snapshots__/index.test.tsx.snap +16 -0
- package/src/SummaryListItem/index.test.tsx +8 -0
- package/src/SummaryListItem/index.tsx +28 -0
- package/src/SummaryListItemAction/__snapshots__/index.test.tsx.snap +16 -0
- package/src/SummaryListItemAction/index.test.tsx +10 -0
- package/src/SummaryListItemAction/index.tsx +28 -0
- package/src/SummaryListItemKey/__snapshots__/index.test.tsx.snap +16 -0
- package/src/SummaryListItemKey/index.test.tsx +10 -0
- package/src/SummaryListItemKey/index.tsx +28 -0
- package/src/SummaryListItemValue/__snapshots__/index.test.tsx.snap +16 -0
- package/src/SummaryListItemValue/index.test.tsx +10 -0
- package/src/SummaryListItemValue/index.tsx +27 -0
- package/src/SvgIcon/__snapshots__/index.test.tsx.snap +344 -0
- package/src/SvgIcon/index.test.tsx +62 -0
- package/src/SvgIcon/index.tsx +64 -0
- package/src/Table/__snapshots__/index.test.tsx.snap +84 -0
- package/src/Table/index.test.tsx +24 -0
- package/src/Table/index.tsx +69 -0
- package/src/TableBody/__snapshots__/index.test.tsx.snap +16 -0
- package/src/TableBody/index.test.tsx +8 -0
- package/src/TableBody/index.tsx +27 -0
- package/src/TableCaption/__snapshots__/index.test.tsx.snap +84 -0
- package/src/TableCaption/index.test.tsx +32 -0
- package/src/TableCaption/index.tsx +37 -0
- package/src/TableContainer/__snapshots__/index.test.tsx.snap +33 -0
- package/src/TableContainer/index.test.tsx +13 -0
- package/src/TableContainer/index.tsx +36 -0
- package/src/TableDataCell/__snapshots__/index.test.tsx.snap +33 -0
- package/src/TableDataCell/index.test.tsx +14 -0
- package/src/TableDataCell/index.tsx +38 -0
- package/src/TableHead/__snapshots__/index.test.tsx.snap +16 -0
- package/src/TableHead/index.test.tsx +8 -0
- package/src/TableHead/index.tsx +27 -0
- package/src/TableHeadCell/__snapshots__/index.test.tsx.snap +219 -0
- package/src/TableHeadCell/index.test.tsx +105 -0
- package/src/TableHeadCell/index.tsx +56 -0
- package/src/TableNoDataRow/__snapshots__/index.test.tsx.snap +22 -0
- package/src/TableNoDataRow/index.test.tsx +8 -0
- package/src/TableNoDataRow/index.tsx +31 -0
- package/src/TableRow/__snapshots__/index.test.tsx.snap +16 -0
- package/src/TableRow/index.test.tsx +8 -0
- package/src/TableRow/index.tsx +26 -0
- package/src/Tabs/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Tabs/index.test.tsx +8 -0
- package/src/Tabs/index.tsx +28 -0
- package/src/TabsHeading/__snapshots__/index.test.tsx.snap +50 -0
- package/src/TabsHeading/index.test.tsx +16 -0
- package/src/TabsHeading/index.tsx +36 -0
- package/src/TabsList/__snapshots__/index.test.tsx.snap +18 -0
- package/src/TabsList/index.test.tsx +8 -0
- package/src/TabsList/index.tsx +28 -0
- package/src/TabsListItem/__snapshots__/index.test.tsx.snap +133 -0
- package/src/TabsListItem/index.test.tsx +38 -0
- package/src/TabsListItem/index.tsx +50 -0
- package/src/TabsPanel/__snapshots__/index.test.tsx.snap +83 -0
- package/src/TabsPanel/index.test.tsx +20 -0
- package/src/TabsPanel/index.tsx +37 -0
- package/src/TextArea/__snapshots__/index.test.tsx.snap +113 -0
- package/src/TextArea/index.test.tsx +28 -0
- package/src/TextArea/index.tsx +49 -0
- package/src/TextInput/__snapshots__/index.test.tsx.snap +760 -0
- package/src/TextInput/index.test.tsx +256 -0
- package/src/TextInput/index.tsx +82 -0
- package/src/Top/__snapshots__/index.test.tsx.snap +16 -0
- package/src/Top/index.test.tsx +8 -0
- package/src/Top/index.tsx +27 -0
- package/src/UncheckIcon/__snapshots__/index.test.tsx.snap +452 -0
- package/src/UncheckIcon/index.test.tsx +50 -0
- package/src/UncheckIcon/index.tsx +34 -0
- package/src/Unpurge/index.tsx +112 -0
- package/src/VisuallyHidden/__snapshots__/index.test.tsx.snap +16 -0
- package/src/VisuallyHidden/index.test.tsx +8 -0
- package/src/VisuallyHidden/index.tsx +28 -0
- package/src/WarningText/__snapshots__/index.test.tsx.snap +30 -0
- package/src/WarningText/index.test.tsx +8 -0
- package/src/WarningText/index.tsx +48 -0
- package/src/index.ts +147 -0
- package/src/registry.js +336 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
|
+
|
|
3
|
+
exports[`renders the WarningText with no props 1`] = `
|
|
4
|
+
<ForwardRef(WarningText)>
|
|
5
|
+
<ForwardRef(Base)
|
|
6
|
+
as="div"
|
|
7
|
+
className="govgr-warning-text"
|
|
8
|
+
>
|
|
9
|
+
<div
|
|
10
|
+
className="govgr-warning-text"
|
|
11
|
+
>
|
|
12
|
+
<span
|
|
13
|
+
className="govgr-warning-text__icon"
|
|
14
|
+
>
|
|
15
|
+
!
|
|
16
|
+
</span>
|
|
17
|
+
<strong
|
|
18
|
+
className="govgr-warning-text__text"
|
|
19
|
+
>
|
|
20
|
+
<span
|
|
21
|
+
className="govgr-warning-text__assistive"
|
|
22
|
+
>
|
|
23
|
+
Προσοχή
|
|
24
|
+
</span>
|
|
25
|
+
hello
|
|
26
|
+
</strong>
|
|
27
|
+
</div>
|
|
28
|
+
</ForwardRef(Base)>
|
|
29
|
+
</ForwardRef(WarningText)>
|
|
30
|
+
`;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import Base, { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
import clsx from 'clsx';
|
|
4
|
+
|
|
5
|
+
export interface WarningTextProps extends BaseProps<'div'> {}
|
|
6
|
+
/**
|
|
7
|
+
* WarningText.
|
|
8
|
+
* Use the WarningText component when you need to warn users about something important.
|
|
9
|
+
* The component is used with a text inside it.
|
|
10
|
+
*/
|
|
11
|
+
export const WarningText = React.forwardRef<HTMLDivElement, WarningTextProps>(
|
|
12
|
+
function WarningText({ className, children, ...props }, ref) {
|
|
13
|
+
return (
|
|
14
|
+
<Base
|
|
15
|
+
as="div"
|
|
16
|
+
ref={ref}
|
|
17
|
+
className={clsx(className, {
|
|
18
|
+
'govgr-warning-text': true,
|
|
19
|
+
})}
|
|
20
|
+
{...props}
|
|
21
|
+
>
|
|
22
|
+
<span
|
|
23
|
+
className={clsx({
|
|
24
|
+
'govgr-warning-text__icon': true,
|
|
25
|
+
})}
|
|
26
|
+
>
|
|
27
|
+
!
|
|
28
|
+
</span>
|
|
29
|
+
<strong
|
|
30
|
+
className={clsx({
|
|
31
|
+
'govgr-warning-text__text': true,
|
|
32
|
+
})}
|
|
33
|
+
>
|
|
34
|
+
<span
|
|
35
|
+
className={clsx({
|
|
36
|
+
'govgr-warning-text__assistive': true,
|
|
37
|
+
})}
|
|
38
|
+
>
|
|
39
|
+
Προσοχή
|
|
40
|
+
</span>
|
|
41
|
+
{children}
|
|
42
|
+
</strong>
|
|
43
|
+
</Base>
|
|
44
|
+
);
|
|
45
|
+
}
|
|
46
|
+
);
|
|
47
|
+
|
|
48
|
+
export default WarningText;
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
export * from '@digigov/react-core/Accordion';
|
|
2
|
+
export * from '@digigov/react-core/AccordionControls';
|
|
3
|
+
export * from '@digigov/react-core/AccordionSection';
|
|
4
|
+
export * from '@digigov/react-core/AccordionSectionContent';
|
|
5
|
+
export * from '@digigov/react-core/AccordionSectionHeader';
|
|
6
|
+
export * from '@digigov/react-core/AccordionSectionSummary';
|
|
7
|
+
export * from '@digigov/react-core/AccordionSectionSummaryHeading';
|
|
8
|
+
export * from '@digigov/react-core/ArrowIcon';
|
|
9
|
+
export * from '@digigov/react-core/Aside';
|
|
10
|
+
export * from '@digigov/react-core/BackLink';
|
|
11
|
+
export * from '@digigov/react-core/Blockquote';
|
|
12
|
+
export * from '@digigov/react-core/Bottom';
|
|
13
|
+
export * from '@digigov/react-core/Breadcrumbs';
|
|
14
|
+
export * from '@digigov/react-core/BreadcrumbsList';
|
|
15
|
+
export * from '@digigov/react-core/BreadcrumbsListItem';
|
|
16
|
+
export * from '@digigov/react-core/BurgerIcon';
|
|
17
|
+
export * from '@digigov/react-core/Button';
|
|
18
|
+
export * from '@digigov/react-core/ButtonGroup';
|
|
19
|
+
export * from '@digigov/react-core/ButtonLink';
|
|
20
|
+
export * from '@digigov/react-core/CallToAction';
|
|
21
|
+
export * from '@digigov/react-core/Card';
|
|
22
|
+
export * from '@digigov/react-core/CardAction';
|
|
23
|
+
export * from '@digigov/react-core/CardHeading';
|
|
24
|
+
export * from '@digigov/react-core/CardText';
|
|
25
|
+
export * from '@digigov/react-core/CaretIcon';
|
|
26
|
+
export * from '@digigov/react-core/Checkbox';
|
|
27
|
+
export * from '@digigov/react-core/CheckboxConditional';
|
|
28
|
+
export * from '@digigov/react-core/CheckboxItem';
|
|
29
|
+
export * from '@digigov/react-core/CheckIcon';
|
|
30
|
+
export * from '@digigov/react-core/UncheckIcon';
|
|
31
|
+
export * from '@digigov/react-core/CloseIcon';
|
|
32
|
+
export * from '@digigov/react-core/Confirmation';
|
|
33
|
+
export * from '@digigov/react-core/ConfirmationBody';
|
|
34
|
+
export * from '@digigov/react-core/ConfirmationTitle';
|
|
35
|
+
export * from '@digigov/react-core/Container';
|
|
36
|
+
export * from '@digigov/react-core/CopyrightContainer';
|
|
37
|
+
export * from '@digigov/react-core/DateInputContainer';
|
|
38
|
+
export * from '@digigov/react-core/DateInputItem';
|
|
39
|
+
export * from '@digigov/react-core/Details';
|
|
40
|
+
export * from '@digigov/react-core/DetailsContent';
|
|
41
|
+
export * from '@digigov/react-core/DetailsSummary';
|
|
42
|
+
export * from '@digigov/react-core/ErrorMessage';
|
|
43
|
+
export * from '@digigov/react-core/ErrorSummary';
|
|
44
|
+
export * from '@digigov/react-core/Fieldset';
|
|
45
|
+
export * from '@digigov/react-core/FieldsetLegend';
|
|
46
|
+
export * from '@digigov/react-core/FileUpload';
|
|
47
|
+
export * from '@digigov/react-core/Footer';
|
|
48
|
+
export * from '@digigov/react-core/FooterContainer';
|
|
49
|
+
export * from '@digigov/react-core/FooterContent';
|
|
50
|
+
export * from '@digigov/react-core/FooterContentLogos';
|
|
51
|
+
export * from '@digigov/react-core/FooterHeading';
|
|
52
|
+
export * from '@digigov/react-core/FooterImage';
|
|
53
|
+
export * from '@digigov/react-core/FooterInlineList';
|
|
54
|
+
export * from '@digigov/react-core/FooterInlineListItem';
|
|
55
|
+
export * from '@digigov/react-core/FooterLink';
|
|
56
|
+
export * from '@digigov/react-core/FooterList';
|
|
57
|
+
export * from '@digigov/react-core/FooterListItem';
|
|
58
|
+
export * from '@digigov/react-core/FooterMeta';
|
|
59
|
+
export * from '@digigov/react-core/FooterMetaItem';
|
|
60
|
+
export * from '@digigov/react-core/FooterNavigation';
|
|
61
|
+
export * from '@digigov/react-core/FooterSection';
|
|
62
|
+
export * from '@digigov/react-core/FieldContainer';
|
|
63
|
+
export * from '@digigov/react-core/GovGRLogo';
|
|
64
|
+
export * from '@digigov/react-core/Grid';
|
|
65
|
+
export * from '@digigov/react-core/Header';
|
|
66
|
+
export * from '@digigov/react-core/HeaderContent';
|
|
67
|
+
export * from '@digigov/react-core/HeaderLogo';
|
|
68
|
+
export * from '@digigov/react-core/HeaderSecondaryLogo';
|
|
69
|
+
export * from '@digigov/react-core/HeaderSection';
|
|
70
|
+
export * from '@digigov/react-core/HeaderSubtitle';
|
|
71
|
+
export * from '@digigov/react-core/HeaderTitle';
|
|
72
|
+
export * from '@digigov/react-core/Heading';
|
|
73
|
+
export * from '@digigov/react-core/HeadingCaption';
|
|
74
|
+
export * from '@digigov/react-core/HellenicRepublicLogo';
|
|
75
|
+
export * from '@digigov/react-core/Hidden';
|
|
76
|
+
export * from '@digigov/react-core/Hint';
|
|
77
|
+
export * from '@digigov/react-core/LabelContainer';
|
|
78
|
+
export * from '@digigov/react-core/LabelTitle';
|
|
79
|
+
export * from '@digigov/react-core/Layout';
|
|
80
|
+
export * from '@digigov/react-core/LinkBase';
|
|
81
|
+
export * from '@digigov/react-core/List';
|
|
82
|
+
export * from '@digigov/react-core/ListItem';
|
|
83
|
+
export * from '@digigov/react-core/Main';
|
|
84
|
+
export * from '@digigov/react-core/Masthead';
|
|
85
|
+
export * from '@digigov/react-core/MastheadBody';
|
|
86
|
+
export * from '@digigov/react-core/MoreVertIcon';
|
|
87
|
+
export * from '@digigov/react-core/NavHorizontal';
|
|
88
|
+
export * from '@digigov/react-core/NavHorizontalList';
|
|
89
|
+
export * from '@digigov/react-core/NavHorizontalListItem';
|
|
90
|
+
export * from '@digigov/react-core/NavHorizontalListItemLink';
|
|
91
|
+
export * from '@digigov/react-core/NavHorizontalListItemButton';
|
|
92
|
+
export * from '@digigov/react-core/NavMenu';
|
|
93
|
+
export * from '@digigov/react-core/NavMenuContainer';
|
|
94
|
+
export * from '@digigov/react-core/NavMenuContainerContent';
|
|
95
|
+
export * from '@digigov/react-core/NavMenuContainerContentList';
|
|
96
|
+
export * from '@digigov/react-core/NavMenuContainerContentListItem';
|
|
97
|
+
export * from '@digigov/react-core/NavMenuContainerTitle';
|
|
98
|
+
export * from '@digigov/react-core/NavVertical';
|
|
99
|
+
export * from '@digigov/react-core/NavVerticalItem';
|
|
100
|
+
export * from '@digigov/react-core/NormalText';
|
|
101
|
+
export * from '@digigov/react-core/NotificationBannerContainer';
|
|
102
|
+
export * from '@digigov/react-core/NotificationBannerContent';
|
|
103
|
+
export * from '@digigov/react-core/NotificationBannerHeader';
|
|
104
|
+
export * from '@digigov/react-core/NotificationBannerHeading';
|
|
105
|
+
export * from '@digigov/react-core/NotificationBannerLink';
|
|
106
|
+
export * from '@digigov/react-core/PageTitle';
|
|
107
|
+
export * from '@digigov/react-core/PageTitleCaption';
|
|
108
|
+
export * from '@digigov/react-core/PageTitleHeading';
|
|
109
|
+
export * from '@digigov/react-core/PageTitleSection';
|
|
110
|
+
export * from '@digigov/react-core/Paragraph';
|
|
111
|
+
export * from '@digigov/react-core/PhaseBannerHeaderContainer';
|
|
112
|
+
export * from '@digigov/react-core/PhaseBanner';
|
|
113
|
+
export * from '@digigov/react-core/PhaseBannerTag';
|
|
114
|
+
export * from '@digigov/react-core/PhaseBannerText';
|
|
115
|
+
export * from '@digigov/react-core/RadioContainer';
|
|
116
|
+
export * from '@digigov/react-core/RadioItem';
|
|
117
|
+
export * from '@digigov/react-core/RadioConditional';
|
|
118
|
+
export * from '@digigov/react-core/SectionBreak';
|
|
119
|
+
export * from '@digigov/react-core/SelectContainer';
|
|
120
|
+
export * from '@digigov/react-core/SelectOption';
|
|
121
|
+
export * from '@digigov/react-core/SkipLink';
|
|
122
|
+
export * from '@digigov/react-core/SummaryList';
|
|
123
|
+
export * from '@digigov/react-core/SummaryListItem';
|
|
124
|
+
export * from '@digigov/react-core/SummaryListItemAction';
|
|
125
|
+
export * from '@digigov/react-core/SummaryListItemKey';
|
|
126
|
+
export * from '@digigov/react-core/SummaryListItemValue';
|
|
127
|
+
export * from '@digigov/react-core/SvgIcon';
|
|
128
|
+
export * from '@digigov/react-core/Table';
|
|
129
|
+
export * from '@digigov/react-core/TableBody';
|
|
130
|
+
export * from '@digigov/react-core/TableCaption';
|
|
131
|
+
export * from '@digigov/react-core/TableContainer';
|
|
132
|
+
export * from '@digigov/react-core/TableDataCell';
|
|
133
|
+
export * from '@digigov/react-core/TableNoDataRow';
|
|
134
|
+
export * from '@digigov/react-core/TableHead';
|
|
135
|
+
export * from '@digigov/react-core/TableHeadCell';
|
|
136
|
+
export * from '@digigov/react-core/TableRow';
|
|
137
|
+
export * from '@digigov/react-core/Tabs';
|
|
138
|
+
export * from '@digigov/react-core/TabsHeading';
|
|
139
|
+
export * from '@digigov/react-core/TabsList';
|
|
140
|
+
export * from '@digigov/react-core/TabsListItem';
|
|
141
|
+
export * from '@digigov/react-core/TabsPanel';
|
|
142
|
+
export * from '@digigov/react-core/TextArea';
|
|
143
|
+
export * from '@digigov/react-core/TextInput';
|
|
144
|
+
export * from '@digigov/react-core/Top';
|
|
145
|
+
export * from '@digigov/react-core/Base';
|
|
146
|
+
export * from '@digigov/react-core/VisuallyHidden';
|
|
147
|
+
export * from '@digigov/react-core/WarningText';
|
package/src/registry.js
ADDED
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
|
|
2
|
+
import * as _digigov_react_core_Accordion from '@digigov/react-core/Accordion';
|
|
3
|
+
import * as _digigov_react_core_AccordionControls from '@digigov/react-core/AccordionControls';
|
|
4
|
+
import * as _digigov_react_core_AccordionSection from '@digigov/react-core/AccordionSection';
|
|
5
|
+
import * as _digigov_react_core_AccordionSectionContent from '@digigov/react-core/AccordionSectionContent';
|
|
6
|
+
import * as _digigov_react_core_AccordionSectionHeader from '@digigov/react-core/AccordionSectionHeader';
|
|
7
|
+
import * as _digigov_react_core_AccordionSectionSummary from '@digigov/react-core/AccordionSectionSummary';
|
|
8
|
+
import * as _digigov_react_core_AccordionSectionSummaryHeading from '@digigov/react-core/AccordionSectionSummaryHeading';
|
|
9
|
+
import * as _digigov_react_core_ArrowIcon from '@digigov/react-core/ArrowIcon';
|
|
10
|
+
import * as _digigov_react_core_Aside from '@digigov/react-core/Aside';
|
|
11
|
+
import * as _digigov_react_core_BackLink from '@digigov/react-core/BackLink';
|
|
12
|
+
import * as _digigov_react_core_Base from '@digigov/react-core/Base';
|
|
13
|
+
import * as _digigov_react_core_Blockquote from '@digigov/react-core/Blockquote';
|
|
14
|
+
import * as _digigov_react_core_Bottom from '@digigov/react-core/Bottom';
|
|
15
|
+
import * as _digigov_react_core_Breadcrumbs from '@digigov/react-core/Breadcrumbs';
|
|
16
|
+
import * as _digigov_react_core_BreadcrumbsList from '@digigov/react-core/BreadcrumbsList';
|
|
17
|
+
import * as _digigov_react_core_BreadcrumbsListItem from '@digigov/react-core/BreadcrumbsListItem';
|
|
18
|
+
import * as _digigov_react_core_BurgerIcon from '@digigov/react-core/BurgerIcon';
|
|
19
|
+
import * as _digigov_react_core_Button from '@digigov/react-core/Button';
|
|
20
|
+
import * as _digigov_react_core_ButtonGroup from '@digigov/react-core/ButtonGroup';
|
|
21
|
+
import * as _digigov_react_core_ButtonLink from '@digigov/react-core/ButtonLink';
|
|
22
|
+
import * as _digigov_react_core_CallToAction from '@digigov/react-core/CallToAction';
|
|
23
|
+
import * as _digigov_react_core_Card from '@digigov/react-core/Card';
|
|
24
|
+
import * as _digigov_react_core_CardAction from '@digigov/react-core/CardAction';
|
|
25
|
+
import * as _digigov_react_core_CardHeading from '@digigov/react-core/CardHeading';
|
|
26
|
+
import * as _digigov_react_core_CardText from '@digigov/react-core/CardText';
|
|
27
|
+
import * as _digigov_react_core_CaretIcon from '@digigov/react-core/CaretIcon';
|
|
28
|
+
import * as _digigov_react_core_Checkbox from '@digigov/react-core/Checkbox';
|
|
29
|
+
import * as _digigov_react_core_CheckboxConditional from '@digigov/react-core/CheckboxConditional';
|
|
30
|
+
import * as _digigov_react_core_CheckboxItem from '@digigov/react-core/CheckboxItem';
|
|
31
|
+
import * as _digigov_react_core_CheckIcon from '@digigov/react-core/CheckIcon';
|
|
32
|
+
import * as _digigov_react_core_CloseIcon from '@digigov/react-core/CloseIcon';
|
|
33
|
+
import * as _digigov_react_core_Confirmation from '@digigov/react-core/Confirmation';
|
|
34
|
+
import * as _digigov_react_core_ConfirmationBody from '@digigov/react-core/ConfirmationBody';
|
|
35
|
+
import * as _digigov_react_core_ConfirmationTitle from '@digigov/react-core/ConfirmationTitle';
|
|
36
|
+
import * as _digigov_react_core_Container from '@digigov/react-core/Container';
|
|
37
|
+
import * as _digigov_react_core_CopyrightContainer from '@digigov/react-core/CopyrightContainer';
|
|
38
|
+
import * as _digigov_react_core_DateInputContainer from '@digigov/react-core/DateInputContainer';
|
|
39
|
+
import * as _digigov_react_core_DateInputItem from '@digigov/react-core/DateInputItem';
|
|
40
|
+
import * as _digigov_react_core_Details from '@digigov/react-core/Details';
|
|
41
|
+
import * as _digigov_react_core_DetailsContent from '@digigov/react-core/DetailsContent';
|
|
42
|
+
import * as _digigov_react_core_DetailsSummary from '@digigov/react-core/DetailsSummary';
|
|
43
|
+
import * as _digigov_react_core_ErrorMessage from '@digigov/react-core/ErrorMessage';
|
|
44
|
+
import * as _digigov_react_core_ErrorSummary from '@digigov/react-core/ErrorSummary';
|
|
45
|
+
import * as _digigov_react_core_FieldContainer from '@digigov/react-core/FieldContainer';
|
|
46
|
+
import * as _digigov_react_core_Fieldset from '@digigov/react-core/Fieldset';
|
|
47
|
+
import * as _digigov_react_core_FieldsetLegend from '@digigov/react-core/FieldsetLegend';
|
|
48
|
+
import * as _digigov_react_core_FileUpload from '@digigov/react-core/FileUpload';
|
|
49
|
+
import * as _digigov_react_core_FileUploadContainer from '@digigov/react-core/FileUploadContainer';
|
|
50
|
+
import * as _digigov_react_core_Footer from '@digigov/react-core/Footer';
|
|
51
|
+
import * as _digigov_react_core_FooterContainer from '@digigov/react-core/FooterContainer';
|
|
52
|
+
import * as _digigov_react_core_FooterContent from '@digigov/react-core/FooterContent';
|
|
53
|
+
import * as _digigov_react_core_FooterContentLogos from '@digigov/react-core/FooterContentLogos';
|
|
54
|
+
import * as _digigov_react_core_FooterHeading from '@digigov/react-core/FooterHeading';
|
|
55
|
+
import * as _digigov_react_core_FooterImage from '@digigov/react-core/FooterImage';
|
|
56
|
+
import * as _digigov_react_core_FooterInlineList from '@digigov/react-core/FooterInlineList';
|
|
57
|
+
import * as _digigov_react_core_FooterInlineListItem from '@digigov/react-core/FooterInlineListItem';
|
|
58
|
+
import * as _digigov_react_core_FooterLink from '@digigov/react-core/FooterLink';
|
|
59
|
+
import * as _digigov_react_core_FooterList from '@digigov/react-core/FooterList';
|
|
60
|
+
import * as _digigov_react_core_FooterListItem from '@digigov/react-core/FooterListItem';
|
|
61
|
+
import * as _digigov_react_core_FooterMeta from '@digigov/react-core/FooterMeta';
|
|
62
|
+
import * as _digigov_react_core_FooterMetaItem from '@digigov/react-core/FooterMetaItem';
|
|
63
|
+
import * as _digigov_react_core_FooterNavigation from '@digigov/react-core/FooterNavigation';
|
|
64
|
+
import * as _digigov_react_core_FooterSection from '@digigov/react-core/FooterSection';
|
|
65
|
+
import * as _digigov_react_core_Form from '@digigov/react-core/Form';
|
|
66
|
+
import * as _digigov_react_core_GovGRLogo_govgr_logo_blue_base64 from '@digigov/react-core/GovGRLogo/govgr-logo-blue-base64';
|
|
67
|
+
import * as _digigov_react_core_GovGRLogo from '@digigov/react-core/GovGRLogo';
|
|
68
|
+
import * as _digigov_react_core_Grid from '@digigov/react-core/Grid';
|
|
69
|
+
import * as _digigov_react_core_Header from '@digigov/react-core/Header';
|
|
70
|
+
import * as _digigov_react_core_HeaderContent from '@digigov/react-core/HeaderContent';
|
|
71
|
+
import * as _digigov_react_core_HeaderLogo from '@digigov/react-core/HeaderLogo';
|
|
72
|
+
import * as _digigov_react_core_HeaderNavMenuContent from '@digigov/react-core/HeaderNavMenuContent';
|
|
73
|
+
import * as _digigov_react_core_HeaderSecondaryLogo from '@digigov/react-core/HeaderSecondaryLogo';
|
|
74
|
+
import * as _digigov_react_core_HeaderSection from '@digigov/react-core/HeaderSection';
|
|
75
|
+
import * as _digigov_react_core_HeaderSubtitle from '@digigov/react-core/HeaderSubtitle';
|
|
76
|
+
import * as _digigov_react_core_HeaderTitle from '@digigov/react-core/HeaderTitle';
|
|
77
|
+
import * as _digigov_react_core_Heading from '@digigov/react-core/Heading';
|
|
78
|
+
import * as _digigov_react_core_HeadingCaption from '@digigov/react-core/HeadingCaption';
|
|
79
|
+
import * as _digigov_react_core_HellenicRepublicLogo from '@digigov/react-core/HellenicRepublicLogo';
|
|
80
|
+
import * as _digigov_react_core_HellenicRepublicLogo_logo_el from '@digigov/react-core/HellenicRepublicLogo/logo-el';
|
|
81
|
+
import * as _digigov_react_core_HellenicRepublicLogo_logo_en from '@digigov/react-core/HellenicRepublicLogo/logo-en';
|
|
82
|
+
import * as _digigov_react_core_HellenicRepublicLogo_logo_inverted_el from '@digigov/react-core/HellenicRepublicLogo/logo-inverted-el';
|
|
83
|
+
import * as _digigov_react_core_HellenicRepublicLogo_logo_inverted_en from '@digigov/react-core/HellenicRepublicLogo/logo-inverted-en';
|
|
84
|
+
import * as _digigov_react_core_Hidden from '@digigov/react-core/Hidden';
|
|
85
|
+
import * as _digigov_react_core_Hint from '@digigov/react-core/Hint';
|
|
86
|
+
import * as _digigov_react_core from '@digigov/react-core';
|
|
87
|
+
import * as _digigov_react_core_LabelContainer from '@digigov/react-core/LabelContainer';
|
|
88
|
+
import * as _digigov_react_core_LabelTitle from '@digigov/react-core/LabelTitle';
|
|
89
|
+
import * as _digigov_react_core_Layout from '@digigov/react-core/Layout';
|
|
90
|
+
import * as _digigov_react_core_LinkBase from '@digigov/react-core/LinkBase';
|
|
91
|
+
import * as _digigov_react_core_List from '@digigov/react-core/List';
|
|
92
|
+
import * as _digigov_react_core_ListItem from '@digigov/react-core/ListItem';
|
|
93
|
+
import * as _digigov_react_core_Main from '@digigov/react-core/Main';
|
|
94
|
+
import * as _digigov_react_core_Masthead from '@digigov/react-core/Masthead';
|
|
95
|
+
import * as _digigov_react_core_MastheadBody from '@digigov/react-core/MastheadBody';
|
|
96
|
+
import * as _digigov_react_core_MoreVertIcon from '@digigov/react-core/MoreVertIcon';
|
|
97
|
+
import * as _digigov_react_core_NavHorizontal from '@digigov/react-core/NavHorizontal';
|
|
98
|
+
import * as _digigov_react_core_NavHorizontalList from '@digigov/react-core/NavHorizontalList';
|
|
99
|
+
import * as _digigov_react_core_NavHorizontalListItem from '@digigov/react-core/NavHorizontalListItem';
|
|
100
|
+
import * as _digigov_react_core_NavHorizontalListItemButton from '@digigov/react-core/NavHorizontalListItemButton';
|
|
101
|
+
import * as _digigov_react_core_NavHorizontalListItemLink from '@digigov/react-core/NavHorizontalListItemLink';
|
|
102
|
+
import * as _digigov_react_core_NavMenu from '@digigov/react-core/NavMenu';
|
|
103
|
+
import * as _digigov_react_core_NavMenuContainer from '@digigov/react-core/NavMenuContainer';
|
|
104
|
+
import * as _digigov_react_core_NavMenuContainerContent from '@digigov/react-core/NavMenuContainerContent';
|
|
105
|
+
import * as _digigov_react_core_NavMenuContainerContentList from '@digigov/react-core/NavMenuContainerContentList';
|
|
106
|
+
import * as _digigov_react_core_NavMenuContainerContentListItem from '@digigov/react-core/NavMenuContainerContentListItem';
|
|
107
|
+
import * as _digigov_react_core_NavMenuContainerTitle from '@digigov/react-core/NavMenuContainerTitle';
|
|
108
|
+
import * as _digigov_react_core_NavVertical from '@digigov/react-core/NavVertical';
|
|
109
|
+
import * as _digigov_react_core_NavVerticalItem from '@digigov/react-core/NavVerticalItem';
|
|
110
|
+
import * as _digigov_react_core_NormalText from '@digigov/react-core/NormalText';
|
|
111
|
+
import * as _digigov_react_core_NotificationBannerContainer from '@digigov/react-core/NotificationBannerContainer';
|
|
112
|
+
import * as _digigov_react_core_NotificationBannerContent from '@digigov/react-core/NotificationBannerContent';
|
|
113
|
+
import * as _digigov_react_core_NotificationBannerHeader from '@digigov/react-core/NotificationBannerHeader';
|
|
114
|
+
import * as _digigov_react_core_NotificationBannerHeading from '@digigov/react-core/NotificationBannerHeading';
|
|
115
|
+
import * as _digigov_react_core_NotificationBannerLink from '@digigov/react-core/NotificationBannerLink';
|
|
116
|
+
import * as _digigov_react_core_PageTitle from '@digigov/react-core/PageTitle';
|
|
117
|
+
import * as _digigov_react_core_PageTitleCaption from '@digigov/react-core/PageTitleCaption';
|
|
118
|
+
import * as _digigov_react_core_PageTitleHeading from '@digigov/react-core/PageTitleHeading';
|
|
119
|
+
import * as _digigov_react_core_PageTitleSection from '@digigov/react-core/PageTitleSection';
|
|
120
|
+
import * as _digigov_react_core_Paragraph from '@digigov/react-core/Paragraph';
|
|
121
|
+
import * as _digigov_react_core_PhaseBanner from '@digigov/react-core/PhaseBanner';
|
|
122
|
+
import * as _digigov_react_core_PhaseBannerHeaderContainer from '@digigov/react-core/PhaseBannerHeaderContainer';
|
|
123
|
+
import * as _digigov_react_core_PhaseBannerTag from '@digigov/react-core/PhaseBannerTag';
|
|
124
|
+
import * as _digigov_react_core_PhaseBannerText from '@digigov/react-core/PhaseBannerText';
|
|
125
|
+
import * as _digigov_react_core_RadioConditional from '@digigov/react-core/RadioConditional';
|
|
126
|
+
import * as _digigov_react_core_RadioContainer from '@digigov/react-core/RadioContainer';
|
|
127
|
+
import * as _digigov_react_core_RadioItem from '@digigov/react-core/RadioItem';
|
|
128
|
+
import * as _digigov_react_core_SectionBreak from '@digigov/react-core/SectionBreak';
|
|
129
|
+
import * as _digigov_react_core_SelectContainer from '@digigov/react-core/SelectContainer';
|
|
130
|
+
import * as _digigov_react_core_SelectOption from '@digigov/react-core/SelectOption';
|
|
131
|
+
import * as _digigov_react_core_SkipLink from '@digigov/react-core/SkipLink';
|
|
132
|
+
import * as _digigov_react_core_SummaryList from '@digigov/react-core/SummaryList';
|
|
133
|
+
import * as _digigov_react_core_SummaryListItem from '@digigov/react-core/SummaryListItem';
|
|
134
|
+
import * as _digigov_react_core_SummaryListItemAction from '@digigov/react-core/SummaryListItemAction';
|
|
135
|
+
import * as _digigov_react_core_SummaryListItemKey from '@digigov/react-core/SummaryListItemKey';
|
|
136
|
+
import * as _digigov_react_core_SummaryListItemValue from '@digigov/react-core/SummaryListItemValue';
|
|
137
|
+
import * as _digigov_react_core_SvgIcon from '@digigov/react-core/SvgIcon';
|
|
138
|
+
import * as _digigov_react_core_Table from '@digigov/react-core/Table';
|
|
139
|
+
import * as _digigov_react_core_TableBody from '@digigov/react-core/TableBody';
|
|
140
|
+
import * as _digigov_react_core_TableCaption from '@digigov/react-core/TableCaption';
|
|
141
|
+
import * as _digigov_react_core_TableContainer from '@digigov/react-core/TableContainer';
|
|
142
|
+
import * as _digigov_react_core_TableDataCell from '@digigov/react-core/TableDataCell';
|
|
143
|
+
import * as _digigov_react_core_TableHead from '@digigov/react-core/TableHead';
|
|
144
|
+
import * as _digigov_react_core_TableHeadCell from '@digigov/react-core/TableHeadCell';
|
|
145
|
+
import * as _digigov_react_core_TableNoDataRow from '@digigov/react-core/TableNoDataRow';
|
|
146
|
+
import * as _digigov_react_core_TableRow from '@digigov/react-core/TableRow';
|
|
147
|
+
import * as _digigov_react_core_Tabs from '@digigov/react-core/Tabs';
|
|
148
|
+
import * as _digigov_react_core_TabsHeading from '@digigov/react-core/TabsHeading';
|
|
149
|
+
import * as _digigov_react_core_TabsList from '@digigov/react-core/TabsList';
|
|
150
|
+
import * as _digigov_react_core_TabsListItem from '@digigov/react-core/TabsListItem';
|
|
151
|
+
import * as _digigov_react_core_TabsPanel from '@digigov/react-core/TabsPanel';
|
|
152
|
+
import * as _digigov_react_core_TextArea from '@digigov/react-core/TextArea';
|
|
153
|
+
import * as _digigov_react_core_TextInput from '@digigov/react-core/TextInput';
|
|
154
|
+
import * as _digigov_react_core_Top from '@digigov/react-core/Top';
|
|
155
|
+
import * as _digigov_react_core_UncheckIcon from '@digigov/react-core/UncheckIcon';
|
|
156
|
+
import * as _digigov_react_core_Unpurge from '@digigov/react-core/Unpurge';
|
|
157
|
+
import * as _digigov_react_core_VisuallyHidden from '@digigov/react-core/VisuallyHidden';
|
|
158
|
+
import * as _digigov_react_core_WarningText from '@digigov/react-core/WarningText'
|
|
159
|
+
function lazyImport(pkgImport) {
|
|
160
|
+
return new Proxy(
|
|
161
|
+
{},
|
|
162
|
+
{
|
|
163
|
+
get: (_target, name) => {
|
|
164
|
+
if (name === '__esModule' || name === 'default') {
|
|
165
|
+
return pkgImport.default;
|
|
166
|
+
} else if(
|
|
167
|
+
name === '*'
|
|
168
|
+
) {
|
|
169
|
+
return pkgImport;
|
|
170
|
+
} else {
|
|
171
|
+
return pkgImport[name];
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
}
|
|
175
|
+
)
|
|
176
|
+
}
|
|
177
|
+
export default {
|
|
178
|
+
'@digigov/react-core/Accordion': lazyImport(_digigov_react_core_Accordion),
|
|
179
|
+
'@digigov/react-core/AccordionControls': lazyImport(_digigov_react_core_AccordionControls),
|
|
180
|
+
'@digigov/react-core/AccordionSection': lazyImport(_digigov_react_core_AccordionSection),
|
|
181
|
+
'@digigov/react-core/AccordionSectionContent': lazyImport(_digigov_react_core_AccordionSectionContent),
|
|
182
|
+
'@digigov/react-core/AccordionSectionHeader': lazyImport(_digigov_react_core_AccordionSectionHeader),
|
|
183
|
+
'@digigov/react-core/AccordionSectionSummary': lazyImport(_digigov_react_core_AccordionSectionSummary),
|
|
184
|
+
'@digigov/react-core/AccordionSectionSummaryHeading': lazyImport(_digigov_react_core_AccordionSectionSummaryHeading),
|
|
185
|
+
'@digigov/react-core/ArrowIcon': lazyImport(_digigov_react_core_ArrowIcon),
|
|
186
|
+
'@digigov/react-core/Aside': lazyImport(_digigov_react_core_Aside),
|
|
187
|
+
'@digigov/react-core/BackLink': lazyImport(_digigov_react_core_BackLink),
|
|
188
|
+
'@digigov/react-core/Base': lazyImport(_digigov_react_core_Base),
|
|
189
|
+
'@digigov/react-core/Blockquote': lazyImport(_digigov_react_core_Blockquote),
|
|
190
|
+
'@digigov/react-core/Bottom': lazyImport(_digigov_react_core_Bottom),
|
|
191
|
+
'@digigov/react-core/Breadcrumbs': lazyImport(_digigov_react_core_Breadcrumbs),
|
|
192
|
+
'@digigov/react-core/BreadcrumbsList': lazyImport(_digigov_react_core_BreadcrumbsList),
|
|
193
|
+
'@digigov/react-core/BreadcrumbsListItem': lazyImport(_digigov_react_core_BreadcrumbsListItem),
|
|
194
|
+
'@digigov/react-core/BurgerIcon': lazyImport(_digigov_react_core_BurgerIcon),
|
|
195
|
+
'@digigov/react-core/Button': lazyImport(_digigov_react_core_Button),
|
|
196
|
+
'@digigov/react-core/ButtonGroup': lazyImport(_digigov_react_core_ButtonGroup),
|
|
197
|
+
'@digigov/react-core/ButtonLink': lazyImport(_digigov_react_core_ButtonLink),
|
|
198
|
+
'@digigov/react-core/CallToAction': lazyImport(_digigov_react_core_CallToAction),
|
|
199
|
+
'@digigov/react-core/Card': lazyImport(_digigov_react_core_Card),
|
|
200
|
+
'@digigov/react-core/CardAction': lazyImport(_digigov_react_core_CardAction),
|
|
201
|
+
'@digigov/react-core/CardHeading': lazyImport(_digigov_react_core_CardHeading),
|
|
202
|
+
'@digigov/react-core/CardText': lazyImport(_digigov_react_core_CardText),
|
|
203
|
+
'@digigov/react-core/CaretIcon': lazyImport(_digigov_react_core_CaretIcon),
|
|
204
|
+
'@digigov/react-core/Checkbox': lazyImport(_digigov_react_core_Checkbox),
|
|
205
|
+
'@digigov/react-core/CheckboxConditional': lazyImport(_digigov_react_core_CheckboxConditional),
|
|
206
|
+
'@digigov/react-core/CheckboxItem': lazyImport(_digigov_react_core_CheckboxItem),
|
|
207
|
+
'@digigov/react-core/CheckIcon': lazyImport(_digigov_react_core_CheckIcon),
|
|
208
|
+
'@digigov/react-core/CloseIcon': lazyImport(_digigov_react_core_CloseIcon),
|
|
209
|
+
'@digigov/react-core/Confirmation': lazyImport(_digigov_react_core_Confirmation),
|
|
210
|
+
'@digigov/react-core/ConfirmationBody': lazyImport(_digigov_react_core_ConfirmationBody),
|
|
211
|
+
'@digigov/react-core/ConfirmationTitle': lazyImport(_digigov_react_core_ConfirmationTitle),
|
|
212
|
+
'@digigov/react-core/Container': lazyImport(_digigov_react_core_Container),
|
|
213
|
+
'@digigov/react-core/CopyrightContainer': lazyImport(_digigov_react_core_CopyrightContainer),
|
|
214
|
+
'@digigov/react-core/DateInputContainer': lazyImport(_digigov_react_core_DateInputContainer),
|
|
215
|
+
'@digigov/react-core/DateInputItem': lazyImport(_digigov_react_core_DateInputItem),
|
|
216
|
+
'@digigov/react-core/Details': lazyImport(_digigov_react_core_Details),
|
|
217
|
+
'@digigov/react-core/DetailsContent': lazyImport(_digigov_react_core_DetailsContent),
|
|
218
|
+
'@digigov/react-core/DetailsSummary': lazyImport(_digigov_react_core_DetailsSummary),
|
|
219
|
+
'@digigov/react-core/ErrorMessage': lazyImport(_digigov_react_core_ErrorMessage),
|
|
220
|
+
'@digigov/react-core/ErrorSummary': lazyImport(_digigov_react_core_ErrorSummary),
|
|
221
|
+
'@digigov/react-core/FieldContainer': lazyImport(_digigov_react_core_FieldContainer),
|
|
222
|
+
'@digigov/react-core/Fieldset': lazyImport(_digigov_react_core_Fieldset),
|
|
223
|
+
'@digigov/react-core/FieldsetLegend': lazyImport(_digigov_react_core_FieldsetLegend),
|
|
224
|
+
'@digigov/react-core/FileUpload': lazyImport(_digigov_react_core_FileUpload),
|
|
225
|
+
'@digigov/react-core/FileUploadContainer': lazyImport(_digigov_react_core_FileUploadContainer),
|
|
226
|
+
'@digigov/react-core/Footer': lazyImport(_digigov_react_core_Footer),
|
|
227
|
+
'@digigov/react-core/FooterContainer': lazyImport(_digigov_react_core_FooterContainer),
|
|
228
|
+
'@digigov/react-core/FooterContent': lazyImport(_digigov_react_core_FooterContent),
|
|
229
|
+
'@digigov/react-core/FooterContentLogos': lazyImport(_digigov_react_core_FooterContentLogos),
|
|
230
|
+
'@digigov/react-core/FooterHeading': lazyImport(_digigov_react_core_FooterHeading),
|
|
231
|
+
'@digigov/react-core/FooterImage': lazyImport(_digigov_react_core_FooterImage),
|
|
232
|
+
'@digigov/react-core/FooterInlineList': lazyImport(_digigov_react_core_FooterInlineList),
|
|
233
|
+
'@digigov/react-core/FooterInlineListItem': lazyImport(_digigov_react_core_FooterInlineListItem),
|
|
234
|
+
'@digigov/react-core/FooterLink': lazyImport(_digigov_react_core_FooterLink),
|
|
235
|
+
'@digigov/react-core/FooterList': lazyImport(_digigov_react_core_FooterList),
|
|
236
|
+
'@digigov/react-core/FooterListItem': lazyImport(_digigov_react_core_FooterListItem),
|
|
237
|
+
'@digigov/react-core/FooterMeta': lazyImport(_digigov_react_core_FooterMeta),
|
|
238
|
+
'@digigov/react-core/FooterMetaItem': lazyImport(_digigov_react_core_FooterMetaItem),
|
|
239
|
+
'@digigov/react-core/FooterNavigation': lazyImport(_digigov_react_core_FooterNavigation),
|
|
240
|
+
'@digigov/react-core/FooterSection': lazyImport(_digigov_react_core_FooterSection),
|
|
241
|
+
'@digigov/react-core/Form': lazyImport(_digigov_react_core_Form),
|
|
242
|
+
'@digigov/react-core/GovGRLogo/govgr-logo-blue-base64': lazyImport(_digigov_react_core_GovGRLogo_govgr_logo_blue_base64),
|
|
243
|
+
'@digigov/react-core/GovGRLogo': lazyImport(_digigov_react_core_GovGRLogo),
|
|
244
|
+
'@digigov/react-core/Grid': lazyImport(_digigov_react_core_Grid),
|
|
245
|
+
'@digigov/react-core/Header': lazyImport(_digigov_react_core_Header),
|
|
246
|
+
'@digigov/react-core/HeaderContent': lazyImport(_digigov_react_core_HeaderContent),
|
|
247
|
+
'@digigov/react-core/HeaderLogo': lazyImport(_digigov_react_core_HeaderLogo),
|
|
248
|
+
'@digigov/react-core/HeaderNavMenuContent': lazyImport(_digigov_react_core_HeaderNavMenuContent),
|
|
249
|
+
'@digigov/react-core/HeaderSecondaryLogo': lazyImport(_digigov_react_core_HeaderSecondaryLogo),
|
|
250
|
+
'@digigov/react-core/HeaderSection': lazyImport(_digigov_react_core_HeaderSection),
|
|
251
|
+
'@digigov/react-core/HeaderSubtitle': lazyImport(_digigov_react_core_HeaderSubtitle),
|
|
252
|
+
'@digigov/react-core/HeaderTitle': lazyImport(_digigov_react_core_HeaderTitle),
|
|
253
|
+
'@digigov/react-core/Heading': lazyImport(_digigov_react_core_Heading),
|
|
254
|
+
'@digigov/react-core/HeadingCaption': lazyImport(_digigov_react_core_HeadingCaption),
|
|
255
|
+
'@digigov/react-core/HellenicRepublicLogo': lazyImport(_digigov_react_core_HellenicRepublicLogo),
|
|
256
|
+
'@digigov/react-core/HellenicRepublicLogo/logo-el': lazyImport(_digigov_react_core_HellenicRepublicLogo_logo_el),
|
|
257
|
+
'@digigov/react-core/HellenicRepublicLogo/logo-en': lazyImport(_digigov_react_core_HellenicRepublicLogo_logo_en),
|
|
258
|
+
'@digigov/react-core/HellenicRepublicLogo/logo-inverted-el': lazyImport(_digigov_react_core_HellenicRepublicLogo_logo_inverted_el),
|
|
259
|
+
'@digigov/react-core/HellenicRepublicLogo/logo-inverted-en': lazyImport(_digigov_react_core_HellenicRepublicLogo_logo_inverted_en),
|
|
260
|
+
'@digigov/react-core/Hidden': lazyImport(_digigov_react_core_Hidden),
|
|
261
|
+
'@digigov/react-core/Hint': lazyImport(_digigov_react_core_Hint),
|
|
262
|
+
'@digigov/react-core': lazyImport(_digigov_react_core),
|
|
263
|
+
'@digigov/react-core/LabelContainer': lazyImport(_digigov_react_core_LabelContainer),
|
|
264
|
+
'@digigov/react-core/LabelTitle': lazyImport(_digigov_react_core_LabelTitle),
|
|
265
|
+
'@digigov/react-core/Layout': lazyImport(_digigov_react_core_Layout),
|
|
266
|
+
'@digigov/react-core/LinkBase': lazyImport(_digigov_react_core_LinkBase),
|
|
267
|
+
'@digigov/react-core/List': lazyImport(_digigov_react_core_List),
|
|
268
|
+
'@digigov/react-core/ListItem': lazyImport(_digigov_react_core_ListItem),
|
|
269
|
+
'@digigov/react-core/Main': lazyImport(_digigov_react_core_Main),
|
|
270
|
+
'@digigov/react-core/Masthead': lazyImport(_digigov_react_core_Masthead),
|
|
271
|
+
'@digigov/react-core/MastheadBody': lazyImport(_digigov_react_core_MastheadBody),
|
|
272
|
+
'@digigov/react-core/MoreVertIcon': lazyImport(_digigov_react_core_MoreVertIcon),
|
|
273
|
+
'@digigov/react-core/NavHorizontal': lazyImport(_digigov_react_core_NavHorizontal),
|
|
274
|
+
'@digigov/react-core/NavHorizontalList': lazyImport(_digigov_react_core_NavHorizontalList),
|
|
275
|
+
'@digigov/react-core/NavHorizontalListItem': lazyImport(_digigov_react_core_NavHorizontalListItem),
|
|
276
|
+
'@digigov/react-core/NavHorizontalListItemButton': lazyImport(_digigov_react_core_NavHorizontalListItemButton),
|
|
277
|
+
'@digigov/react-core/NavHorizontalListItemLink': lazyImport(_digigov_react_core_NavHorizontalListItemLink),
|
|
278
|
+
'@digigov/react-core/NavMenu': lazyImport(_digigov_react_core_NavMenu),
|
|
279
|
+
'@digigov/react-core/NavMenuContainer': lazyImport(_digigov_react_core_NavMenuContainer),
|
|
280
|
+
'@digigov/react-core/NavMenuContainerContent': lazyImport(_digigov_react_core_NavMenuContainerContent),
|
|
281
|
+
'@digigov/react-core/NavMenuContainerContentList': lazyImport(_digigov_react_core_NavMenuContainerContentList),
|
|
282
|
+
'@digigov/react-core/NavMenuContainerContentListItem': lazyImport(_digigov_react_core_NavMenuContainerContentListItem),
|
|
283
|
+
'@digigov/react-core/NavMenuContainerTitle': lazyImport(_digigov_react_core_NavMenuContainerTitle),
|
|
284
|
+
'@digigov/react-core/NavVertical': lazyImport(_digigov_react_core_NavVertical),
|
|
285
|
+
'@digigov/react-core/NavVerticalItem': lazyImport(_digigov_react_core_NavVerticalItem),
|
|
286
|
+
'@digigov/react-core/NormalText': lazyImport(_digigov_react_core_NormalText),
|
|
287
|
+
'@digigov/react-core/NotificationBannerContainer': lazyImport(_digigov_react_core_NotificationBannerContainer),
|
|
288
|
+
'@digigov/react-core/NotificationBannerContent': lazyImport(_digigov_react_core_NotificationBannerContent),
|
|
289
|
+
'@digigov/react-core/NotificationBannerHeader': lazyImport(_digigov_react_core_NotificationBannerHeader),
|
|
290
|
+
'@digigov/react-core/NotificationBannerHeading': lazyImport(_digigov_react_core_NotificationBannerHeading),
|
|
291
|
+
'@digigov/react-core/NotificationBannerLink': lazyImport(_digigov_react_core_NotificationBannerLink),
|
|
292
|
+
'@digigov/react-core/PageTitle': lazyImport(_digigov_react_core_PageTitle),
|
|
293
|
+
'@digigov/react-core/PageTitleCaption': lazyImport(_digigov_react_core_PageTitleCaption),
|
|
294
|
+
'@digigov/react-core/PageTitleHeading': lazyImport(_digigov_react_core_PageTitleHeading),
|
|
295
|
+
'@digigov/react-core/PageTitleSection': lazyImport(_digigov_react_core_PageTitleSection),
|
|
296
|
+
'@digigov/react-core/Paragraph': lazyImport(_digigov_react_core_Paragraph),
|
|
297
|
+
'@digigov/react-core/PhaseBanner': lazyImport(_digigov_react_core_PhaseBanner),
|
|
298
|
+
'@digigov/react-core/PhaseBannerHeaderContainer': lazyImport(_digigov_react_core_PhaseBannerHeaderContainer),
|
|
299
|
+
'@digigov/react-core/PhaseBannerTag': lazyImport(_digigov_react_core_PhaseBannerTag),
|
|
300
|
+
'@digigov/react-core/PhaseBannerText': lazyImport(_digigov_react_core_PhaseBannerText),
|
|
301
|
+
'@digigov/react-core/RadioConditional': lazyImport(_digigov_react_core_RadioConditional),
|
|
302
|
+
'@digigov/react-core/RadioContainer': lazyImport(_digigov_react_core_RadioContainer),
|
|
303
|
+
'@digigov/react-core/RadioItem': lazyImport(_digigov_react_core_RadioItem),
|
|
304
|
+
'@digigov/react-core/SectionBreak': lazyImport(_digigov_react_core_SectionBreak),
|
|
305
|
+
'@digigov/react-core/SelectContainer': lazyImport(_digigov_react_core_SelectContainer),
|
|
306
|
+
'@digigov/react-core/SelectOption': lazyImport(_digigov_react_core_SelectOption),
|
|
307
|
+
'@digigov/react-core/SkipLink': lazyImport(_digigov_react_core_SkipLink),
|
|
308
|
+
'@digigov/react-core/SummaryList': lazyImport(_digigov_react_core_SummaryList),
|
|
309
|
+
'@digigov/react-core/SummaryListItem': lazyImport(_digigov_react_core_SummaryListItem),
|
|
310
|
+
'@digigov/react-core/SummaryListItemAction': lazyImport(_digigov_react_core_SummaryListItemAction),
|
|
311
|
+
'@digigov/react-core/SummaryListItemKey': lazyImport(_digigov_react_core_SummaryListItemKey),
|
|
312
|
+
'@digigov/react-core/SummaryListItemValue': lazyImport(_digigov_react_core_SummaryListItemValue),
|
|
313
|
+
'@digigov/react-core/SvgIcon': lazyImport(_digigov_react_core_SvgIcon),
|
|
314
|
+
'@digigov/react-core/Table': lazyImport(_digigov_react_core_Table),
|
|
315
|
+
'@digigov/react-core/TableBody': lazyImport(_digigov_react_core_TableBody),
|
|
316
|
+
'@digigov/react-core/TableCaption': lazyImport(_digigov_react_core_TableCaption),
|
|
317
|
+
'@digigov/react-core/TableContainer': lazyImport(_digigov_react_core_TableContainer),
|
|
318
|
+
'@digigov/react-core/TableDataCell': lazyImport(_digigov_react_core_TableDataCell),
|
|
319
|
+
'@digigov/react-core/TableHead': lazyImport(_digigov_react_core_TableHead),
|
|
320
|
+
'@digigov/react-core/TableHeadCell': lazyImport(_digigov_react_core_TableHeadCell),
|
|
321
|
+
'@digigov/react-core/TableNoDataRow': lazyImport(_digigov_react_core_TableNoDataRow),
|
|
322
|
+
'@digigov/react-core/TableRow': lazyImport(_digigov_react_core_TableRow),
|
|
323
|
+
'@digigov/react-core/Tabs': lazyImport(_digigov_react_core_Tabs),
|
|
324
|
+
'@digigov/react-core/TabsHeading': lazyImport(_digigov_react_core_TabsHeading),
|
|
325
|
+
'@digigov/react-core/TabsList': lazyImport(_digigov_react_core_TabsList),
|
|
326
|
+
'@digigov/react-core/TabsListItem': lazyImport(_digigov_react_core_TabsListItem),
|
|
327
|
+
'@digigov/react-core/TabsPanel': lazyImport(_digigov_react_core_TabsPanel),
|
|
328
|
+
'@digigov/react-core/TextArea': lazyImport(_digigov_react_core_TextArea),
|
|
329
|
+
'@digigov/react-core/TextInput': lazyImport(_digigov_react_core_TextInput),
|
|
330
|
+
'@digigov/react-core/Top': lazyImport(_digigov_react_core_Top),
|
|
331
|
+
'@digigov/react-core/UncheckIcon': lazyImport(_digigov_react_core_UncheckIcon),
|
|
332
|
+
'@digigov/react-core/Unpurge': lazyImport(_digigov_react_core_Unpurge),
|
|
333
|
+
'@digigov/react-core/VisuallyHidden': lazyImport(_digigov_react_core_VisuallyHidden),
|
|
334
|
+
'@digigov/react-core/WarningText': lazyImport(_digigov_react_core_WarningText)
|
|
335
|
+
};
|
|
336
|
+
|