@digigov/form 0.8.2 → 0.8.4
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.md +17 -1
- package/{libs/form/src/Field → Field}/FieldBase.d.ts +0 -0
- package/Field/FieldBase.js +1 -0
- package/{libs/form/src/Field → Field}/FieldConditional.d.ts +0 -0
- package/{libs/form/src/Field → Field}/FieldContainer.d.ts +0 -0
- package/{libs/form/src/Field → Field}/index.d.ts +0 -0
- package/{libs/form/src/Field → Field}/types.d.ts +0 -0
- package/{libs/form/src/Field → Field}/utils.d.ts +0 -0
- package/Field/utils.js +6 -0
- package/{libs/form/src/FieldArray → FieldArray}/FieldArray.stories.d.ts +0 -0
- package/{libs/form/src/FieldArray → FieldArray}/__stories__/Default.d.ts +0 -0
- package/{libs/form/src/FieldArray → FieldArray}/__stories__/WithExactLength.d.ts +0 -0
- package/{libs/form/src/FieldArray → FieldArray}/index.d.ts +0 -0
- package/{libs/form/src/FieldObject → FieldObject}/index.d.ts +0 -0
- package/{libs/form/src/Fieldset → Fieldset}/FieldsetWithContext.d.ts +0 -0
- package/{libs/form/src/Fieldset → Fieldset}/index.d.ts +0 -0
- package/{libs/form/src/Fieldset → Fieldset}/types.d.ts +0 -0
- package/{libs/form/src/Form.stories.d.ts → Form.stories.d.ts} +1 -0
- package/Form.stories.js +14 -0
- package/{libs/form/src/FormBuilder.d.ts → FormBuilder.d.ts} +0 -0
- package/{libs/form/src/FormContext.d.ts → FormContext.d.ts} +0 -0
- package/{libs/form/src/MultiplicityField → MultiplicityField}/MultiplicityField.stories.d.ts +0 -0
- package/{libs/form/src/MultiplicityField → MultiplicityField}/__stories__/Default.d.ts +0 -0
- package/{libs/form/src/MultiplicityField → MultiplicityField}/__stories__/WithExactLength.d.ts +0 -0
- package/{libs/form/src/MultiplicityField → MultiplicityField}/__stories__/WithMaxLength.d.ts +0 -0
- package/{libs/form/src/MultiplicityField → MultiplicityField}/__stories__/WithMinAndMaxLength.d.ts +0 -0
- package/{libs/form/src/MultiplicityField → MultiplicityField}/__stories__/WithMinLength.d.ts +0 -0
- package/{libs/form/src/MultiplicityField → MultiplicityField}/add-objects.d.ts +0 -0
- package/{libs/form/src/MultiplicityField → MultiplicityField}/index.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Questions.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/QuestionsContext.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/ReviewStep.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/Step.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/StepArrayReview.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/StepContext.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/StepDescription.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/StepForm.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/StepQuote.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/StepTitle.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/getAddMoreFields.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/index.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/Step/types.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/getNextStep.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/index.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/index.spec.d.ts +0 -0
- package/{libs/form/src/Questions → Questions}/types.d.ts +0 -0
- package/__stories__/AutoCompleteField.d.ts +1 -0
- package/__stories__/AutoCompleteField.js +61 -0
- package/{libs/form/src/__stories__ → __stories__}/IntField.d.ts +0 -0
- package/__stories__/IntField.js +5 -9
- package/es/Field/FieldBase.js +1 -0
- package/es/Field/utils.js +5 -0
- package/es/Form.stories.js +2 -1
- package/es/__stories__/AutoCompleteField.js +45 -0
- package/es/__stories__/IntField.js +2 -1
- package/es/inputs/AutoComplete/index.js +45 -0
- package/es/inputs/Checkboxes/index.js +1 -0
- package/es/inputs/FileInput/index.js +4 -6
- package/es/inputs/Input/index.js +2 -0
- package/es/inputs/Radio/index.js +4 -3
- package/es/inputs/Select/index.js +1 -0
- package/esm/Field/FieldBase.js +1 -0
- package/esm/Field/utils.js +5 -0
- package/esm/Form.stories.js +2 -1
- package/esm/__stories__/AutoCompleteField.js +45 -0
- package/esm/__stories__/IntField.js +2 -1
- package/esm/index.js +1 -1
- package/esm/inputs/AutoComplete/index.js +45 -0
- package/esm/inputs/Checkboxes/index.js +1 -0
- package/esm/inputs/FileInput/index.js +4 -6
- package/esm/inputs/Input/index.js +2 -0
- package/esm/inputs/Radio/index.js +4 -3
- package/esm/inputs/Select/index.js +1 -0
- package/{libs/form/src/index.d.ts → index.d.ts} +0 -0
- package/inputs/AutoComplete/index.d.ts +14 -0
- package/inputs/AutoComplete/index.js +68 -0
- package/{libs/form/src/inputs → inputs}/Checkboxes/index.d.ts +0 -0
- package/inputs/Checkboxes/index.js +1 -0
- package/{libs/form/src/inputs → inputs}/DateInput/index.d.ts +0 -0
- package/{libs/form/src/inputs → inputs}/FileInput/FileInput.stories.d.ts +0 -0
- package/{libs/form/src/inputs → inputs}/FileInput/__stories__/Default.d.ts +0 -0
- package/{libs/form/src/inputs → inputs}/FileInput/index.d.ts +0 -0
- package/inputs/FileInput/index.js +5 -8
- package/{libs/form/src/inputs → inputs}/Input/index.d.ts +0 -0
- package/inputs/Input/index.js +2 -0
- package/{libs/form/src/inputs → inputs}/Label/index.d.ts +0 -0
- package/{libs/form/src/inputs → inputs}/Radio/index.d.ts +0 -0
- package/inputs/Radio/index.js +4 -3
- package/{libs/form/src/inputs → inputs}/Select/index.d.ts +0 -0
- package/inputs/Select/index.js +1 -0
- package/{libs/form/src/inputs → inputs}/index.d.ts +0 -0
- package/{libs/form/src/internal.d.ts → internal.d.ts} +0 -0
- package/package.json +4 -3
- package/{libs/form/src/types.d.ts → types.d.ts} +0 -0
- package/{libs/form/src/utils.d.ts → utils.d.ts} +0 -0
- package/{libs/form/src/validators → validators}/index.d.ts +0 -0
- package/{libs/form/src/validators → validators}/types.d.ts +0 -0
- package/{libs/form/src/validators → validators}/utils/afm.d.ts +0 -0
- package/{libs/form/src/validators → validators}/utils/file.d.ts +0 -0
- package/{libs/form/src/validators → validators}/utils/iban.d.ts +0 -0
- package/{libs/form/src/validators → validators}/utils/index.d.ts +0 -0
- package/{libs/form/src/validators → validators}/utils/int.d.ts +0 -0
- package/{libs/form/src/validators → validators}/utils/number.d.ts +0 -0
- package/{libs/form/src/validators → validators}/utils/phone.d.ts +0 -0
- package/{libs/form/src/validators → validators}/utils/postal_code.d.ts +0 -0
- package/{libs/form/src/validators → validators}/utils/uuid4.d.ts +0 -0
- package/{libs/form/src/validators → validators}/validators.spec.d.ts +0 -0
- package/libs/ui/src/app/PageTitle.d.ts +0 -10
- package/libs/ui/src/app/i18n.d.ts +0 -12
- package/libs/ui/src/core/Accordion/index.d.ts +0 -23
- package/libs/ui/src/core/BackLink/index.d.ts +0 -3
- package/libs/ui/src/core/Base/index.d.ts +0 -3
- package/libs/ui/src/core/Blockquote/index.d.ts +0 -3
- package/libs/ui/src/core/Breadcrumbs/index.d.ts +0 -5
- package/libs/ui/src/core/Button/BackButton.d.ts +0 -3
- package/libs/ui/src/core/Button/ButtonLink.d.ts +0 -4
- package/libs/ui/src/core/Button/CallToAction.d.ts +0 -7
- package/libs/ui/src/core/Button/Icon.d.ts +0 -2
- package/libs/ui/src/core/Button/index.d.ts +0 -15
- package/libs/ui/src/core/Card/index.d.ts +0 -6
- package/libs/ui/src/core/Confirmation/index.d.ts +0 -5
- package/libs/ui/src/core/Details/index.d.ts +0 -5
- package/libs/ui/src/core/Divider/index.d.ts +0 -5
- package/libs/ui/src/core/ErrorSummary/index.d.ts +0 -3
- package/libs/ui/src/core/FileUpload/index.d.ts +0 -3
- package/libs/ui/src/core/Form/index.d.ts +0 -3
- package/libs/ui/src/core/Hidden/index.d.ts +0 -1
- package/libs/ui/src/core/Label/index.d.ts +0 -4
- package/libs/ui/src/core/Link/index.d.ts +0 -13
- package/libs/ui/src/core/List/List.d.ts +0 -3
- package/libs/ui/src/core/List/ListItem.d.ts +0 -3
- package/libs/ui/src/core/List/ListItemContent.d.ts +0 -6
- package/libs/ui/src/core/List/ListItemIcon.d.ts +0 -5
- package/libs/ui/src/core/List/ListItemText.d.ts +0 -7
- package/libs/ui/src/core/List/ListItemTitle.d.ts +0 -9
- package/libs/ui/src/core/List/index.d.ts +0 -7
- package/libs/ui/src/core/NavList/NavHorizontal.d.ts +0 -3
- package/libs/ui/src/core/NavList/NavHorizontalList.d.ts +0 -3
- package/libs/ui/src/core/NavList/NavHorizontalListItem.d.ts +0 -3
- package/libs/ui/src/core/NavList/NavList.d.ts +0 -4
- package/libs/ui/src/core/NavList/NavListBase.d.ts +0 -4
- package/libs/ui/src/core/NavList/NavListContext.d.ts +0 -20
- package/libs/ui/src/core/NavList/NavListItem.d.ts +0 -14
- package/libs/ui/src/core/NavList/NavListItemBase.d.ts +0 -17
- package/libs/ui/src/core/NavList/NavListSubMenu.d.ts +0 -8
- package/libs/ui/src/core/NavList/NavVertical.d.ts +0 -3
- package/libs/ui/src/core/NavList/NavVerticalItem.d.ts +0 -3
- package/libs/ui/src/core/NavList/index.d.ts +0 -10
- package/libs/ui/src/core/NavList/types.d.ts +0 -14
- package/libs/ui/src/core/NotificationBanner/index.d.ts +0 -18
- package/libs/ui/src/core/PhaseBanner/index.d.ts +0 -6
- package/libs/ui/src/core/ServiceBadge/index.d.ts +0 -8
- package/libs/ui/src/core/SkipLink/index.d.ts +0 -3
- package/libs/ui/src/core/SummaryList/index.d.ts +0 -7
- package/libs/ui/src/core/SvgIcon/index.d.ts +0 -10
- package/libs/ui/src/core/Table/TableFloatingScroll.d.ts +0 -2
- package/libs/ui/src/core/Table/index.d.ts +0 -10
- package/libs/ui/src/core/Tabs/index.d.ts +0 -16
- package/libs/ui/src/core/TextArea/index.d.ts +0 -3
- package/libs/ui/src/core/TextInput/index.d.ts +0 -3
- package/libs/ui/src/core/VisuallyHidden/index.d.ts +0 -3
- package/libs/ui/src/core/WarningText/index.d.ts +0 -3
- package/libs/ui/src/core/index.d.ts +0 -32
- package/libs/ui/src/hooks/useTogglableSections.d.ts +0 -19
- package/libs/ui/src/layouts/Grid/index.d.ts +0 -4
- package/libs/ui/src/locales/el.d.ts +0 -84
- package/libs/ui/src/router/index.d.ts +0 -9
- package/libs/ui/src/typography/Caption/index.d.ts +0 -8
- package/libs/ui/src/typography/NormalText/index.d.ts +0 -5
- package/libs/ui/src/typography/Paragraph/index.d.ts +0 -6
- package/libs/ui/src/typography/Title/index.d.ts +0 -10
- package/libs/ui/src/utils/withDeprecation.d.ts +0 -16
- package/libs-ui/react-core/src/Accordion/index.d.ts +0 -10
- package/libs-ui/react-core/src/AccordionControls/index.d.ts +0 -9
- package/libs-ui/react-core/src/AccordionSection/index.d.ts +0 -16
- package/libs-ui/react-core/src/AccordionSectionContent/index.d.ts +0 -10
- package/libs-ui/react-core/src/AccordionSectionHeader/index.d.ts +0 -9
- package/libs-ui/react-core/src/AccordionSectionSummary/index.d.ts +0 -10
- package/libs-ui/react-core/src/AccordionSectionSummaryHeading/index.d.ts +0 -9
- package/libs-ui/react-core/src/ArrowIcon/index.d.ts +0 -16
- package/libs-ui/react-core/src/Aside/index.d.ts +0 -10
- package/libs-ui/react-core/src/BackLink/index.d.ts +0 -13
- package/libs-ui/react-core/src/Base/index.d.ts +0 -43
- package/libs-ui/react-core/src/Blockquote/index.d.ts +0 -9
- package/libs-ui/react-core/src/Bottom/index.d.ts +0 -9
- package/libs-ui/react-core/src/Breadcrumbs/index.d.ts +0 -10
- package/libs-ui/react-core/src/BreadcrumbsList/index.d.ts +0 -9
- package/libs-ui/react-core/src/BreadcrumbsListItem/index.d.ts +0 -14
- package/libs-ui/react-core/src/BurgerIcon/index.d.ts +0 -28
- package/libs-ui/react-core/src/Button/index.d.ts +0 -25
- package/libs-ui/react-core/src/ButtonGroup/index.d.ts +0 -9
- package/libs-ui/react-core/src/ButtonLink/index.d.ts +0 -17
- package/libs-ui/react-core/src/CallToAction/index.d.ts +0 -10
- package/libs-ui/react-core/src/Card/index.d.ts +0 -29
- package/libs-ui/react-core/src/CardAction/index.d.ts +0 -11
- package/libs-ui/react-core/src/CardHeading/index.d.ts +0 -10
- package/libs-ui/react-core/src/CardText/index.d.ts +0 -10
- package/libs-ui/react-core/src/CaretIcon/index.d.ts +0 -16
- package/libs-ui/react-core/src/CheckIcon/index.d.ts +0 -15
- package/libs-ui/react-core/src/Checkbox/index.d.ts +0 -11
- package/libs-ui/react-core/src/CheckboxConditional/index.d.ts +0 -11
- package/libs-ui/react-core/src/CheckboxItem/index.d.ts +0 -19
- package/libs-ui/react-core/src/CloseIcon/index.d.ts +0 -16
- package/libs-ui/react-core/src/Confirmation/index.d.ts +0 -9
- package/libs-ui/react-core/src/ConfirmationBody/index.d.ts +0 -9
- package/libs-ui/react-core/src/ConfirmationTitle/index.d.ts +0 -9
- package/libs-ui/react-core/src/Container/index.d.ts +0 -17
- package/libs-ui/react-core/src/Copyright/index.d.ts +0 -10
- package/libs-ui/react-core/src/DateInput/index.d.ts +0 -12
- package/libs-ui/react-core/src/DateInputItem/index.d.ts +0 -25
- package/libs-ui/react-core/src/Details/index.d.ts +0 -10
- package/libs-ui/react-core/src/DetailsContent/index.d.ts +0 -10
- package/libs-ui/react-core/src/DetailsSummary/index.d.ts +0 -9
- package/libs-ui/react-core/src/ErrorMessage/index.d.ts +0 -11
- package/libs-ui/react-core/src/ErrorSummary/index.d.ts +0 -9
- package/libs-ui/react-core/src/Field/index.d.ts +0 -13
- package/libs-ui/react-core/src/Fieldset/index.d.ts +0 -10
- package/libs-ui/react-core/src/FieldsetLegend/index.d.ts +0 -19
- package/libs-ui/react-core/src/FileUpload/index.d.ts +0 -22
- package/libs-ui/react-core/src/Footer/index.d.ts +0 -9
- package/libs-ui/react-core/src/FooterContainer/index.d.ts +0 -16
- package/libs-ui/react-core/src/FooterContent/index.d.ts +0 -10
- package/libs-ui/react-core/src/FooterContentLogos/index.d.ts +0 -11
- package/libs-ui/react-core/src/FooterHeading/index.d.ts +0 -15
- package/libs-ui/react-core/src/FooterImage/index.d.ts +0 -15
- package/libs-ui/react-core/src/FooterInlineList/index.d.ts +0 -11
- package/libs-ui/react-core/src/FooterInlineListItem/index.d.ts +0 -9
- package/libs-ui/react-core/src/FooterLink/index.d.ts +0 -13
- package/libs-ui/react-core/src/FooterList/index.d.ts +0 -15
- package/libs-ui/react-core/src/FooterListItem/index.d.ts +0 -10
- package/libs-ui/react-core/src/FooterMeta/index.d.ts +0 -11
- package/libs-ui/react-core/src/FooterMetaItem/index.d.ts +0 -14
- package/libs-ui/react-core/src/FooterNavigation/index.d.ts +0 -11
- package/libs-ui/react-core/src/FooterSection/index.d.ts +0 -11
- package/libs-ui/react-core/src/Form/index.d.ts +0 -11
- package/libs-ui/react-core/src/GovGRFooter/index.d.ts +0 -9
- package/libs-ui/react-core/src/GovGRLogo/govgr-logo-base64.d.ts +0 -2
- package/libs-ui/react-core/src/GovGRLogo/index.d.ts +0 -9
- package/libs-ui/react-core/src/Grid/index.d.ts +0 -20
- package/libs-ui/react-core/src/Header/index.d.ts +0 -10
- package/libs-ui/react-core/src/HeaderContent/index.d.ts +0 -9
- package/libs-ui/react-core/src/HeaderLogo/index.d.ts +0 -21
- package/libs-ui/react-core/src/HeaderSecondaryLogo/index.d.ts +0 -21
- package/libs-ui/react-core/src/HeaderSection/index.d.ts +0 -9
- package/libs-ui/react-core/src/HeaderSubtitle/index.d.ts +0 -9
- package/libs-ui/react-core/src/HeaderTitle/index.d.ts +0 -13
- package/libs-ui/react-core/src/Heading/index.d.ts +0 -21
- package/libs-ui/react-core/src/HeadingCaption/index.d.ts +0 -15
- package/libs-ui/react-core/src/HellenicRepublicLogo/index.d.ts +0 -20
- package/libs-ui/react-core/src/HellenicRepublicLogo/logo-el.d.ts +0 -2
- package/libs-ui/react-core/src/HellenicRepublicLogo/logo-en.d.ts +0 -2
- package/libs-ui/react-core/src/Hidden/index.d.ts +0 -17
- package/libs-ui/react-core/src/Hint/index.d.ts +0 -14
- package/libs-ui/react-core/src/Label/index.d.ts +0 -9
- package/libs-ui/react-core/src/LabelTitle/index.d.ts +0 -19
- package/libs-ui/react-core/src/Layout/index.d.ts +0 -10
- package/libs-ui/react-core/src/Link/index.d.ts +0 -14
- package/libs-ui/react-core/src/List/index.d.ts +0 -18
- package/libs-ui/react-core/src/ListItem/index.d.ts +0 -9
- package/libs-ui/react-core/src/Main/index.d.ts +0 -9
- package/libs-ui/react-core/src/Masthead/index.d.ts +0 -9
- package/libs-ui/react-core/src/MastheadBody/index.d.ts +0 -9
- package/libs-ui/react-core/src/MoreVertIcon/index.d.ts +0 -15
- package/libs-ui/react-core/src/NavHorizontal/index.d.ts +0 -16
- package/libs-ui/react-core/src/NavHorizontalList/index.d.ts +0 -10
- package/libs-ui/react-core/src/NavHorizontalListItem/index.d.ts +0 -18
- package/libs-ui/react-core/src/NavVertical/index.d.ts +0 -11
- package/libs-ui/react-core/src/NavVerticalItem/index.d.ts +0 -14
- package/libs-ui/react-core/src/NormalText/index.d.ts +0 -28
- package/libs-ui/react-core/src/NotificationBanner/index.d.ts +0 -17
- package/libs-ui/react-core/src/NotificationBannerContent/index.d.ts +0 -12
- package/libs-ui/react-core/src/NotificationBannerHeader/index.d.ts +0 -11
- package/libs-ui/react-core/src/NotificationBannerHeading/index.d.ts +0 -11
- package/libs-ui/react-core/src/NotificationBannerLink/index.d.ts +0 -15
- package/libs-ui/react-core/src/PageTitle/index.d.ts +0 -9
- package/libs-ui/react-core/src/PageTitleCaption/index.d.ts +0 -14
- package/libs-ui/react-core/src/PageTitleHeading/index.d.ts +0 -13
- package/libs-ui/react-core/src/PageTitleSection/index.d.ts +0 -10
- package/libs-ui/react-core/src/Paragraph/index.d.ts +0 -26
- package/libs-ui/react-core/src/PhaseBanner/index.d.ts +0 -15
- package/libs-ui/react-core/src/PhaseBannerHeaderContainer/index.d.ts +0 -8
- package/libs-ui/react-core/src/PhaseBannerTag/index.d.ts +0 -9
- package/libs-ui/react-core/src/PhaseBannerText/index.d.ts +0 -11
- package/libs-ui/react-core/src/Radio/index.d.ts +0 -14
- package/libs-ui/react-core/src/RadioConditional/index.d.ts +0 -11
- package/libs-ui/react-core/src/RadioItem/index.d.ts +0 -18
- package/libs-ui/react-core/src/SectionBreak/index.d.ts +0 -18
- package/libs-ui/react-core/src/Select/index.d.ts +0 -14
- package/libs-ui/react-core/src/SelectOption/index.d.ts +0 -18
- package/libs-ui/react-core/src/ServiceBadge/index.d.ts +0 -11
- package/libs-ui/react-core/src/SkipLink/index.d.ts +0 -10
- package/libs-ui/react-core/src/SummaryList/index.d.ts +0 -16
- package/libs-ui/react-core/src/SummaryListItem/index.d.ts +0 -10
- package/libs-ui/react-core/src/SummaryListItemAction/index.d.ts +0 -10
- package/libs-ui/react-core/src/SummaryListItemKey/index.d.ts +0 -10
- package/libs-ui/react-core/src/SummaryListItemValue/index.d.ts +0 -9
- package/libs-ui/react-core/src/SvgIcon/index.d.ts +0 -20
- package/libs-ui/react-core/src/Table/index.d.ts +0 -34
- package/libs-ui/react-core/src/TableBody/index.d.ts +0 -9
- package/libs-ui/react-core/src/TableCaption/index.d.ts +0 -15
- package/libs-ui/react-core/src/TableContainer/index.d.ts +0 -13
- package/libs-ui/react-core/src/TableDataCell/index.d.ts +0 -15
- package/libs-ui/react-core/src/TableHead/index.d.ts +0 -9
- package/libs-ui/react-core/src/TableHeadCell/index.d.ts +0 -21
- package/libs-ui/react-core/src/TableNoDataRow/index.d.ts +0 -10
- package/libs-ui/react-core/src/TableRow/index.d.ts +0 -9
- package/libs-ui/react-core/src/Tabs/index.d.ts +0 -10
- package/libs-ui/react-core/src/TabsHeading/index.d.ts +0 -15
- package/libs-ui/react-core/src/TabsList/index.d.ts +0 -10
- package/libs-ui/react-core/src/TabsListItem/index.d.ts +0 -20
- package/libs-ui/react-core/src/TabsPanel/index.d.ts +0 -16
- package/libs-ui/react-core/src/TextArea/index.d.ts +0 -23
- package/libs-ui/react-core/src/TextInput/index.d.ts +0 -28
- package/libs-ui/react-core/src/Top/index.d.ts +0 -9
- package/libs-ui/react-core/src/UncheckIcon/index.d.ts +0 -15
- package/libs-ui/react-core/src/VisuallyHidden/index.d.ts +0 -10
- package/libs-ui/react-core/src/WarningText/index.d.ts +0 -11
- package/libs-ui/react-core/src/index.d.ts +0 -141
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { ButtonProps as CoreButtonProps } from '@digigov/react-core/Button';
|
|
3
|
-
export declare type ButtonProps = CoreButtonProps;
|
|
4
|
-
export declare const Button: React.ForwardRefExoticComponent<Pick<CoreButtonProps, "form" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "name" | "type" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden" | "variant"> & React.RefAttributes<HTMLButtonElement>>;
|
|
5
|
-
export default Button;
|
|
6
|
-
export interface ContinueButtonProps extends ButtonProps {
|
|
7
|
-
label?: string;
|
|
8
|
-
ref?: React.Ref<HTMLButtonElement>;
|
|
9
|
-
}
|
|
10
|
-
export declare const ContinueButton: React.FC<ContinueButtonProps>;
|
|
11
|
-
export * from '@digigov/ui/core/Button/BackButton';
|
|
12
|
-
export * from '@digigov/ui/core/Button/CallToAction';
|
|
13
|
-
export * from '@digigov/ui/core/Button/ButtonLink';
|
|
14
|
-
export * from '@digigov/ui/core/Button/Icon';
|
|
15
|
-
export * from '@digigov/react-core/ButtonGroup';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { SectionBreakProps as CoreSectionBreakProps } from '@digigov/react-core/SectionBreak';
|
|
3
|
-
export declare type SectionBreakProps = CoreSectionBreakProps;
|
|
4
|
-
export declare const SectionBreak: import("react").ForwardRefExoticComponent<Pick<CoreSectionBreakProps, "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden" | "visible"> & import("react").RefAttributes<HTMLHRElement>>;
|
|
5
|
-
export default SectionBreak;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@digigov/react-core/Hidden';
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { LinkProps as CoreLinkProps } from '@digigov/react-core/Link';
|
|
3
|
-
export interface LinkComponentContextProps {
|
|
4
|
-
component: React.ElementType<LinkProps>;
|
|
5
|
-
}
|
|
6
|
-
export declare const CommonLink: React.FC<LinkProps>;
|
|
7
|
-
export declare const LinkProvider: React.FC<LinkComponentContextProps>;
|
|
8
|
-
export interface LinkProps extends CoreLinkProps {
|
|
9
|
-
ref?: React.Ref<HTMLAnchorElement>;
|
|
10
|
-
}
|
|
11
|
-
declare const Link: React.ExoticComponent<LinkProps>;
|
|
12
|
-
export default Link;
|
|
13
|
-
export { Link };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { NormalTextProps } from '@digigov/ui/typography/NormalText';
|
|
3
|
-
export interface ListItemTextProps extends NormalTextProps {
|
|
4
|
-
ref?: React.Ref<HTMLSpanElement>;
|
|
5
|
-
}
|
|
6
|
-
export declare const ListItemText: React.FC<ListItemTextProps>;
|
|
7
|
-
export default ListItemText;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { TitleProps } from '@digigov/ui/typography/Title';
|
|
3
|
-
import { LinkProps } from '@digigov/ui/core/Link';
|
|
4
|
-
export interface ListItemTitleProps extends TitleProps {
|
|
5
|
-
href?: string;
|
|
6
|
-
linkProps?: Omit<LinkProps, 'href'>;
|
|
7
|
-
}
|
|
8
|
-
export declare const ListItemTitle: React.FC<ListItemTitleProps>;
|
|
9
|
-
export default ListItemTitle;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export { List as default } from '@digigov/ui/core/List/List';
|
|
2
|
-
export * from '@digigov/ui/core/List/List';
|
|
3
|
-
export * from '@digigov/ui/core/List/ListItem';
|
|
4
|
-
export * from '@digigov/ui/core/List/ListItemContent';
|
|
5
|
-
export * from '@digigov/ui/core/List/ListItemTitle';
|
|
6
|
-
export * from '@digigov/ui/core/List/ListItemText';
|
|
7
|
-
export * from '@digigov/ui/core/List/ListItemIcon';
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { NavListProps } from '@digigov/ui/core/NavList/types';
|
|
3
|
-
export declare const useNavListStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"vertical" | "root" | "subMenu" | "floating" | "floatClear">;
|
|
4
|
-
export declare const NavListBase: React.FC<NavListProps>;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
export interface NavLinkInterface {
|
|
3
|
-
name?: string;
|
|
4
|
-
label?: string;
|
|
5
|
-
href?: string;
|
|
6
|
-
children?: React.ReactNode;
|
|
7
|
-
subMenu?: NavLinkInterface[];
|
|
8
|
-
}
|
|
9
|
-
export interface NavListContextInterface {
|
|
10
|
-
openSubMenus?: boolean;
|
|
11
|
-
horizontal?: boolean;
|
|
12
|
-
showDividers?: boolean;
|
|
13
|
-
links: NavLinkInterface[];
|
|
14
|
-
activeLink?: NavLinkInterface;
|
|
15
|
-
activeSubMenu?: NavLinkInterface[];
|
|
16
|
-
onSubMenuActive?: (name: string) => void;
|
|
17
|
-
}
|
|
18
|
-
export declare const NavListContext: React.Context<NavListContextInterface>;
|
|
19
|
-
export declare const NavListProvider: React.FC<NavListContextInterface>;
|
|
20
|
-
export default NavListContext;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
export interface NavListItemProps {
|
|
3
|
-
name?: string;
|
|
4
|
-
label?: string;
|
|
5
|
-
children?: React.ReactNode;
|
|
6
|
-
className?: string;
|
|
7
|
-
href?: string;
|
|
8
|
-
selected?: boolean;
|
|
9
|
-
expandOn?: 'hover' | 'click';
|
|
10
|
-
role?: string;
|
|
11
|
-
}
|
|
12
|
-
export declare const useNavListItemStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"link" | "selected" | "root">;
|
|
13
|
-
export declare const NavListItem: React.FC<NavListItemProps>;
|
|
14
|
-
export default NavListItem;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
export declare const useNavListItemBaseStyles: (props?: any) => import("@material-ui/core/styles/withStyles").ClassNameMap<"label" | "link" | "open" | "selected" | "horizontal" | "vertical" | "root" | "icon" | "submenu">;
|
|
3
|
-
export interface NavListItemBaseProps {
|
|
4
|
-
children?: React.ReactNode;
|
|
5
|
-
href?: string;
|
|
6
|
-
label?: React.ReactNode;
|
|
7
|
-
className?: string;
|
|
8
|
-
expandOn?: 'hover' | 'click';
|
|
9
|
-
selected?: boolean;
|
|
10
|
-
isNested?: boolean;
|
|
11
|
-
horizontal?: boolean;
|
|
12
|
-
open?: boolean;
|
|
13
|
-
onClick?: (e: any) => void;
|
|
14
|
-
role?: string;
|
|
15
|
-
}
|
|
16
|
-
export declare const NavListItemBase: React.ForwardRefExoticComponent<NavListItemBaseProps & React.RefAttributes<HTMLLIElement>>;
|
|
17
|
-
export default NavListItemBase;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { NavListProps } from '@digigov/ui/core/NavList/types';
|
|
3
|
-
import { NavLinkInterface } from '@digigov/ui/core/NavList/NavListContext';
|
|
4
|
-
export interface NavListSubMenuProps extends NavListProps {
|
|
5
|
-
links: NavLinkInterface[];
|
|
6
|
-
}
|
|
7
|
-
export declare const NavListSubMenu: React.FC<NavListSubMenuProps>;
|
|
8
|
-
export default NavListSubMenu;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export { NavList as default } from '@digigov/ui/core/NavList/NavList';
|
|
2
|
-
export * from '@digigov/ui/core/NavList/NavList';
|
|
3
|
-
export * from '@digigov/ui/core/NavList/NavListItem';
|
|
4
|
-
export * from '@digigov/ui/core/NavList/NavListSubMenu';
|
|
5
|
-
export * from '@digigov/ui/core/NavList/NavListContext';
|
|
6
|
-
export * from '@digigov/ui/core/NavList/NavHorizontal';
|
|
7
|
-
export * from '@digigov/ui/core/NavList/NavHorizontalList';
|
|
8
|
-
export * from '@digigov/ui/core/NavList/NavHorizontalListItem';
|
|
9
|
-
export * from '@digigov/ui/core/NavList/NavVertical';
|
|
10
|
-
export * from '@digigov/ui/core/NavList/NavVerticalItem';
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { NavLinkInterface } from '@digigov/ui/core/NavList/NavListContext';
|
|
3
|
-
import { BaseCSSProperties } from '@material-ui/core/styles/withStyles';
|
|
4
|
-
export interface NavListProps {
|
|
5
|
-
children?: React.ReactNode;
|
|
6
|
-
className?: string;
|
|
7
|
-
horizontal?: boolean;
|
|
8
|
-
role?: string;
|
|
9
|
-
openSubMenus?: boolean;
|
|
10
|
-
floating?: boolean;
|
|
11
|
-
subMenu?: boolean;
|
|
12
|
-
links?: NavLinkInterface[];
|
|
13
|
-
style?: BaseCSSProperties;
|
|
14
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { NotificationBannerProps as CoreNotificationBannerProps } from '@digigov/react-core/NotificationBanner';
|
|
3
|
-
import NotificationBannerHeader from '@digigov/react-core/NotificationBannerHeader';
|
|
4
|
-
import NotificationBannerHeading from '@digigov/react-core/NotificationBannerHeading';
|
|
5
|
-
import NotificationBannerContent from '@digigov/react-core/NotificationBannerContent';
|
|
6
|
-
import NotificationBannerLink from '@digigov/react-core/NotificationBannerLink';
|
|
7
|
-
export interface NotificationBannerProps extends CoreNotificationBannerProps {
|
|
8
|
-
variant?: 'important' | 'success';
|
|
9
|
-
title?: string;
|
|
10
|
-
link?: {
|
|
11
|
-
href: string;
|
|
12
|
-
label: string;
|
|
13
|
-
};
|
|
14
|
-
ref?: React.Ref<HTMLDivElement>;
|
|
15
|
-
}
|
|
16
|
-
export declare const NotificationBanner: React.FC<NotificationBannerProps>;
|
|
17
|
-
export { NotificationBannerHeader, NotificationBannerContent, NotificationBannerHeading, NotificationBannerLink, };
|
|
18
|
-
export default NotificationBanner;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export * from '@digigov/react-core/PhaseBanner';
|
|
2
|
-
export * from '@digigov/react-core/PhaseBannerHeaderContainer';
|
|
3
|
-
export * from '@digigov/react-core/PhaseBannerTag';
|
|
4
|
-
export * from '@digigov/react-core/PhaseBannerText';
|
|
5
|
-
import PhaseBanner from '@digigov/react-core/PhaseBanner';
|
|
6
|
-
export default PhaseBanner;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { PhaseBannerProps } from '@digigov/react-core/PhaseBanner';
|
|
3
|
-
interface ServiceBadgeProps extends PhaseBannerProps {
|
|
4
|
-
label?: string;
|
|
5
|
-
ref?: React.Ref<HTMLDivElement>;
|
|
6
|
-
}
|
|
7
|
-
export declare const ServiceBadge: React.FC<ServiceBadgeProps>;
|
|
8
|
-
export default ServiceBadge;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { SummaryList } from '@digigov/react-core/SummaryList';
|
|
2
|
-
export * from '@digigov/react-core/SummaryList';
|
|
3
|
-
export * from '@digigov/react-core/SummaryListItemAction';
|
|
4
|
-
export * from '@digigov/react-core/SummaryListItem';
|
|
5
|
-
export * from '@digigov/react-core/SummaryListItemKey';
|
|
6
|
-
export * from '@digigov/react-core/SummaryListItemValue';
|
|
7
|
-
export default SummaryList;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export * from '@digigov/react-core/SvgIcon';
|
|
2
|
-
export * from '@digigov/react-core/ArrowIcon';
|
|
3
|
-
export * from '@digigov/react-core/CaretIcon';
|
|
4
|
-
export * from '@digigov/react-core/UncheckIcon';
|
|
5
|
-
export * from '@digigov/react-core/CheckIcon';
|
|
6
|
-
export * from '@digigov/react-core/CloseIcon';
|
|
7
|
-
export * from '@digigov/react-core/MoreVertIcon';
|
|
8
|
-
export * from '@digigov/react-core/BurgerIcon';
|
|
9
|
-
import SvgIcon from '@digigov/react-core/SvgIcon';
|
|
10
|
-
export default SvgIcon;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export * from '@digigov/react-core/TableContainer';
|
|
2
|
-
export * from '@digigov/react-core/Table';
|
|
3
|
-
export * from '@digigov/react-core/TableBody';
|
|
4
|
-
export * from '@digigov/react-core/TableCaption';
|
|
5
|
-
export * from '@digigov/react-core/TableDataCell';
|
|
6
|
-
export * from '@digigov/react-core/TableHead';
|
|
7
|
-
export * from '@digigov/react-core/TableHeadCell';
|
|
8
|
-
export * from '@digigov/react-core/TableRow';
|
|
9
|
-
export * from '@digigov/react-core/TableNoDataRow';
|
|
10
|
-
export * from '@digigov/ui/core/Table/TableFloatingScroll';
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import Tabs from '@digigov/react-core/Tabs';
|
|
2
|
-
import TabsList from '@digigov/react-core/TabsList';
|
|
3
|
-
import TabsListItem from '@digigov/react-core/TabsListItem';
|
|
4
|
-
import TabsPanel from '@digigov/react-core/TabsPanel';
|
|
5
|
-
import TabsHeading from '@digigov/react-core/TabsHeading';
|
|
6
|
-
import { UseTogglableSectionsReturn } from '@digigov/ui/hooks/useTogglableSections';
|
|
7
|
-
export interface UseTabsReturn extends UseTogglableSectionsReturn {
|
|
8
|
-
panel: (key: string) => {
|
|
9
|
-
active: boolean;
|
|
10
|
-
tabIndex: number;
|
|
11
|
-
id: string;
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
export { Tabs, TabsList, TabsListItem, TabsPanel, TabsHeading };
|
|
15
|
-
export declare const useTabs: () => UseTabsReturn;
|
|
16
|
-
export default Tabs;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
export { default as Button } from '@digigov/ui/core/Button';
|
|
2
|
-
export * from '@digigov/ui/core/BackLink';
|
|
3
|
-
export * from '@digigov/ui/core/Base';
|
|
4
|
-
export * from '@digigov/ui/core/Button';
|
|
5
|
-
export * from '@digigov/ui/core/Accordion';
|
|
6
|
-
export * from '@digigov/ui/core/Blockquote';
|
|
7
|
-
export * from '@digigov/ui/core/Breadcrumbs';
|
|
8
|
-
export * from '@digigov/ui/core/Card';
|
|
9
|
-
export * from '@digigov/ui/core/Confirmation';
|
|
10
|
-
export * from '@digigov/ui/core/Details';
|
|
11
|
-
export * from '@digigov/ui/core/Divider';
|
|
12
|
-
export * from '@digigov/ui/core/ErrorSummary';
|
|
13
|
-
export * from '@digigov/ui/core/FileUpload';
|
|
14
|
-
export * from '@digigov/ui/core/Form';
|
|
15
|
-
export * from '@digigov/ui/core/Hidden';
|
|
16
|
-
export * from '@digigov/ui/core/Label';
|
|
17
|
-
export * from '@digigov/ui/core/Link';
|
|
18
|
-
export * from '@digigov/ui/core/SkipLink';
|
|
19
|
-
export * from '@digigov/ui/core/List';
|
|
20
|
-
export * from '@digigov/ui/core/NavList';
|
|
21
|
-
export * from '@digigov/ui/core/NavList';
|
|
22
|
-
export * from '@digigov/ui/core/PhaseBanner';
|
|
23
|
-
export * from '@digigov/ui/core/NotificationBanner';
|
|
24
|
-
export * from '@digigov/ui/core/SummaryList';
|
|
25
|
-
export * from '@digigov/ui/core/ServiceBadge';
|
|
26
|
-
export * from '@digigov/ui/core/Table';
|
|
27
|
-
export * from '@digigov/ui/core/Tabs';
|
|
28
|
-
export * from '@digigov/ui/core/TextArea';
|
|
29
|
-
export * from '@digigov/ui/core/TextInput';
|
|
30
|
-
export * from '@digigov/ui/core/VisuallyHidden';
|
|
31
|
-
export { default as WarningText } from '@digigov/ui/core/WarningText';
|
|
32
|
-
export * from '@digigov/ui/core/SvgIcon';
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export interface UseTogglableSectionsInterface {
|
|
2
|
-
toggleProperty: string;
|
|
3
|
-
singleOpen?: boolean;
|
|
4
|
-
onToggleProperty: string;
|
|
5
|
-
initial?: Record<string, boolean>;
|
|
6
|
-
firstOpen?: boolean;
|
|
7
|
-
ariaNavigation?: boolean;
|
|
8
|
-
toggleHook?: (id: string) => void;
|
|
9
|
-
}
|
|
10
|
-
export interface UseTogglableSectionsReturn {
|
|
11
|
-
register: (el: string) => any;
|
|
12
|
-
registered: {
|
|
13
|
-
current: Record<string, HTMLElement>;
|
|
14
|
-
};
|
|
15
|
-
opened: Record<string, boolean>;
|
|
16
|
-
toggle: (id: string) => void;
|
|
17
|
-
setOpened: (opened: ((curOpened: Record<string, boolean>) => Record<string, boolean>) | Record<string, boolean>) => void;
|
|
18
|
-
}
|
|
19
|
-
export declare function useTogglableSections({ toggleProperty, singleOpen, onToggleProperty, initial, firstOpen, ariaNavigation, toggleHook, }: UseTogglableSectionsInterface): UseTogglableSectionsReturn;
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
form: {
|
|
3
|
-
label: {
|
|
4
|
-
day: string;
|
|
5
|
-
month: string;
|
|
6
|
-
year: string;
|
|
7
|
-
};
|
|
8
|
-
error: {
|
|
9
|
-
required: string;
|
|
10
|
-
number: string;
|
|
11
|
-
positive_integer_number: string;
|
|
12
|
-
string: string;
|
|
13
|
-
email: string;
|
|
14
|
-
afm: string;
|
|
15
|
-
file_size: string;
|
|
16
|
-
mobile_phone: string;
|
|
17
|
-
phone_number: string;
|
|
18
|
-
landline: string;
|
|
19
|
-
uuid4: string;
|
|
20
|
-
iban: string;
|
|
21
|
-
postalCode: string;
|
|
22
|
-
'needs-more': string;
|
|
23
|
-
array: {
|
|
24
|
-
min: string;
|
|
25
|
-
max: string;
|
|
26
|
-
length: string;
|
|
27
|
-
};
|
|
28
|
-
date: {
|
|
29
|
-
invalid: string;
|
|
30
|
-
earlier_than: string;
|
|
31
|
-
later_than: string;
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
button: {
|
|
36
|
-
start: string;
|
|
37
|
-
login: string;
|
|
38
|
-
back: string;
|
|
39
|
-
continue: string;
|
|
40
|
-
search_ref: string;
|
|
41
|
-
scan: string;
|
|
42
|
-
save: string;
|
|
43
|
-
logout: string;
|
|
44
|
-
submit: string;
|
|
45
|
-
delete: string;
|
|
46
|
-
};
|
|
47
|
-
footer: {
|
|
48
|
-
created_by: string;
|
|
49
|
-
grnet: string;
|
|
50
|
-
created_for: string;
|
|
51
|
-
mindigital: string;
|
|
52
|
-
using: string;
|
|
53
|
-
open_source: string;
|
|
54
|
-
creative_commons: string;
|
|
55
|
-
};
|
|
56
|
-
notfound: {
|
|
57
|
-
page_not_found: string;
|
|
58
|
-
wrong_key_address: string;
|
|
59
|
-
wrong_cp_address: string;
|
|
60
|
-
service_contact: string;
|
|
61
|
-
};
|
|
62
|
-
outdated: {
|
|
63
|
-
mobile: string;
|
|
64
|
-
web: string;
|
|
65
|
-
};
|
|
66
|
-
pagination: {
|
|
67
|
-
show: string;
|
|
68
|
-
to: string;
|
|
69
|
-
of: string;
|
|
70
|
-
results: string;
|
|
71
|
-
label: string;
|
|
72
|
-
};
|
|
73
|
-
upload: {
|
|
74
|
-
file: string;
|
|
75
|
-
choose_file: string;
|
|
76
|
-
change_file: string;
|
|
77
|
-
no_file: string;
|
|
78
|
-
reset_file: string;
|
|
79
|
-
};
|
|
80
|
-
'copy-to-clipboard': {
|
|
81
|
-
message: string;
|
|
82
|
-
};
|
|
83
|
-
};
|
|
84
|
-
export default _default;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
export declare type RouterInterface = {
|
|
3
|
-
children?: React.ReactNode;
|
|
4
|
-
router?: any;
|
|
5
|
-
};
|
|
6
|
-
export declare const RouterContext: React.Context<RouterInterface>;
|
|
7
|
-
export declare const useRouter: () => RouterInterface;
|
|
8
|
-
export declare const RouterProvider: React.FC<RouterInterface>;
|
|
9
|
-
export default RouterContext;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import HeadingCaption, { HeadingCaptionProps } from '@digigov/react-core/HeadingCaption';
|
|
3
|
-
export declare const Caption: import("react").ForwardRefExoticComponent<Pick<HeadingCaptionProps, "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & import("react").RefAttributes<HTMLSpanElement>>;
|
|
4
|
-
export interface CaptionProps extends HeadingCaptionProps {
|
|
5
|
-
ref?: React.Ref<HTMLSpanElement>;
|
|
6
|
-
}
|
|
7
|
-
export default Caption;
|
|
8
|
-
export { HeadingCaption };
|