@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,20 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
-
export interface TabsListItemProps extends BaseProps<'a'> {
|
|
4
|
-
/**
|
|
5
|
-
* selected is optional.
|
|
6
|
-
* Exaclty one TabsListItem should be selected every time.
|
|
7
|
-
* This declares that this tab is selected.
|
|
8
|
-
*/
|
|
9
|
-
selected?: boolean;
|
|
10
|
-
/**
|
|
11
|
-
* href is optional.
|
|
12
|
-
*/
|
|
13
|
-
href?: string;
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* TabsListItem should be inside the TabsList.
|
|
17
|
-
* In here we declare the title of the tab.
|
|
18
|
-
*/
|
|
19
|
-
export declare const TabsListItem: React.ForwardRefExoticComponent<Pick<TabsListItemProps, "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "media" | "target" | "type" | "role" | "tabIndex" | "href" | "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" | "download" | "hrefLang" | "ping" | "rel" | "referrerPolicy" | "selected" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
20
|
-
export default TabsListItem;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
-
export interface TabsPanelProps extends BaseProps<'div'> {
|
|
4
|
-
/**
|
|
5
|
-
* active is optional.
|
|
6
|
-
* Exaclty one TabsPanel should be active every time.
|
|
7
|
-
* This declares that this content is active and should depend of the 'selected' TabsList.
|
|
8
|
-
*/
|
|
9
|
-
active?: boolean;
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* TabsPanel is inside the Tabs component.
|
|
13
|
-
* Every TabsListItem relates to a TabsPanel.
|
|
14
|
-
*/
|
|
15
|
-
export declare const TabsPanel: React.ForwardRefExoticComponent<Pick<TabsPanelProps, "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" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden" | "active"> & React.RefAttributes<HTMLDivElement>>;
|
|
16
|
-
export default TabsPanel;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
-
export interface TextAreaProps extends BaseProps<'textarea'> {
|
|
4
|
-
/**
|
|
5
|
-
* name is optional but strongly recommended.
|
|
6
|
-
*/
|
|
7
|
-
name?: string;
|
|
8
|
-
/**
|
|
9
|
-
* row is optional. The default value is 6.
|
|
10
|
-
*/
|
|
11
|
-
rows?: 4 | 5 | 6 | 7 | 8;
|
|
12
|
-
/**
|
|
13
|
-
* error is optional. The default value is false.
|
|
14
|
-
* Use this prop when there is an error at the input.
|
|
15
|
-
*/
|
|
16
|
-
error?: boolean;
|
|
17
|
-
}
|
|
18
|
-
/**
|
|
19
|
-
* Textarea component is used when you need to let users enter an
|
|
20
|
-
* amount of text that’s longer than a single line.
|
|
21
|
-
*/
|
|
22
|
-
export declare const TextArea: React.ForwardRefExoticComponent<Pick<TextAreaProps, "form" | "slot" | "style" | "title" | "as" | "className" | "color" | "id" | "lang" | "name" | "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" | "value" | "autoComplete" | "maxLength" | "minLength" | "readOnly" | "required" | "cols" | "dirName" | "rows" | "wrap" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden" | "error"> & React.RefAttributes<HTMLTextAreaElement>>;
|
|
23
|
-
export default TextArea;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
-
export interface TextInputProps extends BaseProps<'input'> {
|
|
4
|
-
/**
|
|
5
|
-
* name is optional but strongly recommended.
|
|
6
|
-
*/
|
|
7
|
-
name?: string;
|
|
8
|
-
/**
|
|
9
|
-
* characterWidth is optional.
|
|
10
|
-
*/
|
|
11
|
-
characterWidth?: 2 | 3 | 4 | 5 | 10 | 20;
|
|
12
|
-
/**
|
|
13
|
-
* cellWidth is optional.
|
|
14
|
-
* Use cellWidth prop to define a custom width for a specific reference number in your components.
|
|
15
|
-
*/
|
|
16
|
-
cellWidth?: 'one-quarter' | 'one-third' | 'one-half' | 'two-thirds' | 'three-quarters' | 'full';
|
|
17
|
-
/**
|
|
18
|
-
* error is optional. The default value is false.
|
|
19
|
-
* Use this prop when there is an error at the input.
|
|
20
|
-
*/
|
|
21
|
-
error?: boolean;
|
|
22
|
-
}
|
|
23
|
-
/**
|
|
24
|
-
* TextInput component when you need to let users enter text that’s no
|
|
25
|
-
* longer than a single line, such as their name or phone number.
|
|
26
|
-
*/
|
|
27
|
-
export declare const TextInput: React.ForwardRefExoticComponent<Pick<TextInputProps, "form" | "slot" | "style" | "title" | "pattern" | "as" | "className" | "color" | "height" | "id" | "lang" | "max" | "min" | "name" | "type" | "width" | "role" | "tabIndex" | "crossOrigin" | "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" | "alt" | "src" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "autoComplete" | "accept" | "capture" | "checked" | "list" | "maxLength" | "minLength" | "multiple" | "readOnly" | "required" | "size" | "step" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden" | "error" | "characterWidth" | "cellWidth"> & React.RefAttributes<HTMLInputElement>>;
|
|
28
|
-
export default TextInput;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
-
export interface TopProps extends BaseProps<'div'> {
|
|
4
|
-
}
|
|
5
|
-
/**
|
|
6
|
-
* Top is used inside the Layout component and it must be the first component in order.
|
|
7
|
-
*/
|
|
8
|
-
export declare const Top: React.ForwardRefExoticComponent<Pick<TopProps, "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" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
-
export default Top;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { SvgIconProps } from '@digigov/react-core/SvgIcon';
|
|
3
|
-
export interface UncheckIconProps extends SvgIconProps {
|
|
4
|
-
/**
|
|
5
|
-
* ref is optional.
|
|
6
|
-
* ref prop declares the reference of the svg icon component.
|
|
7
|
-
* It can be used to to access the DOM element and the React element.
|
|
8
|
-
*/
|
|
9
|
-
ref?: React.Ref<SVGSVGElement>;
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* Use UnUncheckIcon component when you need a uncheck/decline icon.
|
|
13
|
-
*/
|
|
14
|
-
export declare const UncheckIcon: React.FC<UncheckIconProps>;
|
|
15
|
-
export default UncheckIcon;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
-
export interface VisuallyHiddenProps extends BaseProps<'span'> {
|
|
4
|
-
}
|
|
5
|
-
/**
|
|
6
|
-
* Details for the VisuallyHidden.
|
|
7
|
-
* VisuallyHidden component provides text for screen readers that is visually hidden.
|
|
8
|
-
*/
|
|
9
|
-
export declare const VisuallyHidden: React.ForwardRefExoticComponent<Pick<VisuallyHiddenProps, "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" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & React.RefAttributes<HTMLSpanElement>>;
|
|
10
|
-
export default VisuallyHidden;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
-
export interface WarningTextProps extends BaseProps<'div'> {
|
|
4
|
-
}
|
|
5
|
-
/**
|
|
6
|
-
* WarningText.
|
|
7
|
-
* Use the WarningText component when you need to warn users about something important.
|
|
8
|
-
* The component is used with a text inside it.
|
|
9
|
-
*/
|
|
10
|
-
export declare const WarningText: React.ForwardRefExoticComponent<Pick<WarningTextProps, "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" | "margin" | "marginTop" | "marginBottom" | "marginLeft" | "marginRight" | "padding" | "paddingTop" | "paddingBottom" | "paddingLeft" | "paddingRight" | "printHidden"> & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
-
export default WarningText;
|
|
@@ -1,141 +0,0 @@
|
|
|
1
|
-
export { default as Accordion } from '@digigov/react-core/Accordion';
|
|
2
|
-
export { default as AccordionControls } from '@digigov/react-core/AccordionControls';
|
|
3
|
-
export { default as AccordionSection } from '@digigov/react-core/AccordionSection';
|
|
4
|
-
export { default as AccordionSectionContent } from '@digigov/react-core/AccordionSectionContent';
|
|
5
|
-
export { default as AccordionSectionHeader } from '@digigov/react-core/AccordionSectionHeader';
|
|
6
|
-
export { default as AccordionSectionSummary } from '@digigov/react-core/AccordionSectionSummary';
|
|
7
|
-
export { default as AccordionSectionSummaryHeading } from '@digigov/react-core/AccordionSectionSummaryHeading';
|
|
8
|
-
export { default as ArrowIcon } from '@digigov/react-core/ArrowIcon';
|
|
9
|
-
export { default as Aside } from '@digigov/react-core/Aside';
|
|
10
|
-
export { default as BackLink } from '@digigov/react-core/BackLink';
|
|
11
|
-
export { default as Blockquote } from '@digigov/react-core/Blockquote';
|
|
12
|
-
export { default as Bottom } from '@digigov/react-core/Bottom';
|
|
13
|
-
export { default as Breadcrumbs } from '@digigov/react-core/Breadcrumbs';
|
|
14
|
-
export { default as BreadcrumbsList } from '@digigov/react-core/BreadcrumbsList';
|
|
15
|
-
export { default as BreadcrumbsListItem } from '@digigov/react-core/BreadcrumbsListItem';
|
|
16
|
-
export { default as BurgerIcon } from '@digigov/react-core/BurgerIcon';
|
|
17
|
-
export { default as Button } from '@digigov/react-core/Button';
|
|
18
|
-
export { default as ButtonGroup } from '@digigov/react-core/ButtonGroup';
|
|
19
|
-
export { default as ButtonLink } from '@digigov/react-core/ButtonLink';
|
|
20
|
-
export { default as CallToAction } from '@digigov/react-core/CallToAction';
|
|
21
|
-
export { default as Card } from '@digigov/react-core/Card';
|
|
22
|
-
export { default as CardAction } from '@digigov/react-core/CardAction';
|
|
23
|
-
export { default as CardHeading } from '@digigov/react-core/CardHeading';
|
|
24
|
-
export { default as CardText } from '@digigov/react-core/CardText';
|
|
25
|
-
export { default as CaretIcon } from '@digigov/react-core/CaretIcon';
|
|
26
|
-
export { default as Checkbox } from '@digigov/react-core/Checkbox';
|
|
27
|
-
export { default as CheckboxConditional } from '@digigov/react-core/CheckboxConditional';
|
|
28
|
-
export { default as CheckboxItem } from '@digigov/react-core/CheckboxItem';
|
|
29
|
-
export { default as CheckIcon } from '@digigov/react-core/CheckIcon';
|
|
30
|
-
export { default as UncheckIcon } from '@digigov/react-core/UncheckIcon';
|
|
31
|
-
export { default as CloseIcon } from '@digigov/react-core/CloseIcon';
|
|
32
|
-
export { default as Confirmation } from '@digigov/react-core/Confirmation';
|
|
33
|
-
export { default as ConfirmationBody } from '@digigov/react-core/ConfirmationBody';
|
|
34
|
-
export { default as ConfirmationTitle } from '@digigov/react-core/ConfirmationTitle';
|
|
35
|
-
export { default as Container } from '@digigov/react-core/Container';
|
|
36
|
-
export { default as Copyright } from '@digigov/react-core/Copyright';
|
|
37
|
-
export { default as DateInput } from '@digigov/react-core/DateInput';
|
|
38
|
-
export { default as DateInputItem } from '@digigov/react-core/DateInputItem';
|
|
39
|
-
export { default as Details } from '@digigov/react-core/Details';
|
|
40
|
-
export { default as DetailsContent } from '@digigov/react-core/DetailsContent';
|
|
41
|
-
export { default as DetailsSummary } from '@digigov/react-core/DetailsSummary';
|
|
42
|
-
export { default as ErrorMessage } from '@digigov/react-core/ErrorMessage';
|
|
43
|
-
export { default as ErrorSummary } from '@digigov/react-core/ErrorSummary';
|
|
44
|
-
export { default as Fieldset } from '@digigov/react-core/Fieldset';
|
|
45
|
-
export { default as FieldsetLegend } from '@digigov/react-core/FieldsetLegend';
|
|
46
|
-
export { default as FileUpload } from '@digigov/react-core/FileUpload';
|
|
47
|
-
export { default as Footer } from '@digigov/react-core/Footer';
|
|
48
|
-
export { default as FooterContainer } from '@digigov/react-core/FooterContainer';
|
|
49
|
-
export { default as FooterContent } from '@digigov/react-core/FooterContent';
|
|
50
|
-
export { default as FooterContentLogos } from '@digigov/react-core/FooterContentLogos';
|
|
51
|
-
export { default as FooterHeading } from '@digigov/react-core/FooterHeading';
|
|
52
|
-
export { default as FooterImage } from '@digigov/react-core/FooterImage';
|
|
53
|
-
export { default as FooterInlineList } from '@digigov/react-core/FooterInlineList';
|
|
54
|
-
export { default as FooterInlineListItem } from '@digigov/react-core/FooterInlineListItem';
|
|
55
|
-
export { default as FooterLink } from '@digigov/react-core/FooterLink';
|
|
56
|
-
export { default as FooterList } from '@digigov/react-core/FooterList';
|
|
57
|
-
export { default as FooterListItem } from '@digigov/react-core/FooterListItem';
|
|
58
|
-
export { default as FooterMeta } from '@digigov/react-core/FooterMeta';
|
|
59
|
-
export { default as FooterMetaItem } from '@digigov/react-core/FooterMetaItem';
|
|
60
|
-
export { default as FooterNavigation } from '@digigov/react-core/FooterNavigation';
|
|
61
|
-
export { default as FooterSection } from '@digigov/react-core/FooterSection';
|
|
62
|
-
export { default as Field } from '@digigov/react-core/Field';
|
|
63
|
-
export { default as GovGRFooter } from '@digigov/react-core/GovGRFooter';
|
|
64
|
-
export { default as GovGRLogo } from '@digigov/react-core/GovGRLogo';
|
|
65
|
-
export { default as Grid } from '@digigov/react-core/Grid';
|
|
66
|
-
export { default as Header } from '@digigov/react-core/Header';
|
|
67
|
-
export { default as HeaderContent } from '@digigov/react-core/HeaderContent';
|
|
68
|
-
export { default as HeaderLogo } from '@digigov/react-core/HeaderLogo';
|
|
69
|
-
export { default as HeaderSecondaryLogo } from '@digigov/react-core/HeaderSecondaryLogo';
|
|
70
|
-
export { default as HeaderSection } from '@digigov/react-core/HeaderSection';
|
|
71
|
-
export { default as HeaderSubtitle } from '@digigov/react-core/HeaderSubtitle';
|
|
72
|
-
export { default as HeaderTitle } from '@digigov/react-core/HeaderTitle';
|
|
73
|
-
export { default as Heading } from '@digigov/react-core/Heading';
|
|
74
|
-
export { default as HeadingCaption } from '@digigov/react-core/HeadingCaption';
|
|
75
|
-
export { default as HellenicRepublicLogo } from '@digigov/react-core/HellenicRepublicLogo';
|
|
76
|
-
export { default as Hidden } from '@digigov/react-core/Hidden';
|
|
77
|
-
export { default as Hint } from '@digigov/react-core/Hint';
|
|
78
|
-
export { default as Label } from '@digigov/react-core/Label';
|
|
79
|
-
export { default as LabelTitle } from '@digigov/react-core/LabelTitle';
|
|
80
|
-
export { default as Layout } from '@digigov/react-core/Layout';
|
|
81
|
-
export { default as Link } from '@digigov/react-core/Link';
|
|
82
|
-
export { default as List } from '@digigov/react-core/List';
|
|
83
|
-
export { default as ListItem } from '@digigov/react-core/ListItem';
|
|
84
|
-
export { default as Main } from '@digigov/react-core/Main';
|
|
85
|
-
export { default as Masthead } from '@digigov/react-core/Masthead';
|
|
86
|
-
export { default as MastheadBody } from '@digigov/react-core/MastheadBody';
|
|
87
|
-
export { default as MoreVertIcon } from '@digigov/react-core/MoreVertIcon';
|
|
88
|
-
export { default as NavHorizontal } from '@digigov/react-core/NavHorizontal';
|
|
89
|
-
export { default as NavHorizontalList } from '@digigov/react-core/NavHorizontalList';
|
|
90
|
-
export { default as NavHorizontalListItem } from '@digigov/react-core/NavHorizontalListItem';
|
|
91
|
-
export { default as NavVertical } from '@digigov/react-core/NavVertical';
|
|
92
|
-
export { default as NavVerticalItem } from '@digigov/react-core/NavVerticalItem';
|
|
93
|
-
export { default as NormalText } from '@digigov/react-core/NormalText';
|
|
94
|
-
export { default as NotificationBanner } from '@digigov/react-core/NotificationBanner';
|
|
95
|
-
export { default as NotificationBannerContent } from '@digigov/react-core/NotificationBannerContent';
|
|
96
|
-
export { default as NotificationBannerHeader } from '@digigov/react-core/NotificationBannerHeader';
|
|
97
|
-
export { default as NotificationBannerHeading } from '@digigov/react-core/NotificationBannerHeading';
|
|
98
|
-
export { default as NotificationBannerLink } from '@digigov/react-core/NotificationBannerLink';
|
|
99
|
-
export { default as PageTitle } from '@digigov/react-core/PageTitle';
|
|
100
|
-
export { default as PageTitleCaption } from '@digigov/react-core/PageTitleCaption';
|
|
101
|
-
export { default as PageTitleHeading } from '@digigov/react-core/PageTitleHeading';
|
|
102
|
-
export { default as PageTitleSection } from '@digigov/react-core/PageTitleSection';
|
|
103
|
-
export { default as Paragraph } from '@digigov/react-core/Paragraph';
|
|
104
|
-
export { default as PhaseBannerHeaderContainer } from '@digigov/react-core/PhaseBannerHeaderContainer';
|
|
105
|
-
export { default as PhaseBanner } from '@digigov/react-core/PhaseBanner';
|
|
106
|
-
export { default as PhaseBannerTag } from '@digigov/react-core/PhaseBannerTag';
|
|
107
|
-
export { default as PhaseBannerText } from '@digigov/react-core/PhaseBannerText';
|
|
108
|
-
export { default as Radio } from '@digigov/react-core/Radio';
|
|
109
|
-
export { default as RadioItem } from '@digigov/react-core/RadioItem';
|
|
110
|
-
export { default as RadioConditional } from '@digigov/react-core/RadioConditional';
|
|
111
|
-
export { default as SectionBreak } from '@digigov/react-core/SectionBreak';
|
|
112
|
-
export { default as Select } from '@digigov/react-core/Select';
|
|
113
|
-
export { default as SelectOption } from '@digigov/react-core/SelectOption';
|
|
114
|
-
export { default as ServiceBadge } from '@digigov/react-core/ServiceBadge';
|
|
115
|
-
export { default as SkipLink } from '@digigov/react-core/SkipLink';
|
|
116
|
-
export { default as SummaryList } from '@digigov/react-core/SummaryList';
|
|
117
|
-
export { default as SummaryListItem } from '@digigov/react-core/SummaryListItem';
|
|
118
|
-
export { default as SummaryListItemAction } from '@digigov/react-core/SummaryListItemAction';
|
|
119
|
-
export { default as SummaryListItemKey } from '@digigov/react-core/SummaryListItemKey';
|
|
120
|
-
export { default as SummaryListItemValue } from '@digigov/react-core/SummaryListItemValue';
|
|
121
|
-
export { default as SvgIcon } from '@digigov/react-core/SvgIcon';
|
|
122
|
-
export { default as Table } from '@digigov/react-core/Table';
|
|
123
|
-
export { default as TableBody } from '@digigov/react-core/TableBody';
|
|
124
|
-
export { default as TableCaption } from '@digigov/react-core/TableCaption';
|
|
125
|
-
export { default as TableContainer } from '@digigov/react-core/TableContainer';
|
|
126
|
-
export { default as TableDataCell } from '@digigov/react-core/TableDataCell';
|
|
127
|
-
export { default as TableNoDataRow } from '@digigov/react-core/TableNoDataRow';
|
|
128
|
-
export { default as TableHead } from '@digigov/react-core/TableHead';
|
|
129
|
-
export { default as TableHeadCell } from '@digigov/react-core/TableHeadCell';
|
|
130
|
-
export { default as TableRow } from '@digigov/react-core/TableRow';
|
|
131
|
-
export { default as Tabs } from '@digigov/react-core/Tabs';
|
|
132
|
-
export { default as TabsHeading } from '@digigov/react-core/TabsHeading';
|
|
133
|
-
export { default as TabsList } from '@digigov/react-core/TabsList';
|
|
134
|
-
export { default as TabsListItem } from '@digigov/react-core/TabsListItem';
|
|
135
|
-
export { default as TabsPanel } from '@digigov/react-core/TabsPanel';
|
|
136
|
-
export { default as TextArea } from '@digigov/react-core/TextArea';
|
|
137
|
-
export { default as TextInput } from '@digigov/react-core/TextInput';
|
|
138
|
-
export { default as Top } from '@digigov/react-core/Top';
|
|
139
|
-
export { default as Base } from '@digigov/react-core/Base';
|
|
140
|
-
export { default as VisuallyHidden } from '@digigov/react-core/VisuallyHidden';
|
|
141
|
-
export { default as WarningText } from '@digigov/react-core/WarningText';
|