@digigov/react-experimental 2.0.0-b3ec0588 → 2.0.0-d57821ba
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/FloatingButton/index.js +23 -23
- package/FloatingButton/index.js.map +7 -0
- package/Kitchensink/AllComponents/index.js +8 -0
- package/{FloatingButton/index.test → Kitchensink/AllComponents}/package.json +1 -1
- package/Kitchensink/AllComponents.js.map +7 -0
- package/Kitchensink/KitchensinkByCategory/index.js +48 -0
- package/Kitchensink/KitchensinkByCategory/package.json +6 -0
- package/Kitchensink/KitchensinkByCategory.js.map +7 -0
- package/Kitchensink/KitchensinkByLetter/index.js +27 -0
- package/{OptionButtonSteps/index.test → Kitchensink/KitchensinkByLetter}/package.json +1 -1
- package/Kitchensink/KitchensinkByLetter.js.map +7 -0
- package/Kitchensink/KitchensinkComponent/index.js +32 -0
- package/Kitchensink/KitchensinkComponent/package.json +6 -0
- package/Kitchensink/KitchensinkComponent.js.map +7 -0
- package/Kitchensink/KitchensinkDashboard/index.js +45 -0
- package/Kitchensink/KitchensinkDashboard/package.json +6 -0
- package/Kitchensink/KitchensinkDashboard.js.map +7 -0
- package/Kitchensink/index.js +6 -0
- package/Kitchensink/index.js.map +7 -0
- package/{OptionButtonBase/index.test → Kitchensink}/package.json +1 -1
- package/OptionButtonBase/index.js +24 -23
- package/OptionButtonBase/index.js.map +7 -0
- package/OptionButtonSteps/index.js +34 -29
- package/OptionButtonSteps/index.js.map +7 -0
- package/cjs/FloatingButton/index.js +55 -29
- package/cjs/FloatingButton/index.js.map +7 -0
- package/cjs/Kitchensink/AllComponents/index.js +41 -0
- package/cjs/Kitchensink/AllComponents.js.map +7 -0
- package/cjs/Kitchensink/KitchensinkByCategory/index.js +77 -0
- package/cjs/Kitchensink/KitchensinkByCategory.js.map +7 -0
- package/cjs/Kitchensink/KitchensinkByLetter/index.js +60 -0
- package/cjs/Kitchensink/KitchensinkByLetter.js.map +7 -0
- package/cjs/Kitchensink/KitchensinkComponent/index.js +62 -0
- package/cjs/Kitchensink/KitchensinkComponent.js.map +7 -0
- package/cjs/Kitchensink/KitchensinkDashboard/index.js +78 -0
- package/cjs/Kitchensink/KitchensinkDashboard.js.map +7 -0
- package/cjs/Kitchensink/index.js +30 -0
- package/cjs/Kitchensink/index.js.map +7 -0
- package/cjs/OptionButtonBase/index.js +56 -29
- package/cjs/OptionButtonBase/index.js.map +7 -0
- package/cjs/OptionButtonSteps/index.js +66 -35
- package/cjs/OptionButtonSteps/index.js.map +7 -0
- package/cjs/index.js +27 -37
- package/cjs/index.js.map +7 -0
- package/index.js +6 -4
- package/index.js.map +7 -0
- package/libs/form/src/Field/FieldBase.d.ts +3 -0
- package/libs/form/src/Field/FieldBaseContainer.d.ts +4 -0
- package/libs/form/src/Field/FieldConditional.d.ts +4 -0
- package/libs/form/src/Field/index.d.ts +4 -0
- package/libs/form/src/Field/types.d.ts +119 -0
- package/libs/form/src/Field/utils/calculateField.d.ts +2 -0
- package/libs/form/src/Field/utils/evaluateFieldWithConditions.d.ts +2 -0
- package/libs/form/src/Field/utils/index.d.ts +3 -0
- package/libs/form/src/Field/utils/useField.d.ts +2 -0
- package/libs/form/src/FieldArray/index.d.ts +11 -0
- package/libs/form/src/FieldObject/index.d.ts +23 -0
- package/libs/form/src/Fieldset/index.d.ts +8 -0
- package/libs/form/src/Fieldset/types.d.ts +10 -0
- package/libs/form/src/FormBuilder/index.d.ts +3 -0
- package/libs/form/src/FormContext.d.ts +3 -0
- package/libs/form/src/MultiplicityField/add-objects.d.ts +14 -0
- package/libs/form/src/MultiplicityField/index.d.ts +15 -0
- package/libs/form/src/MultiplicityField/types.d.ts +19 -0
- package/libs/form/src/index.d.ts +9 -0
- package/libs/form/src/inputs/AutoCompleteInput/index.d.ts +14 -0
- package/libs/form/src/inputs/Checkboxes/index.d.ts +13 -0
- package/libs/form/src/inputs/DateInput/index.d.ts +14 -0
- package/libs/form/src/inputs/FileInput/index.d.ts +14 -0
- package/libs/form/src/inputs/ImageInput/index.d.ts +25 -0
- package/libs/form/src/inputs/Input/index.d.ts +16 -0
- package/libs/form/src/inputs/Label/index.d.ts +21 -0
- package/libs/form/src/inputs/OtpInput/index.d.ts +16 -0
- package/libs/form/src/inputs/Radio/index.d.ts +13 -0
- package/libs/form/src/inputs/Select/index.d.ts +11 -0
- package/libs/form/src/internal.d.ts +5 -0
- package/libs/form/src/types.d.ts +55 -0
- package/libs/form/src/utils.d.ts +8 -0
- package/libs/form/src/validators/index.d.ts +9 -0
- package/libs/form/src/validators/types.d.ts +2 -0
- package/libs/form/src/validators/utils/afm.d.ts +6 -0
- package/libs/form/src/validators/utils/file.d.ts +3 -0
- package/libs/form/src/validators/utils/iban.d.ts +4 -0
- package/libs/form/src/validators/utils/image.d.ts +3 -0
- package/libs/form/src/validators/utils/index.d.ts +27 -0
- package/libs/form/src/validators/utils/int.d.ts +3 -0
- package/libs/form/src/validators/utils/number.d.ts +3 -0
- package/libs/form/src/validators/utils/otp.d.ts +4 -0
- package/libs/form/src/validators/utils/phone.d.ts +11 -0
- package/libs/form/src/validators/utils/postal_code.d.ts +4 -0
- package/libs/form/src/validators/utils/text_limit.d.ts +4 -0
- package/libs/form/src/validators/utils/uuid4.d.ts +6 -0
- package/libs/ui/src/api/APIErrors.d.ts +23 -0
- package/libs/ui/src/api/APIProvider.d.ts +16 -0
- package/libs/ui/src/api/fetchAPI.d.ts +14 -0
- package/libs/ui/src/api/index.d.ts +8 -0
- package/libs/ui/src/api/useResource.d.ts +11 -0
- package/libs/ui/src/api/useResourceAction.d.ts +2 -0
- package/libs/ui/src/api/useResourceQuery.d.ts +18 -0
- package/libs/ui/src/api/utils.d.ts +10 -0
- package/libs/ui/src/app/App.d.ts +7 -0
- package/libs/ui/src/app/BannerContainer/BannerContainer.stories.d.ts +10 -0
- package/libs/ui/src/app/BannerContainer/__stories__/CookiesBanner.d.ts +3 -0
- package/libs/ui/src/app/BannerContainer/index.d.ts +3 -0
- package/libs/ui/src/app/BottomInfo/index.d.ts +5 -0
- package/libs/ui/src/app/CloseButton/index.d.ts +3 -0
- package/libs/ui/src/app/FilterContainer/index.d.ts +11 -0
- package/libs/ui/src/app/Footer/Footer.stories.d.ts +18 -0
- package/libs/ui/src/app/Footer/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/Footer/__stories__/DefaultCopyright.d.ts +3 -0
- package/libs/ui/src/app/Footer/__stories__/FooterAllInclusive.d.ts +3 -0
- package/libs/ui/src/app/Footer/__stories__/FooterWithLink.d.ts +3 -0
- package/libs/ui/src/app/Footer/__stories__/FooterWithLogo.d.ts +3 -0
- package/libs/ui/src/app/Footer/__stories__/FooterWithSecondaryNavigation.d.ts +3 -0
- package/libs/ui/src/app/Footer/__stories__/FooterWithText.d.ts +3 -0
- package/libs/ui/src/app/Footer/__stories__/YearCopyright.d.ts +3 -0
- package/libs/ui/src/app/Footer/index.d.ts +15 -0
- package/libs/ui/src/app/Header/Header.stories.d.ts +18 -0
- package/libs/ui/src/app/Header/HeaderContent.d.ts +3 -0
- package/libs/ui/src/app/Header/HeaderLogo.d.ts +3 -0
- package/libs/ui/src/app/Header/HeaderNavMenuContent.d.ts +3 -0
- package/libs/ui/src/app/Header/HeaderSecondaryLogo.d.ts +3 -0
- package/libs/ui/src/app/Header/HeaderSection.d.ts +3 -0
- package/libs/ui/src/app/Header/HeaderTitle.d.ts +3 -0
- package/libs/ui/src/app/Header/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/Header/__stories__/WithHeaderNavigation.d.ts +3 -0
- package/libs/ui/src/app/Header/__stories__/WithNavigation.d.ts +3 -0
- package/libs/ui/src/app/Header/__stories__/WithServiceName.d.ts +3 -0
- package/libs/ui/src/app/Header/__stories__/WithServiceNameAndLogo.d.ts +3 -0
- package/libs/ui/src/app/Header/index.d.ts +9 -0
- package/libs/ui/src/app/Loader/Loader.stories.d.ts +8 -0
- package/libs/ui/src/app/Loader/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/Loader/index.d.ts +5 -0
- package/libs/ui/src/app/Masthead/Masthead.stories.d.ts +13 -0
- package/libs/ui/src/app/Masthead/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/Masthead/__stories__/WithElements.d.ts +3 -0
- package/libs/ui/src/app/Masthead/__stories__/WithLogo.d.ts +3 -0
- package/libs/ui/src/app/Masthead/index.d.ts +5 -0
- package/libs/ui/src/app/Modal/Modal.d.ts +8 -0
- package/libs/ui/src/app/Modal/Modal.stories.d.ts +15 -0
- package/libs/ui/src/app/Modal/__stories__/AlertDialog.d.ts +3 -0
- package/libs/ui/src/app/Modal/__stories__/Auto.d.ts +3 -0
- package/libs/ui/src/app/Modal/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/Modal/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/app/Modal/__stories__/WithHooks.d.ts +3 -0
- package/libs/ui/src/app/Modal/__stories__/WithoutModalGaps.d.ts +3 -0
- package/libs/ui/src/app/Modal/auto.d.ts +21 -0
- package/libs/ui/src/app/Modal/hooks.d.ts +26 -0
- package/libs/ui/src/app/Modal/index.d.ts +10 -0
- package/libs/ui/src/app/NotFound/NotFound.stories.d.ts +8 -0
- package/libs/ui/src/app/NotFound/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/NotFound/index.d.ts +3 -0
- package/libs/ui/src/app/OutdatedBrowserBanner/hooks/evaluateBrowserVersion.d.ts +15 -0
- package/libs/ui/src/app/OutdatedBrowserBanner/hooks/useOutdatedBrowserCheck.d.ts +2 -0
- package/libs/ui/src/app/OutdatedBrowserBanner/index.d.ts +3 -0
- package/libs/ui/src/app/PageTitleContainer/index.d.ts +5 -0
- package/libs/ui/src/app/Panel/Panel.stories.d.ts +10 -0
- package/libs/ui/src/app/Panel/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/Panel/index.d.ts +5 -0
- package/libs/ui/src/app/PhaseBannerHeader/PhaseBannerHeader.stories.d.ts +8 -0
- package/libs/ui/src/app/PhaseBannerHeader/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/PhaseBannerHeader/index.d.ts +8 -0
- package/libs/ui/src/app/QrCodeScanner/QrCodeScanner.stories.d.ts +8 -0
- package/libs/ui/src/app/QrCodeScanner/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/QrCodeScanner/index.d.ts +35 -0
- package/libs/ui/src/app/QrCodeViewer/QRCode.stories.d.ts +9 -0
- package/libs/ui/src/app/QrCodeViewer/__stories__/Custom.d.ts +3 -0
- package/libs/ui/src/app/QrCodeViewer/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/QrCodeViewer/index.d.ts +6 -0
- package/libs/ui/src/app/QrCodeViewer/qrcodegen.d.ts +100 -0
- package/libs/ui/src/app/QrCodeViewer/types.d.ts +28 -0
- package/libs/ui/src/app/QrCodeViewer/utils.d.ts +11 -0
- package/libs/ui/src/app/Skeleton/Skeleton.stories.d.ts +17 -0
- package/libs/ui/src/app/Skeleton/__stories__/Button.d.ts +3 -0
- package/libs/ui/src/app/Skeleton/__stories__/Circular.d.ts +3 -0
- package/libs/ui/src/app/Skeleton/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/app/Skeleton/__stories__/NoAnimation.d.ts +3 -0
- package/libs/ui/src/app/Skeleton/__stories__/Rectangular.d.ts +3 -0
- package/libs/ui/src/app/Skeleton/__stories__/SpecificWidthAndHeight.d.ts +3 -0
- package/libs/ui/src/app/Skeleton/__stories__/TextSizes.d.ts +3 -0
- package/libs/ui/src/app/Skeleton/__stories__/UnderTypography.d.ts +3 -0
- package/libs/ui/src/app/Skeleton/__stories__/WithChildren.d.ts +3 -0
- package/libs/ui/src/app/Skeleton/index.d.ts +3 -0
- package/libs/ui/src/app/ThemeOptions/index.d.ts +17 -0
- package/libs/ui/src/app/hooks/useFontSize.d.ts +6 -0
- package/libs/ui/src/app/hooks/useHighlightLinks.d.ts +8 -0
- package/libs/ui/src/app/hooks/useLetterSpacing.d.ts +6 -0
- package/libs/ui/src/app/hooks/useLineHeight.d.ts +6 -0
- package/libs/ui/src/app/hooks/useTheme.d.ts +8 -0
- package/libs/ui/src/app/hooks/useVariantVars.d.ts +8 -0
- package/libs/ui/src/app/index.d.ts +16 -0
- package/libs/ui/src/content/Accordion/Accordion.stories.d.ts +14 -0
- package/libs/ui/src/content/Accordion/__stories__/Auto.d.ts +3 -0
- package/libs/ui/src/content/Accordion/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/Accordion/__stories__/WithHints.d.ts +3 -0
- package/libs/ui/src/content/Accordion/__stories__/WithHook.d.ts +3 -0
- package/libs/ui/src/content/Accordion/auto.d.ts +19 -0
- package/libs/ui/src/content/Accordion/hooks.d.ts +26 -0
- package/libs/ui/src/content/Accordion/index.d.ts +10 -0
- package/libs/ui/src/content/Blockquote/Blockquote.stories.d.ts +11 -0
- package/libs/ui/src/content/Blockquote/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/Blockquote/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/content/Blockquote/index.d.ts +3 -0
- package/libs/ui/src/content/Card/Card.stories.d.ts +21 -0
- package/libs/ui/src/content/Card/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/Card/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/content/Card/__stories__/WithClickableContent.d.ts +3 -0
- package/libs/ui/src/content/Card/__stories__/WithClickableLink.d.ts +3 -0
- package/libs/ui/src/content/Card/__stories__/WithDarkBorder.d.ts +3 -0
- package/libs/ui/src/content/Card/__stories__/WithDarkTopBorder.d.ts +3 -0
- package/libs/ui/src/content/Card/__stories__/WithDivider.d.ts +3 -0
- package/libs/ui/src/content/Card/__stories__/WithGrayBorder.d.ts +3 -0
- package/libs/ui/src/content/Card/__stories__/WithGrayTopBorder.d.ts +3 -0
- package/libs/ui/src/content/Card/__stories__/WithGroupButton.d.ts +3 -0
- package/libs/ui/src/content/Card/__stories__/WithLink.d.ts +3 -0
- package/libs/ui/src/content/Card/index.d.ts +6 -0
- package/libs/ui/src/content/Chip/Chip.stories.d.ts +12 -0
- package/libs/ui/src/content/Chip/__stories__/ClickableChip.d.ts +3 -0
- package/libs/ui/src/content/Chip/__stories__/ClickableDeletableChip.d.ts +3 -0
- package/libs/ui/src/content/Chip/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/Chip/__stories__/DeletableChip.d.ts +3 -0
- package/libs/ui/src/content/Chip/__stories__/GroupOfChips.d.ts +3 -0
- package/libs/ui/src/content/Chip/index.d.ts +6 -0
- package/libs/ui/src/content/Details/Details.stories.d.ts +10 -0
- package/libs/ui/src/content/Details/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/Details/index.d.ts +5 -0
- package/libs/ui/src/content/FillableText/index.d.ts +4 -0
- package/libs/ui/src/content/List/List.d.ts +3 -0
- package/libs/ui/src/content/List/List.stories.d.ts +15 -0
- package/libs/ui/src/content/List/ListItem.d.ts +3 -0
- package/libs/ui/src/content/List/__stories__/BulletList.d.ts +3 -0
- package/libs/ui/src/content/List/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/List/__stories__/HorizontalList.d.ts +3 -0
- package/libs/ui/src/content/List/__stories__/NestedBulletList.d.ts +3 -0
- package/libs/ui/src/content/List/__stories__/NumberedList.d.ts +3 -0
- package/libs/ui/src/content/List/__stories__/WithExtraSpace.d.ts +3 -0
- package/libs/ui/src/content/List/index.d.ts +3 -0
- package/libs/ui/src/content/Markdown/index.d.ts +6 -0
- package/libs/ui/src/content/Markdown/useMarkdownToHTML.d.ts +6 -0
- package/libs/ui/src/content/SafeHTML/index.d.ts +10 -0
- package/libs/ui/src/content/StepNav/StepNav.stories.d.ts +13 -0
- package/libs/ui/src/content/StepNav/__stories__/Auto.d.ts +3 -0
- package/libs/ui/src/content/StepNav/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/StepNav/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/content/StepNav/__stories__/WithHints.d.ts +3 -0
- package/libs/ui/src/content/StepNav/__stories__/WithHook.d.ts +3 -0
- package/libs/ui/src/content/StepNav/auto.d.ts +19 -0
- package/libs/ui/src/content/StepNav/index.d.ts +16 -0
- package/libs/ui/src/content/SummaryList/SummaryList.stories.d.ts +16 -0
- package/libs/ui/src/content/SummaryList/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/SummaryList/__stories__/RowVariations.d.ts +3 -0
- package/libs/ui/src/content/SummaryList/__stories__/WithActions.d.ts +3 -0
- package/libs/ui/src/content/SummaryList/__stories__/WithKeyAndAction.d.ts +3 -0
- package/libs/ui/src/content/SummaryList/__stories__/WithNoLastBorder.d.ts +3 -0
- package/libs/ui/src/content/SummaryList/__stories__/WithoutActions.d.ts +3 -0
- package/libs/ui/src/content/SummaryList/__stories__/WithoutBorders.d.ts +3 -0
- package/libs/ui/src/content/SummaryList/index.d.ts +7 -0
- package/libs/ui/src/content/Table/Table.stories.d.ts +27 -0
- package/libs/ui/src/content/Table/TableFloatingScroll.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/DarkVariant.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/DarkVariantWithVerticalHeaders.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/DefinedWidth.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/Densed.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/Full.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/MultipleProps.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/NoData.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/NumericDataType.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/RowColors.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/Stacked.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/TableCaptions.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/VerticalBorders.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/VerticalHeaders.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/WithFloatingScroll.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/WithLoader.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/WithSortFilters.d.ts +3 -0
- package/libs/ui/src/content/Table/__stories__/ZebraProp.d.ts +3 -0
- package/libs/ui/src/content/Table/hooks/useSort.d.ts +9 -0
- package/libs/ui/src/content/Table/index.d.ts +28 -0
- package/libs/ui/src/content/TaskList/TaskList.stories.d.ts +10 -0
- package/libs/ui/src/content/TaskList/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/TaskList/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/content/TaskList/index.d.ts +7 -0
- package/libs/ui/src/content/Timeline/Timeline.stories.d.ts +10 -0
- package/libs/ui/src/content/Timeline/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/content/Timeline/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/content/Timeline/index.d.ts +7 -0
- package/libs/ui/src/content/index.d.ts +12 -0
- package/libs/ui/src/feedback/CopyToClipboard/CopyToClipboard.stories.d.ts +10 -0
- package/libs/ui/src/feedback/CopyToClipboard/__stories__/Banner.d.ts +3 -0
- package/libs/ui/src/feedback/CopyToClipboard/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/feedback/CopyToClipboard/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/feedback/CopyToClipboard/index.d.ts +12 -0
- package/libs/ui/src/feedback/ErrorSummary/ErrorSummary.stories.d.ts +15 -0
- package/libs/ui/src/feedback/ErrorSummary/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/feedback/ErrorSummary/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/feedback/ErrorSummary/__stories__/LinkedToCheckbox.d.ts +3 -0
- package/libs/ui/src/feedback/ErrorSummary/__stories__/LinkedToField.d.ts +3 -0
- package/libs/ui/src/feedback/ErrorSummary/__stories__/LinkedToInput.d.ts +3 -0
- package/libs/ui/src/feedback/ErrorSummary/__stories__/WithBackLinkAndButton.d.ts +3 -0
- package/libs/ui/src/feedback/ErrorSummary/index.d.ts +3 -0
- package/libs/ui/src/feedback/NotificationBanner/NotificationBanner.stories.d.ts +13 -0
- package/libs/ui/src/feedback/NotificationBanner/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/feedback/NotificationBanner/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/feedback/NotificationBanner/__stories__/Success.d.ts +3 -0
- package/libs/ui/src/feedback/NotificationBanner/index.d.ts +18 -0
- package/libs/ui/src/feedback/PhaseBanner/PhaseBanner.stories.d.ts +11 -0
- package/libs/ui/src/feedback/PhaseBanner/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/feedback/PhaseBanner/__stories__/Underlined.d.ts +3 -0
- package/libs/ui/src/feedback/PhaseBanner/index.d.ts +6 -0
- package/libs/ui/src/feedback/WarningText/WarningText.stories.d.ts +12 -0
- package/libs/ui/src/feedback/WarningText/__stories__/AssistiveText.d.ts +3 -0
- package/libs/ui/src/feedback/WarningText/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/feedback/WarningText/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/feedback/WarningText/index.d.ts +3 -0
- package/libs/ui/src/feedback/index.d.ts +5 -0
- package/libs/ui/src/form/AutoComplete/AutoComplete.stories.d.ts +17 -0
- package/libs/ui/src/form/AutoComplete/Status/index.d.ts +42 -0
- package/libs/ui/src/form/AutoComplete/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/form/AutoComplete/__stories__/Multiple.d.ts +3 -0
- package/libs/ui/src/form/AutoComplete/__stories__/MultipleShowingTwoSelected.d.ts +3 -0
- package/libs/ui/src/form/AutoComplete/__stories__/MultipleWithDefaultValues.d.ts +3 -0
- package/libs/ui/src/form/AutoComplete/__stories__/MultipleWithMinLength.d.ts +3 -0
- package/libs/ui/src/form/AutoComplete/__stories__/WithAutoSelect.d.ts +3 -0
- package/libs/ui/src/form/AutoComplete/__stories__/WithDefaultValue.d.ts +3 -0
- package/libs/ui/src/form/AutoComplete/__stories__/WithMinLength.d.ts +3 -0
- package/libs/ui/src/form/AutoComplete/__stories__/WithPlaceHolder.d.ts +3 -0
- package/libs/ui/src/form/AutoComplete/__stories__/WithShowAllValues.d.ts +3 -0
- package/libs/ui/src/form/AutoComplete/index.d.ts +110 -0
- package/libs/ui/src/form/AutoComplete/utils.d.ts +12 -0
- package/libs/ui/src/form/Button/Button.stories.d.ts +21 -0
- package/libs/ui/src/form/Button/ButtonLink.d.ts +3 -0
- package/libs/ui/src/form/Button/CallToAction.d.ts +3 -0
- package/libs/ui/src/form/Button/ThemeToggleButton.d.ts +3 -0
- package/libs/ui/src/form/Button/__stories__/Back.d.ts +4 -0
- package/libs/ui/src/form/Button/__stories__/ButtonLinkButton.d.ts +6 -0
- package/libs/ui/src/form/Button/__stories__/CallToActionButton.d.ts +3 -0
- package/libs/ui/src/form/Button/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/form/Button/__stories__/Disabled.d.ts +3 -0
- package/libs/ui/src/form/Button/__stories__/GroupingButtons.d.ts +3 -0
- package/libs/ui/src/form/Button/__stories__/GroupingButtonsAndLinks.d.ts +3 -0
- package/libs/ui/src/form/Button/__stories__/Primary.d.ts +3 -0
- package/libs/ui/src/form/Button/__stories__/Secondary.d.ts +3 -0
- package/libs/ui/src/form/Button/__stories__/ThemeToggle.d.ts +3 -0
- package/libs/ui/src/form/Button/__stories__/Warning.d.ts +3 -0
- package/libs/ui/src/form/Button/__stories__/WithVariantLink.d.ts +3 -0
- package/libs/ui/src/form/Button/index.d.ts +13 -0
- package/libs/ui/src/form/Checkbox/Checkbox.stories.d.ts +19 -0
- package/libs/ui/src/form/Checkbox/__stories__/ConditionalReveal.d.ts +3 -0
- package/libs/ui/src/form/Checkbox/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/form/Checkbox/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/form/Checkbox/__stories__/Inline.d.ts +3 -0
- package/libs/ui/src/form/Checkbox/__stories__/InlineWithDivider.d.ts +3 -0
- package/libs/ui/src/form/Checkbox/__stories__/MultipleQuestions.d.ts +3 -0
- package/libs/ui/src/form/Checkbox/__stories__/NoneAnswer.d.ts +3 -0
- package/libs/ui/src/form/Checkbox/__stories__/NoneAnswerWithError.d.ts +3 -0
- package/libs/ui/src/form/Checkbox/__stories__/WithErrorMessage.d.ts +3 -0
- package/libs/ui/src/form/Checkbox/__stories__/WithHint.d.ts +3 -0
- package/libs/ui/src/form/Checkbox/index.d.ts +5 -0
- package/libs/ui/src/form/DateInputContainer/DateInputContainer.stories.d.ts +14 -0
- package/libs/ui/src/form/DateInputContainer/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/form/DateInputContainer/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/form/DateInputContainer/__stories__/MultipleQuestions.d.ts +3 -0
- package/libs/ui/src/form/DateInputContainer/__stories__/WithErrorMessage.d.ts +3 -0
- package/libs/ui/src/form/DateInputContainer/__stories__/WithErrorMessageForSingleField.d.ts +3 -0
- package/libs/ui/src/form/DateInputContainer/index.d.ts +4 -0
- package/libs/ui/src/form/ErrorMessage/ErrorMessage.stories.d.ts +12 -0
- package/libs/ui/src/form/ErrorMessage/__stories__/DateInputError.d.ts +3 -0
- package/libs/ui/src/form/ErrorMessage/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/form/ErrorMessage/__stories__/ErrorMessageOnly.d.ts +3 -0
- package/libs/ui/src/form/ErrorMessage/index.d.ts +3 -0
- package/libs/ui/src/form/FieldContainer/index.d.ts +5 -0
- package/libs/ui/src/form/FileUpload/FileUpload.stories.d.ts +10 -0
- package/libs/ui/src/form/FileUpload/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/form/FileUpload/__stories__/WithErrorMessage.d.ts +3 -0
- package/libs/ui/src/form/FileUpload/index.d.ts +4 -0
- package/libs/ui/src/form/Form/index.d.ts +3 -0
- package/libs/ui/src/form/LabelContainer/index.d.ts +4 -0
- package/libs/ui/src/form/RadioContainer/RadioContainer.stories.d.ts +19 -0
- package/libs/ui/src/form/RadioContainer/__stories__/ConditionalReveal.d.ts +3 -0
- package/libs/ui/src/form/RadioContainer/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/form/RadioContainer/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/form/RadioContainer/__stories__/Inline.d.ts +3 -0
- package/libs/ui/src/form/RadioContainer/__stories__/InlineWithDivider.d.ts +3 -0
- package/libs/ui/src/form/RadioContainer/__stories__/MultipleQuestions.d.ts +3 -0
- package/libs/ui/src/form/RadioContainer/__stories__/NoneAnswer.d.ts +3 -0
- package/libs/ui/src/form/RadioContainer/__stories__/WithErrorMessage.d.ts +3 -0
- package/libs/ui/src/form/RadioContainer/__stories__/WithHints.d.ts +3 -0
- package/libs/ui/src/form/RadioContainer/__stories__/WithMediumLegend.d.ts +3 -0
- package/libs/ui/src/form/RadioContainer/index.d.ts +6 -0
- package/libs/ui/src/form/SearchContainer/index.d.ts +5 -0
- package/libs/ui/src/form/SelectContainer/SelectContainer.stories.d.ts +13 -0
- package/libs/ui/src/form/SelectContainer/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/form/SelectContainer/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/form/SelectContainer/__stories__/DisabledInput.d.ts +3 -0
- package/libs/ui/src/form/SelectContainer/__stories__/WithHint.d.ts +3 -0
- package/libs/ui/src/form/SelectContainer/index.d.ts +4 -0
- package/libs/ui/src/form/SingleCharacterInputs/SingleCharacterInput.stories.d.ts +13 -0
- package/libs/ui/src/form/SingleCharacterInputs/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/form/SingleCharacterInputs/__stories__/WithDefaultError.d.ts +3 -0
- package/libs/ui/src/form/SingleCharacterInputs/__stories__/WithErrorMessageInvalidCode.d.ts +3 -0
- package/libs/ui/src/form/SingleCharacterInputs/__stories__/WithErrorMessageLessDigit.d.ts +3 -0
- package/libs/ui/src/form/SingleCharacterInputs/index.d.ts +4 -0
- package/libs/ui/src/form/TextArea/TextArea.stories.d.ts +17 -0
- package/libs/ui/src/form/TextArea/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/form/TextArea/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/form/TextArea/__stories__/DisabledInput.d.ts +3 -0
- package/libs/ui/src/form/TextArea/__stories__/LimitedCharacters.d.ts +3 -0
- package/libs/ui/src/form/TextArea/__stories__/MultipleQuestions.d.ts +3 -0
- package/libs/ui/src/form/TextArea/__stories__/WithDeclaredRows.d.ts +3 -0
- package/libs/ui/src/form/TextArea/__stories__/WithErrorMessage.d.ts +3 -0
- package/libs/ui/src/form/TextArea/__stories__/WithHint.d.ts +3 -0
- package/libs/ui/src/form/TextArea/index.d.ts +3 -0
- package/libs/ui/src/form/TextInput/TextInput.stories.d.ts +19 -0
- package/libs/ui/src/form/TextInput/__stories__/AskingForNumbers.d.ts +3 -0
- package/libs/ui/src/form/TextInput/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/form/TextInput/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/form/TextInput/__stories__/DisabledInput.d.ts +3 -0
- package/libs/ui/src/form/TextInput/__stories__/DisabledInputWithValue.d.ts +3 -0
- package/libs/ui/src/form/TextInput/__stories__/FixedWidths.d.ts +3 -0
- package/libs/ui/src/form/TextInput/__stories__/FluidWidths.d.ts +3 -0
- package/libs/ui/src/form/TextInput/__stories__/MultipleQuestions.d.ts +3 -0
- package/libs/ui/src/form/TextInput/__stories__/WithErrorMessage.d.ts +3 -0
- package/libs/ui/src/form/TextInput/__stories__/WithHint.d.ts +3 -0
- package/libs/ui/src/form/TextInput/index.d.ts +3 -0
- package/libs/ui/src/form/index.d.ts +15 -0
- package/libs/ui/src/govgr/Footer/Copyright.d.ts +12 -0
- package/libs/ui/src/govgr/Footer/HellenicRepublicLogo.d.ts +3 -0
- package/libs/ui/src/govgr/Footer/LicenseCCSA.d.ts +3 -0
- package/libs/ui/src/govgr/Footer/index.d.ts +13 -0
- package/libs/ui/src/govgr/Footer/logo.d.ts +2 -0
- package/libs/ui/src/govgr/Footer/logos/logo-el.d.ts +2 -0
- package/libs/ui/src/govgr/Footer/logos/logo-en.d.ts +2 -0
- package/libs/ui/src/govgr/GovGRLogo/index.d.ts +3 -0
- package/libs/ui/src/govgr/GovGRLogo/logo.d.ts +2 -0
- package/libs/ui/src/govgr/images/govgr-logo-base64.d.ts +2 -0
- package/libs/ui/src/govgr/images/govgr-logo-blue-base64.d.ts +2 -0
- package/libs/ui/src/govgr/images/greek-government-base64.d.ts +2 -0
- package/libs/ui/src/govgr/images/grnet-logo-base64.d.ts +2 -0
- package/libs/ui/src/govgr/images/index.d.ts +5 -0
- package/libs/ui/src/govgr/images/minedu-logo-base64.d.ts +2 -0
- package/libs/ui/src/govgr/images/minedu-logo-black-base64.d.ts +2 -0
- package/libs/ui/src/govgr/index.d.ts +5 -0
- package/libs/ui/src/i18n/I18nText.d.ts +10 -0
- package/libs/ui/src/i18n/index.d.ts +12 -0
- package/libs/ui/src/i18n/locales/el.d.ts +110 -0
- package/libs/ui/src/i18n/locales/en.d.ts +104 -0
- package/libs/ui/src/icons/Icon/index.d.ts +5 -0
- package/libs/ui/src/icons/ImageLogo/index.d.ts +3 -0
- package/libs/ui/src/icons/ImageLogoSet/index.d.ts +3 -0
- package/libs/ui/src/icons/index.d.ts +2 -0
- package/libs/ui/src/index.d.ts +12 -0
- package/libs/ui/src/layouts/Admin/index.d.ts +9 -0
- package/libs/ui/src/layouts/Basic/Aside/index.d.ts +3 -0
- package/libs/ui/src/layouts/Basic/Basic.stories.d.ts +12 -0
- package/libs/ui/src/layouts/Basic/Bottom/index.d.ts +3 -0
- package/libs/ui/src/layouts/Basic/Container/index.d.ts +3 -0
- package/libs/ui/src/layouts/Basic/Main/index.d.ts +3 -0
- package/libs/ui/src/layouts/Basic/Masthead/index.d.ts +5 -0
- package/libs/ui/src/layouts/Basic/Top/index.d.ts +3 -0
- package/libs/ui/src/layouts/Basic/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/layouts/Basic/__stories__/MultipleRowsLayout.d.ts +3 -0
- package/libs/ui/src/layouts/Basic/__stories__/TwoThirdsOneThirdColumns.d.ts +3 -0
- package/libs/ui/src/layouts/Basic/__stories__/WithBasicLayout.d.ts +3 -0
- package/libs/ui/src/layouts/Basic/index.d.ts +9 -0
- package/libs/ui/src/layouts/Grid/Grid.stories.d.ts +10 -0
- package/libs/ui/src/layouts/Grid/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/layouts/Grid/__stories__/Inline.d.ts +3 -0
- package/libs/ui/src/layouts/Grid/__stories__/ResponsiveSpacing.d.ts +3 -0
- package/libs/ui/src/layouts/Grid/index.d.ts +4 -0
- package/libs/ui/src/layouts/Hidden/index.d.ts +1 -0
- package/libs/ui/src/layouts/Screen/Screen.stories.d.ts +11 -0
- package/libs/ui/src/layouts/Screen/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/layouts/Screen/__stories__/ScreenDown.d.ts +3 -0
- package/libs/ui/src/layouts/Screen/__stories__/ScreenUp.d.ts +3 -0
- package/libs/ui/src/layouts/Screen/__stories__/SpecificScreenSize.d.ts +3 -0
- package/libs/ui/src/layouts/Screen/index.d.ts +7 -0
- package/libs/ui/src/layouts/Section/index.d.ts +3 -0
- package/libs/ui/src/layouts/SectionBreak/index.d.ts +3 -0
- package/libs/ui/src/layouts/Stack/Stack.stories.d.ts +13 -0
- package/libs/ui/src/layouts/Stack/__stories__/AlignItems.d.ts +3 -0
- package/libs/ui/src/layouts/Stack/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/layouts/Stack/__stories__/JustifyContent.d.ts +3 -0
- package/libs/ui/src/layouts/Stack/__stories__/NoWrap.d.ts +3 -0
- package/libs/ui/src/layouts/Stack/__stories__/Row.d.ts +3 -0
- package/libs/ui/src/layouts/Stack/__stories__/Spacing.d.ts +3 -0
- package/libs/ui/src/layouts/Stack/index.d.ts +2 -0
- package/libs/ui/src/layouts/index.d.ts +11 -0
- package/libs/ui/src/navigation/BackLink/BackLink.stories.d.ts +8 -0
- package/libs/ui/src/navigation/BackLink/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/navigation/BackLink/index.d.ts +3 -0
- package/libs/ui/src/navigation/BackToTopLink/BackToTopLink.stories.d.ts +9 -0
- package/libs/ui/src/navigation/BackToTopLink/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/navigation/BackToTopLink/__stories__/InMain.d.ts +3 -0
- package/libs/ui/src/navigation/BackToTopLink/index.d.ts +12 -0
- package/libs/ui/src/navigation/Breadcrumbs/Breadcrumbs.stories.d.ts +11 -0
- package/libs/ui/src/navigation/Breadcrumbs/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/navigation/Breadcrumbs/__stories__/WithoutCurrentPage.d.ts +3 -0
- package/libs/ui/src/navigation/Breadcrumbs/index.d.ts +5 -0
- package/libs/ui/src/navigation/Drawer/Drawer.stories.d.ts +12 -0
- package/libs/ui/src/navigation/Drawer/__stories__/Auto.d.ts +2 -0
- package/libs/ui/src/navigation/Drawer/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/navigation/Drawer/__stories__/WithHook.d.ts +2 -0
- package/libs/ui/src/navigation/Drawer/auto.d.ts +28 -0
- package/libs/ui/src/navigation/Drawer/hooks.d.ts +20 -0
- package/libs/ui/src/navigation/Drawer/index.d.ts +5 -0
- package/libs/ui/src/navigation/Dropdown/Dropdown.stories.d.ts +20 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/AlignRight.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/ContentPosition.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/Disabled.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/PlacementTop.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/ScrollableContent.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/Secondary.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/VariantLink.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/Warning.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/__stories__/WithIcons.d.ts +3 -0
- package/libs/ui/src/navigation/Dropdown/index.d.ts +22 -0
- package/libs/ui/src/navigation/Link/Link.stories.d.ts +15 -0
- package/libs/ui/src/navigation/Link/__stories__/DarkBackground.d.ts +3 -0
- package/libs/ui/src/navigation/Link/__stories__/DarkBackgroundNoUnderline.d.ts +3 -0
- package/libs/ui/src/navigation/Link/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/navigation/Link/__stories__/ExternalLink.d.ts +3 -0
- package/libs/ui/src/navigation/Link/__stories__/NoUnderline.d.ts +3 -0
- package/libs/ui/src/navigation/Link/__stories__/OpensInNewTab.d.ts +3 -0
- package/libs/ui/src/navigation/Link/__stories__/WithProvider.d.ts +3 -0
- package/libs/ui/src/navigation/Link/index.d.ts +12 -0
- package/libs/ui/src/navigation/NavList/Nav.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/NavList.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/NavList.stories.d.ts +18 -0
- package/libs/ui/src/navigation/NavList/NavListAuto/index.d.ts +4 -0
- package/libs/ui/src/navigation/NavList/NavMenuContentList.d.ts +5 -0
- package/libs/ui/src/navigation/NavList/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/__stories__/HorizontalWithDrawer.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/__stories__/HorizontalWithoutDrawer.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/__stories__/NavListWithoutNav.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/__stories__/UsingHeaderButton.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/__stories__/UsingNavListAuto.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/__stories__/Vertical.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/__stories__/VerticalWithoutDrawer.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/__stories__/WithBadge.d.ts +3 -0
- package/libs/ui/src/navigation/NavList/hooks/useNavList.d.ts +8 -0
- package/libs/ui/src/navigation/NavList/hooks/useTogglableNav.d.ts +26 -0
- package/libs/ui/src/navigation/NavList/index.d.ts +18 -0
- package/libs/ui/src/navigation/NavList/types.d.ts +52 -0
- package/libs/ui/src/navigation/Pagination/Pagination.d.ts +39 -0
- package/libs/ui/src/navigation/Pagination/Pagination.stories.d.ts +16 -0
- package/libs/ui/src/navigation/Pagination/__stories__/Auto.d.ts +3 -0
- package/libs/ui/src/navigation/Pagination/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/navigation/Pagination/__stories__/PaginationSmall.d.ts +3 -0
- package/libs/ui/src/navigation/Pagination/__stories__/PaginationWithSmallFont.d.ts +3 -0
- package/libs/ui/src/navigation/Pagination/__stories__/WithHook.d.ts +3 -0
- package/libs/ui/src/navigation/Pagination/__stories__/WithInactiveValues.d.ts +3 -0
- package/libs/ui/src/navigation/Pagination/__stories__/WithResultsPerPage.d.ts +3 -0
- package/libs/ui/src/navigation/Pagination/auto.d.ts +27 -0
- package/libs/ui/src/navigation/Pagination/hooks.d.ts +30 -0
- package/libs/ui/src/navigation/Pagination/index.d.ts +9 -0
- package/libs/ui/src/navigation/SkipLink/SkipLink.stories.d.ts +9 -0
- package/libs/ui/src/navigation/SkipLink/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/navigation/SkipLink/index.d.ts +3 -0
- package/libs/ui/src/navigation/Tabs/Tabs.stories.d.ts +14 -0
- package/libs/ui/src/navigation/Tabs/__stories__/Auto.d.ts +3 -0
- package/libs/ui/src/navigation/Tabs/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/navigation/Tabs/__stories__/Dense.d.ts +3 -0
- package/libs/ui/src/navigation/Tabs/__stories__/UsingAccordion.d.ts +3 -0
- package/libs/ui/src/navigation/Tabs/auto.d.ts +19 -0
- package/libs/ui/src/navigation/Tabs/hooks.d.ts +28 -0
- package/libs/ui/src/navigation/Tabs/index.d.ts +9 -0
- package/libs/ui/src/navigation/index.d.ts +9 -0
- package/libs/ui/src/patterns/FilteredResults/DataTable.d.ts +5 -0
- package/libs/ui/src/patterns/FilteredResults/FilterChips.d.ts +3 -0
- package/libs/ui/src/patterns/FilteredResults/FilterFields.d.ts +5 -0
- package/libs/ui/src/patterns/FilteredResults/FilteredResults.stories.d.ts +8 -0
- package/libs/ui/src/patterns/FilteredResults/__stories__/Default.d.ts +2 -0
- package/libs/ui/src/patterns/FilteredResults/hooks.d.ts +22 -0
- package/libs/ui/src/patterns/FilteredResults/index.d.ts +25 -0
- package/libs/ui/src/patterns/index.d.ts +1 -0
- package/libs/ui/src/registry.d.ts +319 -0
- package/libs/ui/src/typography/Code/index.d.ts +3 -0
- package/libs/ui/src/typography/CodeBlock/CodeBlock.stories.d.ts +8 -0
- package/libs/ui/src/typography/CodeBlock/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/typography/CodeBlock/index.d.ts +16 -0
- package/libs/ui/src/typography/Heading/Heading.stories.d.ts +8 -0
- package/libs/ui/src/typography/Heading/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/typography/Heading/index.d.ts +3 -0
- package/libs/ui/src/typography/HeadingCaption/HeadingCaption.stories.d.ts +9 -0
- package/libs/ui/src/typography/HeadingCaption/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/typography/HeadingCaption/__stories__/NestedToTitle.d.ts +3 -0
- package/libs/ui/src/typography/HeadingCaption/index.d.ts +3 -0
- package/libs/ui/src/typography/Hint/Hint.stories.d.ts +9 -0
- package/libs/ui/src/typography/Hint/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/typography/Hint/__stories__/FontSizes.d.ts +3 -0
- package/libs/ui/src/typography/Hint/index.d.ts +3 -0
- package/libs/ui/src/typography/NormalText/NormalText.stories.d.ts +11 -0
- package/libs/ui/src/typography/NormalText/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/typography/NormalText/__stories__/FontSizes.d.ts +3 -0
- package/libs/ui/src/typography/NormalText/__stories__/FontWeight.d.ts +3 -0
- package/libs/ui/src/typography/NormalText/__stories__/Variants.d.ts +3 -0
- package/libs/ui/src/typography/NormalText/index.d.ts +3 -0
- package/libs/ui/src/typography/Paragraph/Paragraph.stories.d.ts +12 -0
- package/libs/ui/src/typography/Paragraph/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/typography/Paragraph/__stories__/FontSizes.d.ts +3 -0
- package/libs/ui/src/typography/Paragraph/__stories__/FontWeight.d.ts +3 -0
- package/libs/ui/src/typography/Paragraph/__stories__/LeadVariant.d.ts +3 -0
- package/libs/ui/src/typography/Paragraph/__stories__/SmallVariant.d.ts +3 -0
- package/libs/ui/src/typography/Paragraph/index.d.ts +3 -0
- package/libs/ui/src/typography/Typography/index.d.ts +3 -0
- package/libs/ui/src/typography/index.d.ts +6 -0
- package/libs/ui/src/utils/Base/index.d.ts +3 -0
- package/libs/ui/src/utils/SvgIcon/index.d.ts +4 -0
- package/libs/ui/src/utils/TestVariant/index.d.ts +7 -0
- package/libs/ui/src/utils/Typography/index.d.ts +3 -0
- package/libs/ui/src/utils/VisuallyHidden/VisuallyHidden.stories.d.ts +8 -0
- package/libs/ui/src/utils/VisuallyHidden/__stories__/Default.d.ts +3 -0
- package/libs/ui/src/utils/VisuallyHidden/index.d.ts +3 -0
- package/libs/ui/src/utils/hooks/useDebounce.d.ts +3 -0
- package/libs/ui/src/utils/hooks/useKeypress.d.ts +2 -0
- package/libs/ui/src/utils/hooks/useLatest.d.ts +3 -0
- package/libs/ui/src/utils/hooks/useScreen.d.ts +7 -0
- package/libs/ui/src/utils/hooks/useSearch.d.ts +4 -0
- package/libs/ui/src/utils/hooks/useTogglableTab.d.ts +21 -0
- package/libs/ui/src/utils/index.d.ts +3 -0
- package/libs/ui/src/utils/withDeprecation.d.ts +16 -0
- package/libs-ui/react-core/src/Accordion/index.d.ts +28 -0
- package/libs-ui/react-core/src/AccordionControls/index.d.ts +9 -0
- package/libs-ui/react-core/src/AccordionSection/index.d.ts +11 -0
- package/libs-ui/react-core/src/AccordionSectionContent/index.d.ts +10 -0
- package/libs-ui/react-core/src/AccordionSectionSummary/index.d.ts +9 -0
- package/libs-ui/react-core/src/AccordionSectionSummaryHeading/index.d.ts +9 -0
- package/libs-ui/react-core/src/AdminAside/index.d.ts +9 -0
- package/libs-ui/react-core/src/AdminContainer/index.d.ts +17 -0
- package/libs-ui/react-core/src/AdminHeader/index.d.ts +10 -0
- package/libs-ui/react-core/src/AdminHeaderContent/index.d.ts +9 -0
- package/libs-ui/react-core/src/AdminLayout/index.d.ts +9 -0
- package/libs-ui/react-core/src/AdminMain/index.d.ts +9 -0
- package/libs-ui/react-core/src/AdminTopSection/index.d.ts +25 -0
- package/libs-ui/react-core/src/Aside/index.d.ts +27 -0
- package/libs-ui/react-core/src/AutoCompleteAssistiveHint/index.d.ts +11 -0
- package/libs-ui/react-core/src/AutoCompleteContainer/index.d.ts +22 -0
- package/libs-ui/react-core/src/AutoCompleteInput/index.d.ts +17 -0
- package/libs-ui/react-core/src/AutoCompleteInputTypeahead/index.d.ts +11 -0
- package/libs-ui/react-core/src/AutoCompleteMultipleInput/index.d.ts +9 -0
- package/libs-ui/react-core/src/AutoCompleteMultipleInputContainer/index.d.ts +12 -0
- package/libs-ui/react-core/src/AutoCompleteResultList/index.d.ts +20 -0
- package/libs-ui/react-core/src/AutoCompleteResultListItem/index.d.ts +47 -0
- package/libs-ui/react-core/src/AutoCompleteStatus/index.d.ts +10 -0
- package/libs-ui/react-core/src/AutoCompleteStatusContainer/index.d.ts +10 -0
- package/libs-ui/react-core/src/BackLink/index.d.ts +9 -0
- package/libs-ui/react-core/src/BackToTopContainer/index.d.ts +17 -0
- package/libs-ui/react-core/src/BackToTopLimit/index.d.ts +9 -0
- package/libs-ui/react-core/src/BackToTopLink/index.d.ts +9 -0
- package/libs-ui/react-core/src/BannerContainer/index.d.ts +6 -0
- package/libs-ui/react-core/src/Base/index.d.ts +95 -0
- package/libs-ui/react-core/src/Blockquote/index.d.ts +16 -0
- package/libs-ui/react-core/src/Bottom/index.d.ts +9 -0
- package/libs-ui/react-core/src/BottomInfo/index.d.ts +9 -0
- package/libs-ui/react-core/src/BottomInfoContainer/index.d.ts +9 -0
- package/libs-ui/react-core/src/BottomInfoContent/index.d.ts +9 -0
- package/libs-ui/react-core/src/Breadcrumbs/index.d.ts +10 -0
- package/libs-ui/react-core/src/BreadcrumbsList/index.d.ts +9 -0
- package/libs-ui/react-core/src/BreadcrumbsListItem/index.d.ts +15 -0
- package/libs-ui/react-core/src/Button/index.d.ts +35 -0
- package/libs-ui/react-core/src/ButtonGroup/index.d.ts +9 -0
- package/libs-ui/react-core/src/ButtonLink/index.d.ts +28 -0
- package/libs-ui/react-core/src/CallToAction/index.d.ts +9 -0
- package/libs-ui/react-core/src/Card/index.d.ts +50 -0
- package/libs-ui/react-core/src/CardAction/index.d.ts +11 -0
- package/libs-ui/react-core/src/CardContent/index.d.ts +10 -0
- package/libs-ui/react-core/src/CardHeading/index.d.ts +10 -0
- package/libs-ui/react-core/src/Checkbox/index.d.ts +27 -0
- package/libs-ui/react-core/src/CheckboxConditional/index.d.ts +11 -0
- package/libs-ui/react-core/src/CheckboxItem/index.d.ts +17 -0
- package/libs-ui/react-core/src/Chip/index.d.ts +14 -0
- package/libs-ui/react-core/src/ChipContainer/index.d.ts +14 -0
- package/libs-ui/react-core/src/ChipHeading/index.d.ts +10 -0
- package/libs-ui/react-core/src/ChipKeyValue/index.d.ts +10 -0
- package/libs-ui/react-core/src/ChoiceDividerText/index.d.ts +10 -0
- package/libs-ui/react-core/src/CircularProgress/index.d.ts +27 -0
- package/libs-ui/react-core/src/CloseButton/index.d.ts +15 -0
- package/libs-ui/react-core/src/Code/index.d.ts +18 -0
- package/libs-ui/react-core/src/CodeBlockContainer/index.d.ts +18 -0
- package/libs-ui/react-core/src/CodeBlockContent/index.d.ts +10 -0
- package/libs-ui/react-core/src/CodeBlockHeader/index.d.ts +19 -0
- package/libs-ui/react-core/src/Container/index.d.ts +23 -0
- package/libs-ui/react-core/src/CopyToClipboardContainer/index.d.ts +31 -0
- package/libs-ui/react-core/src/CopyToClipboardMessage/index.d.ts +18 -0
- package/libs-ui/react-core/src/CopyrightContainer/index.d.ts +10 -0
- package/libs-ui/react-core/src/DateInputContainer/index.d.ts +19 -0
- package/libs-ui/react-core/src/DateInputItem/index.d.ts +26 -0
- package/libs-ui/react-core/src/Details/index.d.ts +10 -0
- package/libs-ui/react-core/src/DetailsContent/index.d.ts +10 -0
- package/libs-ui/react-core/src/DetailsSummary/index.d.ts +10 -0
- package/libs-ui/react-core/src/Drawer/index.d.ts +44 -0
- package/libs-ui/react-core/src/DrawerHeading/index.d.ts +16 -0
- package/libs-ui/react-core/src/DropdownBase/index.d.ts +39 -0
- package/libs-ui/react-core/src/DropdownButton/index.d.ts +45 -0
- package/libs-ui/react-core/src/DropdownContent/index.d.ts +25 -0
- package/libs-ui/react-core/src/ErrorMessage/index.d.ts +11 -0
- package/libs-ui/react-core/src/ErrorSummary/index.d.ts +16 -0
- package/libs-ui/react-core/src/FieldContainer/index.d.ts +15 -0
- package/libs-ui/react-core/src/Fieldset/index.d.ts +10 -0
- package/libs-ui/react-core/src/FieldsetLegend/index.d.ts +27 -0
- package/libs-ui/react-core/src/FileUpload/index.d.ts +17 -0
- package/libs-ui/react-core/src/FileUploadContainer/index.d.ts +17 -0
- package/libs-ui/react-core/src/FillableText/index.d.ts +10 -0
- package/libs-ui/react-core/src/FilterContainer/index.d.ts +38 -0
- package/libs-ui/react-core/src/FilterContent/index.d.ts +9 -0
- package/libs-ui/react-core/src/FilterHeadingContainer/index.d.ts +12 -0
- package/libs-ui/react-core/src/FilterOptionsSection/index.d.ts +14 -0
- package/libs-ui/react-core/src/FilterSelectedHeading/index.d.ts +9 -0
- package/libs-ui/react-core/src/FilterSelectedSection/index.d.ts +9 -0
- package/libs-ui/react-core/src/Footer/index.d.ts +9 -0
- package/libs-ui/react-core/src/FooterContainer/index.d.ts +9 -0
- package/libs-ui/react-core/src/FooterContent/index.d.ts +10 -0
- package/libs-ui/react-core/src/FooterContentLogos/index.d.ts +11 -0
- package/libs-ui/react-core/src/FooterHeading/index.d.ts +18 -0
- package/libs-ui/react-core/src/FooterImage/index.d.ts +11 -0
- package/libs-ui/react-core/src/FooterInfo/index.d.ts +11 -0
- package/libs-ui/react-core/src/FooterInfoSection/index.d.ts +14 -0
- package/libs-ui/react-core/src/FooterLink/index.d.ts +9 -0
- package/libs-ui/react-core/src/FooterList/index.d.ts +23 -0
- package/libs-ui/react-core/src/FooterListItem/index.d.ts +10 -0
- package/libs-ui/react-core/src/FooterNavigation/index.d.ts +11 -0
- package/libs-ui/react-core/src/FooterNavigationSection/index.d.ts +11 -0
- package/libs-ui/react-core/src/Form/index.d.ts +16 -0
- package/libs-ui/react-core/src/FullPageBackground/index.d.ts +10 -0
- package/libs-ui/react-core/src/GovGRLogo/govgr-logo-base64.d.ts +2 -0
- package/libs-ui/react-core/src/GovGRLogo/govgr-logo-blue-base64.d.ts +2 -0
- package/libs-ui/react-core/src/GovGRLogo/index.d.ts +9 -0
- package/libs-ui/react-core/src/Grid/index.d.ts +89 -0
- package/libs-ui/react-core/src/Header/index.d.ts +10 -0
- package/libs-ui/react-core/src/HeaderContent/index.d.ts +9 -0
- package/libs-ui/react-core/src/HeaderLogo/index.d.ts +19 -0
- package/libs-ui/react-core/src/HeaderNavMenuContent/index.d.ts +11 -0
- package/libs-ui/react-core/src/HeaderSecondaryLogo/index.d.ts +19 -0
- package/libs-ui/react-core/src/HeaderSection/index.d.ts +9 -0
- package/libs-ui/react-core/src/HeaderTitle/index.d.ts +9 -0
- package/libs-ui/react-core/src/Heading/index.d.ts +31 -0
- package/libs-ui/react-core/src/HeadingCaption/index.d.ts +19 -0
- package/libs-ui/react-core/src/HellenicRepublicLogo/index.d.ts +17 -0
- package/libs-ui/react-core/src/HellenicRepublicLogo/logo-el.d.ts +2 -0
- package/libs-ui/react-core/src/HellenicRepublicLogo/logo-en.d.ts +2 -0
- package/libs-ui/react-core/src/HellenicRepublicLogo/logo-inverted-el.d.ts +2 -0
- package/libs-ui/react-core/src/HellenicRepublicLogo/logo-inverted-en.d.ts +2 -0
- package/libs-ui/react-core/src/Hidden/index.d.ts +71 -0
- package/libs-ui/react-core/src/Hint/index.d.ts +22 -0
- package/libs-ui/react-core/src/ImageLogo/index.d.ts +20 -0
- package/libs-ui/react-core/src/ImageLogoSet/index.d.ts +20 -0
- package/libs-ui/react-core/src/KitchenSinkAllComponents/index.d.ts +5 -0
- package/libs-ui/react-core/src/KitchenSinkCard/index.d.ts +5 -0
- package/libs-ui/react-core/src/KitchenSinkCategory/index.d.ts +5 -0
- package/libs-ui/react-core/src/KitchenSinkContent/index.d.ts +14 -0
- package/libs-ui/react-core/src/KitchenSinkContentInfo/index.d.ts +5 -0
- package/libs-ui/react-core/src/KitchenSinkContentTags/index.d.ts +5 -0
- package/libs-ui/react-core/src/KitchenSinkHeading/index.d.ts +5 -0
- package/libs-ui/react-core/src/KitchenSinkLetterContent/index.d.ts +5 -0
- package/libs-ui/react-core/src/LabelContainer/index.d.ts +9 -0
- package/libs-ui/react-core/src/LabelTitle/index.d.ts +26 -0
- package/libs-ui/react-core/src/LabeledText/index.d.ts +18 -0
- package/libs-ui/react-core/src/Layout/index.d.ts +15 -0
- package/libs-ui/react-core/src/LinkBase/index.d.ts +16 -0
- package/libs-ui/react-core/src/List/index.d.ts +33 -0
- package/libs-ui/react-core/src/ListItem/index.d.ts +9 -0
- package/libs-ui/react-core/src/LoaderContainer/index.d.ts +9 -0
- package/libs-ui/react-core/src/Main/index.d.ts +9 -0
- package/libs-ui/react-core/src/Masthead/index.d.ts +18 -0
- package/libs-ui/react-core/src/MastheadBody/index.d.ts +9 -0
- package/libs-ui/react-core/src/MastheadLogo/index.d.ts +11 -0
- package/libs-ui/react-core/src/ModalAction/index.d.ts +11 -0
- package/libs-ui/react-core/src/ModalContainer/index.d.ts +31 -0
- package/libs-ui/react-core/src/ModalContent/index.d.ts +10 -0
- package/libs-ui/react-core/src/ModalHeading/index.d.ts +10 -0
- package/libs-ui/react-core/src/Nav/index.d.ts +49 -0
- package/libs-ui/react-core/src/NavList/index.d.ts +31 -0
- package/libs-ui/react-core/src/NavListItemAction/index.d.ts +26 -0
- package/libs-ui/react-core/src/NavListItemActionContainer/index.d.ts +10 -0
- package/libs-ui/react-core/src/NavListItemBadge/index.d.ts +15 -0
- package/libs-ui/react-core/src/NavListItemButton/index.d.ts +27 -0
- package/libs-ui/react-core/src/NavListItemLink/index.d.ts +17 -0
- package/libs-ui/react-core/src/NavMenuContainer/index.d.ts +25 -0
- package/libs-ui/react-core/src/NavMenuContent/index.d.ts +11 -0
- package/libs-ui/react-core/src/NavMenuContentListBase/index.d.ts +10 -0
- package/libs-ui/react-core/src/NavMenuContentListItem/index.d.ts +10 -0
- package/libs-ui/react-core/src/NavMenuTitle/index.d.ts +11 -0
- package/libs-ui/react-core/src/NormalText/index.d.ts +18 -0
- package/libs-ui/react-core/src/NotificationBannerContainer/index.d.ts +29 -0
- package/libs-ui/react-core/src/NotificationBannerContent/index.d.ts +12 -0
- package/libs-ui/react-core/src/NotificationBannerHeader/index.d.ts +11 -0
- package/libs-ui/react-core/src/NotificationBannerHeading/index.d.ts +11 -0
- package/libs-ui/react-core/src/NotificationBannerLink/index.d.ts +11 -0
- package/libs-ui/react-core/src/PageTitleCaption/index.d.ts +9 -0
- package/libs-ui/react-core/src/PageTitleContainer/index.d.ts +9 -0
- package/libs-ui/react-core/src/PageTitleHeading/index.d.ts +10 -0
- package/libs-ui/react-core/src/Pagination/index.d.ts +17 -0
- package/libs-ui/react-core/src/PaginationLabelContainer/index.d.ts +9 -0
- package/libs-ui/react-core/src/PaginationList/index.d.ts +9 -0
- package/libs-ui/react-core/src/PaginationListItem/index.d.ts +29 -0
- package/libs-ui/react-core/src/Panel/index.d.ts +15 -0
- package/libs-ui/react-core/src/PanelBody/index.d.ts +9 -0
- package/libs-ui/react-core/src/PanelTitle/index.d.ts +9 -0
- package/libs-ui/react-core/src/Paragraph/index.d.ts +10 -0
- package/libs-ui/react-core/src/PhaseBanner/index.d.ts +18 -0
- package/libs-ui/react-core/src/PhaseBannerHeaderContainer/index.d.ts +6 -0
- package/libs-ui/react-core/src/PhaseBannerTag/index.d.ts +9 -0
- package/libs-ui/react-core/src/PhaseBannerText/index.d.ts +11 -0
- package/libs-ui/react-core/src/RadioConditional/index.d.ts +11 -0
- package/libs-ui/react-core/src/RadioContainer/index.d.ts +24 -0
- package/libs-ui/react-core/src/RadioItem/index.d.ts +16 -0
- package/libs-ui/react-core/src/ResultsActionBar/index.d.ts +9 -0
- package/libs-ui/react-core/src/ResultsHeading/index.d.ts +10 -0
- package/libs-ui/react-core/src/ResultsHeadingActions/index.d.ts +10 -0
- package/libs-ui/react-core/src/SearchButton/index.d.ts +10 -0
- package/libs-ui/react-core/src/SearchContainer/index.d.ts +9 -0
- package/libs-ui/react-core/src/Section/index.d.ts +10 -0
- package/libs-ui/react-core/src/SectionBreak/index.d.ts +26 -0
- package/libs-ui/react-core/src/SelectContainer/index.d.ts +17 -0
- package/libs-ui/react-core/src/SelectOption/index.d.ts +10 -0
- package/libs-ui/react-core/src/SingleCharacterInput/index.d.ts +18 -0
- package/libs-ui/react-core/src/SingleCharacterInputs/index.d.ts +11 -0
- package/libs-ui/react-core/src/Skeleton/index.d.ts +49 -0
- package/libs-ui/react-core/src/SkipLink/index.d.ts +9 -0
- package/libs-ui/react-core/src/Stack/index.d.ts +33 -0
- package/libs-ui/react-core/src/StepNav/index.d.ts +17 -0
- package/libs-ui/react-core/src/StepNavAccordion/index.d.ts +11 -0
- package/libs-ui/react-core/src/StepNavAccordionContent/index.d.ts +10 -0
- package/libs-ui/react-core/src/StepNavAccordionHeadingText/index.d.ts +22 -0
- package/libs-ui/react-core/src/StepNavAccordionHeadingTitle/index.d.ts +11 -0
- package/libs-ui/react-core/src/StepNavAccordionSummary/index.d.ts +9 -0
- package/libs-ui/react-core/src/StepNavAccordionSummaryHeading/index.d.ts +27 -0
- package/libs-ui/react-core/src/StepNavCircleNumber/index.d.ts +19 -0
- package/libs-ui/react-core/src/StepNavControls/index.d.ts +10 -0
- package/libs-ui/react-core/src/StepNavList/index.d.ts +10 -0
- package/libs-ui/react-core/src/StepNavListItem/index.d.ts +9 -0
- package/libs-ui/react-core/src/SummaryList/index.d.ts +28 -0
- package/libs-ui/react-core/src/SummaryListItem/index.d.ts +19 -0
- package/libs-ui/react-core/src/SummaryListItemAction/index.d.ts +10 -0
- package/libs-ui/react-core/src/SummaryListItemKey/index.d.ts +10 -0
- package/libs-ui/react-core/src/SummaryListItemValue/index.d.ts +9 -0
- package/libs-ui/react-core/src/SvgIcon/index.d.ts +37 -0
- package/libs-ui/react-core/src/Table/index.d.ts +53 -0
- package/libs-ui/react-core/src/TableBody/index.d.ts +18 -0
- package/libs-ui/react-core/src/TableCaption/index.d.ts +20 -0
- package/libs-ui/react-core/src/TableContainer/index.d.ts +16 -0
- package/libs-ui/react-core/src/TableDataCell/index.d.ts +18 -0
- package/libs-ui/react-core/src/TableHead/index.d.ts +9 -0
- package/libs-ui/react-core/src/TableHeadCell/index.d.ts +30 -0
- package/libs-ui/react-core/src/TableLoaderBackground/index.d.ts +10 -0
- package/libs-ui/react-core/src/TableNoDataRow/index.d.ts +10 -0
- package/libs-ui/react-core/src/TableRow/index.d.ts +25 -0
- package/libs-ui/react-core/src/TableSortIconContainer/index.d.ts +11 -0
- package/libs-ui/react-core/src/Tabs/index.d.ts +17 -0
- package/libs-ui/react-core/src/TabsHeading/index.d.ts +18 -0
- package/libs-ui/react-core/src/TabsList/index.d.ts +10 -0
- package/libs-ui/react-core/src/TabsListItemBase/index.d.ts +17 -0
- package/libs-ui/react-core/src/TabsPanelBase/index.d.ts +18 -0
- package/libs-ui/react-core/src/TaskList/index.d.ts +17 -0
- package/libs-ui/react-core/src/TaskListItem/index.d.ts +9 -0
- package/libs-ui/react-core/src/TaskListItemContent/index.d.ts +10 -0
- package/libs-ui/react-core/src/TaskListItemHeading/index.d.ts +10 -0
- package/libs-ui/react-core/src/TaskListItemTag/index.d.ts +16 -0
- package/libs-ui/react-core/src/TextArea/index.d.ts +24 -0
- package/libs-ui/react-core/src/TextInput/index.d.ts +46 -0
- package/libs-ui/react-core/src/Timeline/index.d.ts +17 -0
- package/libs-ui/react-core/src/TimelineActions/index.d.ts +11 -0
- package/libs-ui/react-core/src/TimelineContent/index.d.ts +10 -0
- package/libs-ui/react-core/src/TimelineHeading/index.d.ts +25 -0
- package/libs-ui/react-core/src/TimelineItem/index.d.ts +9 -0
- package/libs-ui/react-core/src/Top/index.d.ts +9 -0
- package/libs-ui/react-core/src/Typography/index.d.ts +30 -0
- package/libs-ui/react-core/src/VisuallyHidden/index.d.ts +10 -0
- package/libs-ui/react-core/src/WarningText/index.d.ts +24 -0
- package/libs-ui/react-core/src/index.d.ts +218 -0
- package/libs-ui/react-experimental/src/FloatingButton/index.d.ts +21 -0
- package/libs-ui/react-experimental/src/Kitchensink/AllComponents.d.ts +2 -0
- package/libs-ui/react-experimental/src/Kitchensink/KitchensinkByCategory.d.ts +6 -0
- package/libs-ui/react-experimental/src/Kitchensink/KitchensinkByLetter.d.ts +6 -0
- package/libs-ui/react-experimental/src/Kitchensink/KitchensinkComponent.d.ts +10 -0
- package/libs-ui/react-experimental/src/Kitchensink/KitchensinkDashboard.d.ts +5 -0
- package/libs-ui/react-experimental/src/Kitchensink/index.d.ts +5 -0
- package/libs-ui/react-experimental/src/OptionButtonBase/index.d.ts +19 -0
- package/libs-ui/react-experimental/src/OptionButtonSteps/index.d.ts +25 -0
- package/{index.d.ts → libs-ui/react-experimental/src/index.d.ts} +1 -0
- package/libs-ui/react-icons/src/AccessibilityIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/AccessibilityIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/ArrowIcon/config.d.ts +13 -0
- package/libs-ui/react-icons/src/ArrowIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/Base/index.d.ts +95 -0
- package/libs-ui/react-icons/src/BurgerIcon/config.d.ts +6 -0
- package/libs-ui/react-icons/src/BurgerIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/CancelIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/CancelIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/CaretIcon/config.d.ts +13 -0
- package/libs-ui/react-icons/src/CaretIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/ChatIcon/config.d.ts +11 -0
- package/libs-ui/react-icons/src/ChatIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/CheckIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/CheckIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/ChevronIcon/config.d.ts +14 -0
- package/libs-ui/react-icons/src/ChevronIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/CloseIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/CloseIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/DownloadIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/DownloadIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/ExclamationIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/ExclamationIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/GlobeIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/GlobeIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/Icon/index.d.ts +25 -0
- package/libs-ui/react-icons/src/LockIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/LockIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/LoginIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/LoginIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/MinusIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/MinusIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/MoreVertIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/MoreVertIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/PdfFileIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/PdfFileIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/PlusIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/PlusIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/PrintIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/PrintIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/ReplyIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/ReplyIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/RestoreIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/RestoreIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/SearchIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/SearchIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/SvgIcon/index.d.ts +37 -0
- package/libs-ui/react-icons/src/UncheckIcon/config.d.ts +8 -0
- package/libs-ui/react-icons/src/UncheckIcon/index.d.ts +4 -0
- package/libs-ui/react-icons/src/icons.d.ts +71 -0
- package/libs-ui/react-icons/src/index.d.ts +23 -0
- package/package.json +7 -9
- package/src/FloatingButton/__snapshots__/index.test.tsx.snap +37 -0
- package/src/FloatingButton/index.test.tsx +4 -4
- package/src/Kitchensink/AllComponents.tsx +6 -0
- package/src/Kitchensink/KitchensinkByCategory.tsx +58 -0
- package/src/Kitchensink/KitchensinkByLetter.tsx +35 -0
- package/src/Kitchensink/KitchensinkComponent.tsx +70 -0
- package/src/Kitchensink/KitchensinkDashboard.tsx +56 -0
- package/src/Kitchensink/index.ts +5 -0
- package/src/OptionButtonBase/__snapshots__/index.test.tsx.snap +37 -0
- package/src/OptionButtonBase/index.test.tsx +4 -4
- package/src/OptionButtonSteps/__snapshots__/index.test.tsx.snap +84 -0
- package/src/OptionButtonSteps/index.test.tsx +6 -6
- package/src/index.ts +1 -0
- package/FloatingButton/index.d.ts +0 -21
- package/FloatingButton/index.test/index.js +0 -19
- package/OptionButtonBase/index.d.ts +0 -19
- package/OptionButtonBase/index.test/index.js +0 -19
- package/OptionButtonSteps/index.d.ts +0 -25
- package/OptionButtonSteps/index.test/index.js +0 -32
- package/cjs/FloatingButton/index.test/index.js +0 -22
- package/cjs/OptionButtonBase/index.test/index.js +0 -22
- package/cjs/OptionButtonSteps/index.test/index.js +0 -35
- /package/{FloatingButton → libs-ui/react-experimental/src/FloatingButton}/index.test.d.ts +0 -0
- /package/{OptionButtonBase → libs-ui/react-experimental/src/OptionButtonBase}/index.test.d.ts +0 -0
- /package/{OptionButtonSteps → libs-ui/react-experimental/src/OptionButtonSteps}/index.test.d.ts +0 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface DetailsSummaryProps extends BaseProps<'summary'> {
|
|
4
|
+
size?: 'md' | 'lg';
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* Use this inside Details.DetailsSummary will be the text to click on.
|
|
8
|
+
*/
|
|
9
|
+
export declare const DetailsSummary: React.ForwardRefExoticComponent<Omit<DetailsSummaryProps, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
10
|
+
export default DetailsSummary;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface DrawerProps extends BaseProps<'div'> {
|
|
4
|
+
/**
|
|
5
|
+
* open is optional.
|
|
6
|
+
* This declares if the drawer is open at small screens.
|
|
7
|
+
* @value true
|
|
8
|
+
* @value false
|
|
9
|
+
*/
|
|
10
|
+
open?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* direction is optional.
|
|
13
|
+
* Add the direction of the drawer, when this is open at mobile view.
|
|
14
|
+
* The default value is 'left'.
|
|
15
|
+
* @value 'right'
|
|
16
|
+
* @value 'left'
|
|
17
|
+
* @default 'left'
|
|
18
|
+
*/
|
|
19
|
+
direction?: 'right' | 'left';
|
|
20
|
+
/**
|
|
21
|
+
* upRelative is optional. This declares if the drawer is open at large screens in a relative position.
|
|
22
|
+
* The default value is never.
|
|
23
|
+
* * @value 'sm'
|
|
24
|
+
* @value 'md'
|
|
25
|
+
* @value 'lg'
|
|
26
|
+
* @value 'never'
|
|
27
|
+
* @default 'never'
|
|
28
|
+
*/
|
|
29
|
+
upRelative?: 'sm' | 'md' | 'lg' | 'never';
|
|
30
|
+
/**
|
|
31
|
+
* bgColor is optional.
|
|
32
|
+
* This defines the background color of the drawer.
|
|
33
|
+
* @value 'base'
|
|
34
|
+
* @value 'secondary'
|
|
35
|
+
* @default 'base'
|
|
36
|
+
*/
|
|
37
|
+
bgColor?: 'base' | 'secondary';
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Drawer can be used to provide access to destinations and app functionality.
|
|
41
|
+
* It can either be permanently on-screen or controlled by a navigation menu icon.
|
|
42
|
+
*/
|
|
43
|
+
export declare const Drawer: React.ForwardRefExoticComponent<Omit<DrawerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
44
|
+
export default Drawer;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { StackProps } from '@digigov/react-core/Stack';
|
|
3
|
+
export interface DrawerHeadingProps extends StackProps {
|
|
4
|
+
/**
|
|
5
|
+
* closeLabel is optional.
|
|
6
|
+
* This declares the label of the close icon.
|
|
7
|
+
* @default 'Κλείσιμο'
|
|
8
|
+
*/
|
|
9
|
+
closeLabel?: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Use DrawerHeading component inside Drawing
|
|
13
|
+
* for menu heading title and close icon(for mobiles).
|
|
14
|
+
*/
|
|
15
|
+
export declare const DrawerHeading: React.ForwardRefExoticComponent<Omit<DrawerHeadingProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
export default DrawerHeading;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface DropdownBaseProps extends BaseProps<'details'> {
|
|
4
|
+
/**
|
|
5
|
+
* align is optional. The default value is right.
|
|
6
|
+
* align prop adds DropdownBaseContent right or left.
|
|
7
|
+
* @value 'right'
|
|
8
|
+
* @value 'left'
|
|
9
|
+
* @default 'left'
|
|
10
|
+
*/
|
|
11
|
+
align?: 'right' | 'left';
|
|
12
|
+
/**
|
|
13
|
+
* placement is optional. The default value is bottom.
|
|
14
|
+
* placement prop adds DropdownBaseContent top or bottom.
|
|
15
|
+
* @value 'top'
|
|
16
|
+
* @value 'bottom'
|
|
17
|
+
*/
|
|
18
|
+
placement?: 'top' | 'bottom';
|
|
19
|
+
/**
|
|
20
|
+
* disabled is optional. The default value is false.
|
|
21
|
+
* disabled prop diables any action for DropdownBase component.
|
|
22
|
+
* @value true
|
|
23
|
+
* @value false
|
|
24
|
+
*/
|
|
25
|
+
disabled?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* dense is optional.
|
|
28
|
+
* @value true DropdownBase and its children will be dense.
|
|
29
|
+
* @value false
|
|
30
|
+
* @default false
|
|
31
|
+
*/
|
|
32
|
+
dense?: boolean;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* DropdownBase is the main component for a dropdownBase.
|
|
36
|
+
* Inside this component must be DropdownBaseButton and DropdownBaseContent components.
|
|
37
|
+
*/
|
|
38
|
+
export declare const DropdownBase: React.ForwardRefExoticComponent<Omit<DropdownBaseProps, "ref"> & React.RefAttributes<HTMLDetailsElement>>;
|
|
39
|
+
export default DropdownBase;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface DropdownButtonProps extends BaseProps<'summary'> {
|
|
4
|
+
/**
|
|
5
|
+
* color is optional.
|
|
6
|
+
* 'primary' color gives DropdownButton the primary green color.
|
|
7
|
+
* 'secondary' color gives DropdownButton the secondary gray color.
|
|
8
|
+
* 'warning' color gives DropdownButton the warning red color.
|
|
9
|
+
* The default value is 'primary'.
|
|
10
|
+
* @value 'primary'
|
|
11
|
+
* @value 'secondary'
|
|
12
|
+
* @value 'warning'
|
|
13
|
+
* @default 'primary'
|
|
14
|
+
*/
|
|
15
|
+
color?: 'primary' | 'secondary' | 'warning';
|
|
16
|
+
/**
|
|
17
|
+
* variant is optional.
|
|
18
|
+
* variant prop changes DropdownButton to button or link.
|
|
19
|
+
* @value 'link'
|
|
20
|
+
* @value 'button'
|
|
21
|
+
* @default 'button'
|
|
22
|
+
*/
|
|
23
|
+
variant?: 'link' | 'button';
|
|
24
|
+
/**
|
|
25
|
+
* arrow is optional.
|
|
26
|
+
* arrow prop adds checkIcon component inside DropdownButton.
|
|
27
|
+
* arrow prop is false by default
|
|
28
|
+
* @value true
|
|
29
|
+
* @value false
|
|
30
|
+
* @default false
|
|
31
|
+
*/
|
|
32
|
+
arrow?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* underline is optional.
|
|
35
|
+
* Use this prop when you want to use Dropdown button as \<th\> header in sorted table.
|
|
36
|
+
* @value true
|
|
37
|
+
* @value false
|
|
38
|
+
*/
|
|
39
|
+
underline?: boolean;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* DropdownButton it should be inside the Dropdown and it is used for opening or closing dropdown.
|
|
43
|
+
*/
|
|
44
|
+
export declare const DropdownButton: React.ForwardRefExoticComponent<Omit<DropdownButtonProps, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
45
|
+
export default DropdownButton;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface DropdownContentProps extends BaseProps<'div'> {
|
|
4
|
+
/**
|
|
5
|
+
* fullWidth is optional.
|
|
6
|
+
* If true, the dropdown content will be full width.
|
|
7
|
+
* @value true
|
|
8
|
+
* @value false
|
|
9
|
+
* @default true
|
|
10
|
+
*/
|
|
11
|
+
fullWidth?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* scrollable prop is optional.
|
|
14
|
+
* If true, the dropdown content will have limited scrollable height.
|
|
15
|
+
* @value true
|
|
16
|
+
* @value false
|
|
17
|
+
* @default false
|
|
18
|
+
*/
|
|
19
|
+
scrollable?: boolean;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* You should use DropdownContent component inside Dropdown component.
|
|
23
|
+
*/
|
|
24
|
+
export declare const DropdownContent: React.ForwardRefExoticComponent<Omit<DropdownContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
25
|
+
export default DropdownContent;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface ErrorMessageProps extends BaseProps<'p'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* ErrorMessage is used to show an error message when there is a validation error.
|
|
7
|
+
* In the error message explain what went wrong and how to fix it.
|
|
8
|
+
* This component is placed below the FieldsetLegend and the Hint.
|
|
9
|
+
*/
|
|
10
|
+
export declare const ErrorMessage: React.ForwardRefExoticComponent<Omit<ErrorMessageProps, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
|
|
11
|
+
export default ErrorMessage;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface ErrorSummaryProps extends BaseProps<'div'> {
|
|
4
|
+
/**
|
|
5
|
+
* dense is optional.
|
|
6
|
+
* @value true ErrorSummary will be dense.
|
|
7
|
+
* @value false
|
|
8
|
+
* @default false
|
|
9
|
+
* */
|
|
10
|
+
dense?: boolean;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Use this component at the top of a page to summarize any errors a user has made.
|
|
14
|
+
*/
|
|
15
|
+
export declare const ErrorSummary: React.ForwardRefExoticComponent<Omit<ErrorSummaryProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
16
|
+
export default ErrorSummary;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { GridProps } from '@digigov/react-core/Grid';
|
|
3
|
+
export interface FieldContainerProps extends GridProps {
|
|
4
|
+
/**
|
|
5
|
+
* error is optional.
|
|
6
|
+
* @value true
|
|
7
|
+
* @value false
|
|
8
|
+
*/
|
|
9
|
+
error?: boolean;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Field component wraps form components such as Checkbox TextInput TextArea etc.
|
|
13
|
+
*/
|
|
14
|
+
export declare const FieldContainer: React.ForwardRefExoticComponent<Omit<FieldContainerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
15
|
+
export default FieldContainer;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FieldsetProps extends BaseProps<'fieldset'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Details for the Fieldset.
|
|
7
|
+
* Fieldset component is used to group related elements in a form.
|
|
8
|
+
*/
|
|
9
|
+
export declare const Fieldset: React.ForwardRefExoticComponent<Omit<FieldsetProps, "ref"> & React.RefAttributes<HTMLFieldSetElement>>;
|
|
10
|
+
export default Fieldset;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FieldsetLegendProps extends BaseProps<'legend'> {
|
|
4
|
+
/**
|
|
5
|
+
* size is optional. The default value is 'lg'
|
|
6
|
+
* @value 'xl'
|
|
7
|
+
* @value 'lg'
|
|
8
|
+
* @value 'md'
|
|
9
|
+
* @value 'sm'
|
|
10
|
+
* @default 'lg'
|
|
11
|
+
*/
|
|
12
|
+
size?: 'xl' | 'lg' | 'md' | 'sm';
|
|
13
|
+
/**
|
|
14
|
+
* heading is optional.
|
|
15
|
+
* Add this prop if this Fieldset component is the only one in this page.
|
|
16
|
+
* The default value is false.
|
|
17
|
+
* @value true
|
|
18
|
+
* @value false
|
|
19
|
+
* @default false
|
|
20
|
+
*/
|
|
21
|
+
heading?: boolean;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* FieldsetLegend component is the title within a Fieldset component.
|
|
25
|
+
*/
|
|
26
|
+
export declare const FieldsetLegend: React.ForwardRefExoticComponent<Omit<FieldsetLegendProps, "ref"> & React.RefAttributes<HTMLLegendElement>>;
|
|
27
|
+
export default FieldsetLegend;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FileUploadProps extends BaseProps<'input'> {
|
|
4
|
+
/**
|
|
5
|
+
* hasFiles is optional.
|
|
6
|
+
* @value true
|
|
7
|
+
* @value false
|
|
8
|
+
* @default false
|
|
9
|
+
*/
|
|
10
|
+
hasFiles?: boolean;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Details for the FileUpload.
|
|
14
|
+
* FileUpload component is used for uploading files
|
|
15
|
+
*/
|
|
16
|
+
export declare const FileUpload: React.ForwardRefExoticComponent<Omit<FileUploadProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
17
|
+
export default FileUpload;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FileUploadContainerProps extends BaseProps<'div'> {
|
|
4
|
+
/**
|
|
5
|
+
* hasFiles is optional.
|
|
6
|
+
* @value true
|
|
7
|
+
* @value false
|
|
8
|
+
* @default false
|
|
9
|
+
*/
|
|
10
|
+
hasFiles?: boolean;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Details for the FileUploadContainer.
|
|
14
|
+
* FileUploadContainer component is used for wrapping the FileUpload component
|
|
15
|
+
*/
|
|
16
|
+
export declare const FileUploadContainer: React.ForwardRefExoticComponent<Omit<FileUploadContainerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
17
|
+
export default FileUploadContainer;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FillableTextProps extends BaseProps<'blockquote'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Use FillableText component to display text that is connected with a form.
|
|
7
|
+
* Whenever a user fills an input field, the corresponding text inside the LabeledText component gets focused.
|
|
8
|
+
*/
|
|
9
|
+
export declare const FillableText: React.ForwardRefExoticComponent<Omit<FillableTextProps, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
10
|
+
export default FillableText;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FilterContainerProps extends BaseProps<'div'> {
|
|
4
|
+
/**
|
|
5
|
+
* Use open prop to open the filters when at mobile.
|
|
6
|
+
* The default value is false.
|
|
7
|
+
* @value true
|
|
8
|
+
* @value false
|
|
9
|
+
* @default false
|
|
10
|
+
*/
|
|
11
|
+
open?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Use border prop to add a gray border at the filters section.
|
|
14
|
+
* The default value is true.
|
|
15
|
+
* @value true
|
|
16
|
+
* @value false
|
|
17
|
+
* @default true
|
|
18
|
+
*/
|
|
19
|
+
border?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Use visible prop to make the filter section have position relative in the page.
|
|
22
|
+
* The default value is md.
|
|
23
|
+
* @value 'always'
|
|
24
|
+
* @value 'sm'
|
|
25
|
+
* @value 'md'
|
|
26
|
+
* @value 'lg'
|
|
27
|
+
* @value 'never'
|
|
28
|
+
* @default 'md'
|
|
29
|
+
*/
|
|
30
|
+
positionRelative?: 'always' | 'sm' | 'md' | 'lg' | 'never';
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Use FilterContainer component to wrap the filter area of the page
|
|
34
|
+
* When the Filters are being used inside a Drawer component, you don't have to
|
|
35
|
+
* use the FilterContainer component
|
|
36
|
+
*/
|
|
37
|
+
export declare const FilterContainer: React.ForwardRefExoticComponent<Omit<FilterContainerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
38
|
+
export default FilterContainer;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FilterContentProps extends BaseProps<'div'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Use FilterContent inside FilterContainer as a wrapper for its content
|
|
7
|
+
*/
|
|
8
|
+
export declare const FilterContent: React.ForwardRefExoticComponent<Omit<FilterContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
export default FilterContent;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FilterHeadingContainerProps extends BaseProps<'div'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Use FilterHeadingContainer component inside FilterContainer
|
|
7
|
+
* for filters heading title and close icon(for mobiles).
|
|
8
|
+
* When the Filters are being used inside a Drawer component, you don't have to
|
|
9
|
+
* use the FilterHeadingContainer component
|
|
10
|
+
*/
|
|
11
|
+
export declare const FilterHeadingContainer: React.ForwardRefExoticComponent<Omit<FilterHeadingContainerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
12
|
+
export default FilterHeadingContainer;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FilterOptionsSectionProps extends BaseProps<'div'> {
|
|
4
|
+
/**
|
|
5
|
+
* @value true
|
|
6
|
+
* @value false
|
|
7
|
+
*/
|
|
8
|
+
horizontal?: boolean;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* FilterOptionsSection is a wrapper component for the filter elements.
|
|
12
|
+
*/
|
|
13
|
+
export declare const FilterOptionsSection: React.ForwardRefExoticComponent<Omit<FilterOptionsSectionProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
export default FilterOptionsSection;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FilterSelectedHeadingProps extends BaseProps<'div'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Use FilterSelectedHeading as a wrapper for placing Headings on filters
|
|
7
|
+
*/
|
|
8
|
+
export declare const FilterSelectedHeading: React.ForwardRefExoticComponent<Omit<FilterSelectedHeadingProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
export default FilterSelectedHeading;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FilterSelectedSectionProps extends BaseProps<'div'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* FilterSelectedSection is a wrapper for the area of the selected filters
|
|
7
|
+
*/
|
|
8
|
+
export declare const FilterSelectedSection: React.ForwardRefExoticComponent<Omit<FilterSelectedSectionProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
export default FilterSelectedSection;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterProps extends BaseProps<'footer'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Footer is used always at the end of the page, in the Layout component.
|
|
7
|
+
*/
|
|
8
|
+
export declare const Footer: React.ForwardRefExoticComponent<Omit<FooterProps, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
9
|
+
export default Footer;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ContainerProps } from '@digigov/react-core/Container';
|
|
3
|
+
export interface FooterContainerProps extends ContainerProps {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* FooterContainer mush be used inside the Footer component. It has no props.
|
|
7
|
+
*/
|
|
8
|
+
export declare const FooterContainer: React.ForwardRefExoticComponent<Omit<FooterContainerProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
export default FooterContainer;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterContentProps extends BaseProps<'div'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* FooterContent is used inside the FooterInfoSection.
|
|
7
|
+
* In this component, we place the basic content of the footer (ex. Copyright, extra logos, inline list).
|
|
8
|
+
*/
|
|
9
|
+
export declare const FooterContent: React.ForwardRefExoticComponent<Omit<FooterContentProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
export default FooterContent;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterContentLogosProps extends BaseProps<'div'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* FooterContentLogos is placed in the footer, inside the FooterContent ccomponent, above the Copyright.
|
|
7
|
+
* It is a wrapper for extra logos.
|
|
8
|
+
* It has no props.
|
|
9
|
+
*/
|
|
10
|
+
export declare const FooterContentLogos: React.ForwardRefExoticComponent<Omit<FooterContentLogosProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
export default FooterContentLogos;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { HeadingProps } from '@digigov/react-core/Heading';
|
|
3
|
+
export interface FooterHeadingProps extends Omit<HeadingProps, 'size'> {
|
|
4
|
+
/**
|
|
5
|
+
* size is optional.
|
|
6
|
+
* The values are: 'md' for medium, 'sm' for small.
|
|
7
|
+
* The default value is 'sm'.
|
|
8
|
+
* @value 'md'
|
|
9
|
+
* @value 'sm'
|
|
10
|
+
* @default 'sm'
|
|
11
|
+
*/
|
|
12
|
+
size?: 'md' | 'sm';
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* FooterHeading is a component used for heading in the footer.
|
|
16
|
+
*/
|
|
17
|
+
export declare const FooterHeading: React.ForwardRefExoticComponent<Omit<FooterHeadingProps, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
18
|
+
export default FooterHeading;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterImageProps extends BaseProps<'img'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* FooterImage is a component for logos and images in the footer.
|
|
7
|
+
* It is used inside to FooterContentLogos.
|
|
8
|
+
*
|
|
9
|
+
*/
|
|
10
|
+
export declare const FooterImage: React.ForwardRefExoticComponent<Omit<FooterImageProps, "ref"> & React.RefAttributes<HTMLImageElement>>;
|
|
11
|
+
export default FooterImage;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterInfoProps extends BaseProps<'div'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* FooterInfo is inside the FooterContainer component.
|
|
7
|
+
* This component is meant to wrap FooterInfoSection components.
|
|
8
|
+
* Semantically, in this component we include the very basic elements of a govgr footer.
|
|
9
|
+
*/
|
|
10
|
+
export declare const FooterInfo: React.ForwardRefExoticComponent<Omit<FooterInfoProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
export default FooterInfo;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterInfoSectionProps extends BaseProps<'section'> {
|
|
4
|
+
/**
|
|
5
|
+
* grow is optional.
|
|
6
|
+
* Use this prop If wanted this component to have it's maximum grow.
|
|
7
|
+
*/
|
|
8
|
+
grow?: boolean;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* FooterInfoSection is inside the FooterInfo component.
|
|
12
|
+
*/
|
|
13
|
+
export declare const FooterInfoSection: React.ForwardRefExoticComponent<Omit<FooterInfoSectionProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
export default FooterInfoSection;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterLinkProps extends BaseProps<'a'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* FooterLink in used inside the Footer component.
|
|
7
|
+
*/
|
|
8
|
+
export declare const FooterLink: React.ForwardRefExoticComponent<Omit<FooterLinkProps, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
9
|
+
export default FooterLink;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterListProps extends BaseProps<'ul'> {
|
|
4
|
+
/**
|
|
5
|
+
* columns is optional.
|
|
6
|
+
* The values for this are 1 and 2. The default value is 1.
|
|
7
|
+
* @value 1
|
|
8
|
+
* @value 2
|
|
9
|
+
*/
|
|
10
|
+
columns?: 1 | 2;
|
|
11
|
+
/**
|
|
12
|
+
* layout is optional.
|
|
13
|
+
* The default value is vertical. Use horizontal to make a horizontal list.
|
|
14
|
+
* If it is horizontal, it can't have columns.
|
|
15
|
+
*/
|
|
16
|
+
layout?: 'horizontal' | 'vertical';
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* FooterList is used inside the FooterNavigationSection.
|
|
20
|
+
* This component takes a list of FooterListItem component as its children.
|
|
21
|
+
*/
|
|
22
|
+
export declare const FooterList: React.ForwardRefExoticComponent<Omit<FooterListProps, "ref"> & React.RefAttributes<HTMLUListElement>>;
|
|
23
|
+
export default FooterList;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterListItemProps extends BaseProps<'li'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* FooterListItem must be inside the FooterList component.
|
|
7
|
+
* This component has no props.
|
|
8
|
+
*/
|
|
9
|
+
export declare const FooterListItem: React.ForwardRefExoticComponent<Omit<FooterListItemProps, "ref"> & React.RefAttributes<HTMLLIElement>>;
|
|
10
|
+
export default FooterListItem;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterNavigationProps extends BaseProps<'div'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* FooterNavigation is optional. This components must be included in the FooterContainer.
|
|
7
|
+
* Inside this component we place one or more of the component FooterNavigationSection.
|
|
8
|
+
* This component has no props.
|
|
9
|
+
*/
|
|
10
|
+
export declare const FooterNavigation: React.ForwardRefExoticComponent<Omit<FooterNavigationProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
export default FooterNavigation;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FooterNavigationSectionProps extends BaseProps<'section'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* FooterNavigationSection must be inside the FooterNavigation.
|
|
7
|
+
* Inside this component should be placed the FooterHeading (optional) and the FooterList.
|
|
8
|
+
* This component has no props.
|
|
9
|
+
*/
|
|
10
|
+
export declare const FooterNavigationSection: React.ForwardRefExoticComponent<Omit<FooterNavigationSectionProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
export default FooterNavigationSection;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FormProps extends BaseProps<'form'> {
|
|
4
|
+
/**
|
|
5
|
+
* @value true
|
|
6
|
+
* @value false
|
|
7
|
+
* @default false
|
|
8
|
+
*/
|
|
9
|
+
grid?: boolean;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Use this inside the Content component for additional content
|
|
13
|
+
* that will be shown on the left one third of the page
|
|
14
|
+
*/
|
|
15
|
+
export declare const Form: React.ForwardRefExoticComponent<Omit<FormProps, "ref"> & React.RefAttributes<HTMLFormElement>>;
|
|
16
|
+
export default Form;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
|
+
export interface FullPageBackgroundProps extends BaseProps<'div'> {
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Use FullPageBackground component in order to add a grey background color with opacity.
|
|
7
|
+
* FullPageBackground is the parent component and takes as children the LoaderContainer component.
|
|
8
|
+
*/
|
|
9
|
+
export declare const FullPageBackground: React.ForwardRefExoticComponent<Omit<FullPageBackgroundProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
10
|
+
export default FullPageBackground;
|