@reykjavik/hanna-react 0.10.55 → 0.10.56
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/AccordionList.jsx +61 -0
- package/ActionCards.jsx +15 -0
- package/Alert.jsx +123 -0
- package/ArticleCarousel/_ArticleCarouselCard.d.ts +1 -1
- package/ArticleCarousel/_ArticleCarouselCard.jsx +32 -0
- package/ArticleCarousel.jsx +13 -0
- package/ArticleMeta.jsx +42 -0
- package/Attention.jsx +9 -0
- package/BasicTable.jsx +35 -0
- package/Bling.jsx +49 -0
- package/BlockBreak.jsx +11 -0
- package/BlockQuote.jsx +9 -0
- package/BreadCrumbs.jsx +36 -0
- package/ButtonBack.jsx +9 -0
- package/ButtonBar.jsx +23 -0
- package/ButtonPrimary.jsx +9 -0
- package/ButtonSecondary.jsx +9 -0
- package/ButtonTertiary.jsx +20 -0
- package/CHANGELOG.md +13 -5
- package/Carousel.jsx +9 -0
- package/CarouselStepper.jsx +9 -0
- package/CenterColumn.jsx +14 -0
- package/Checkbox.jsx +9 -0
- package/CheckboxButtonsGroup.jsx +19 -0
- package/CheckboxGroup.jsx +12 -0
- package/CityBlock.jsx +23 -0
- package/ContactBubble.jsx +192 -0
- package/ContentArticle.jsx +29 -0
- package/ContentImage.jsx +18 -0
- package/Datepicker.jsx +92 -0
- package/ExtraLinks.jsx +47 -0
- package/FeatureList.jsx +28 -0
- package/FieldGroup.jsx +15 -0
- package/FileInput.jsx +185 -0
- package/Foonote.jsx +12 -0
- package/FooterBadges.jsx +21 -0
- package/FooterInfo.jsx +19 -0
- package/Footnote.jsx +8 -0
- package/Form.jsx +17 -0
- package/FormField.jsx +121 -0
- package/Gallery/_GalleryItem.jsx +59 -0
- package/Gallery/_GalleryModal.jsx +86 -0
- package/Gallery/_GalleryModalContext.js +8 -0
- package/Gallery/_GalleryModalItem.jsx +29 -0
- package/Gallery.jsx +56 -0
- package/GridBlocks.jsx +40 -0
- package/Heading.jsx +24 -0
- package/HeroBlock.jsx +27 -0
- package/IframeBlock.jsx +31 -0
- package/Illustration.jsx +13 -0
- package/ImageCards.jsx +28 -0
- package/InfoBlock.jsx +23 -0
- package/InfoHero.jsx +93 -0
- package/IslandBlock.jsx +21 -0
- package/IslandPageBlock.jsx +21 -0
- package/LabeledTextBlock.jsx +21 -0
- package/Layout.jsx +69 -0
- package/MainMenu/_Auxiliary.jsx +26 -0
- package/MainMenu/_PrimaryPanel.jsx +37 -0
- package/MainMenu.d.ts +1 -1
- package/MainMenu.jsx +178 -0
- package/MiniMetrics.jsx +16 -0
- package/Modal.jsx +21 -0
- package/NameCard.jsx +92 -0
- package/NameCards.jsx +14 -0
- package/NewsHero.jsx +93 -0
- package/PageFilter.jsx +21 -0
- package/PageHeading.jsx +19 -0
- package/ProcessOverview.jsx +25 -0
- package/PullQuote.jsx +9 -0
- package/RadioButtonsGroup.jsx +19 -0
- package/RadioGroup.jsx +12 -0
- package/RelatedLinks.jsx +35 -0
- package/RowBlock.jsx +16 -0
- package/RowBlockColumn.jsx +18 -0
- package/SearchInput.jsx +63 -0
- package/SearchResults/_SearchResultsItem.jsx +24 -0
- package/SearchResults.jsx +146 -0
- package/SeenEffect.jsx +24 -0
- package/Selectbox.jsx +74 -0
- package/ShareButtons.jsx +82 -0
- package/Sharpie.jsx +27 -0
- package/SiteSearchAutocomplete.jsx +89 -0
- package/SiteSearchCurtain.jsx +65 -0
- package/SiteSearchInput.d.ts +1 -1
- package/SiteSearchInput.jsx +70 -0
- package/Skeleton.jsx +35 -0
- package/SubHeading.jsx +20 -0
- package/Tabs.jsx +122 -0
- package/TagPill.jsx +53 -0
- package/TextBlock.jsx +22 -0
- package/TextButton.jsx +14 -0
- package/TextInput.jsx +63 -0
- package/VSpacer.jsx +46 -0
- package/VerticalTabsTOC.jsx +96 -0
- package/WizardLayout.jsx +44 -0
- package/WizardLayoutClose.jsx +9 -0
- package/WizardStepper.jsx +34 -0
- package/_abstract/Button.jsx +56 -0
- package/_abstract/CardList.jsx +46 -0
- package/_abstract/Image.jsx +34 -0
- package/_abstract/Link.jsx +31 -0
- package/_abstract/TogglerGroup.jsx +36 -0
- package/_abstract/TogglerGroupField.jsx +27 -0
- package/_abstract/TogglerInput.jsx +40 -0
- package/_abstract/_AbstractCarousel.jsx +161 -0
- package/_abstract/_Blings.jsx +19 -0
- package/_abstract/_Block.jsx +32 -0
- package/_abstract/_Quote.jsx +18 -0
- package/_abstract/breakOnNL.jsx +13 -0
- package/assets.js +51 -0
- package/constants.js +25 -0
- package/esm/AccordionList.d.ts +17 -0
- package/esm/AccordionList.jsx +33 -0
- package/esm/ActionCards.d.ts +5 -0
- package/esm/ActionCards.jsx +10 -0
- package/esm/Alert.d.ts +49 -0
- package/esm/Alert.jsx +94 -0
- package/esm/ArticleCarousel/_ArticleCarouselCard.d.ts +27 -0
- package/esm/ArticleCarousel/_ArticleCarouselCard.jsx +25 -0
- package/esm/ArticleCarousel.d.ts +12 -0
- package/esm/ArticleCarousel.jsx +8 -0
- package/esm/ArticleMeta.d.ts +9 -0
- package/esm/ArticleMeta.jsx +17 -0
- package/esm/Attention.d.ts +7 -0
- package/esm/Attention.jsx +4 -0
- package/esm/BasicTable.d.ts +12 -0
- package/esm/BasicTable.jsx +30 -0
- package/esm/Bling.d.ts +81 -0
- package/esm/Bling.jsx +44 -0
- package/esm/BlockBreak.d.ts +2 -0
- package/esm/BlockBreak.jsx +6 -0
- package/esm/BlockQuote.d.ts +4 -0
- package/esm/BlockQuote.jsx +4 -0
- package/esm/BreadCrumbs.d.ts +11 -0
- package/esm/BreadCrumbs.jsx +31 -0
- package/esm/ButtonBack.d.ts +7 -0
- package/esm/ButtonBack.jsx +4 -0
- package/esm/ButtonBar.d.ts +16 -0
- package/esm/ButtonBar.jsx +16 -0
- package/esm/ButtonPrimary.d.ts +7 -0
- package/esm/ButtonPrimary.jsx +4 -0
- package/esm/ButtonSecondary.d.ts +7 -0
- package/esm/ButtonSecondary.jsx +4 -0
- package/esm/ButtonTertiary.d.ts +12 -0
- package/esm/ButtonTertiary.jsx +15 -0
- package/esm/Carousel.d.ts +4 -0
- package/esm/Carousel.jsx +4 -0
- package/esm/CarouselStepper.d.ts +4 -0
- package/esm/CarouselStepper.jsx +4 -0
- package/esm/CenterColumn.d.ts +7 -0
- package/esm/CenterColumn.jsx +9 -0
- package/esm/Checkbox.d.ts +4 -0
- package/esm/Checkbox.jsx +4 -0
- package/esm/CheckboxButtonsGroup.d.ts +11 -0
- package/esm/CheckboxButtonsGroup.jsx +14 -0
- package/esm/CheckboxGroup.d.ts +9 -0
- package/esm/CheckboxGroup.jsx +7 -0
- package/esm/CityBlock.d.ts +23 -0
- package/esm/CityBlock.jsx +18 -0
- package/esm/ContactBubble.d.ts +58 -0
- package/esm/ContactBubble.jsx +162 -0
- package/esm/ContentArticle.d.ts +15 -0
- package/esm/ContentArticle.jsx +24 -0
- package/esm/ContentImage.d.ts +8 -0
- package/esm/ContentImage.jsx +13 -0
- package/esm/Datepicker.d.ts +39 -0
- package/esm/Datepicker.jsx +64 -0
- package/esm/ExtraLinks.d.ts +18 -0
- package/esm/ExtraLinks.jsx +42 -0
- package/esm/FeatureList.d.ts +12 -0
- package/esm/FeatureList.jsx +23 -0
- package/esm/FieldGroup.d.ts +9 -0
- package/esm/FieldGroup.jsx +10 -0
- package/esm/FileInput.d.ts +17 -0
- package/esm/FileInput.jsx +157 -0
- package/esm/Foonote.d.ts +12 -0
- package/esm/Foonote.jsx +7 -0
- package/esm/FooterBadges.d.ts +9 -0
- package/esm/FooterBadges.jsx +16 -0
- package/esm/FooterInfo.d.ts +18 -0
- package/esm/FooterInfo.jsx +14 -0
- package/esm/Footnote.d.ts +6 -0
- package/esm/Footnote.jsx +3 -0
- package/esm/Form.d.ts +7 -0
- package/esm/Form.jsx +12 -0
- package/esm/FormField.d.ts +65 -0
- package/esm/FormField.jsx +93 -0
- package/esm/Gallery/_GalleryItem.d.ts +8 -0
- package/esm/Gallery/_GalleryItem.jsx +31 -0
- package/esm/Gallery/_GalleryModal.d.ts +6 -0
- package/esm/Gallery/_GalleryModal.jsx +58 -0
- package/esm/Gallery/_GalleryModalContext.d.ts +9 -0
- package/esm/Gallery/_GalleryModalContext.js +3 -0
- package/esm/Gallery/_GalleryModalItem.d.ts +3 -0
- package/esm/Gallery/_GalleryModalItem.jsx +24 -0
- package/esm/Gallery.d.ts +17 -0
- package/esm/Gallery.jsx +28 -0
- package/esm/GridBlocks.d.ts +26 -0
- package/esm/GridBlocks.jsx +35 -0
- package/esm/Heading.d.ts +16 -0
- package/esm/Heading.jsx +19 -0
- package/esm/HeroBlock.d.ts +19 -0
- package/esm/HeroBlock.jsx +22 -0
- package/esm/IframeBlock.d.ts +23 -0
- package/esm/IframeBlock.jsx +26 -0
- package/esm/Illustration.d.ts +13 -0
- package/esm/Illustration.jsx +8 -0
- package/esm/ImageCards.d.ts +8 -0
- package/esm/ImageCards.jsx +23 -0
- package/esm/InfoBlock.d.ts +17 -0
- package/esm/InfoBlock.jsx +18 -0
- package/esm/InfoHero.d.ts +17 -0
- package/esm/InfoHero.jsx +88 -0
- package/esm/IslandBlock.d.ts +25 -0
- package/esm/IslandBlock.jsx +16 -0
- package/esm/IslandPageBlock.d.ts +24 -0
- package/esm/IslandPageBlock.jsx +16 -0
- package/esm/LabeledTextBlock.d.ts +11 -0
- package/esm/LabeledTextBlock.jsx +16 -0
- package/esm/Layout.d.ts +33 -0
- package/esm/Layout.jsx +63 -0
- package/esm/MainMenu/_Auxiliary.d.ts +6 -0
- package/esm/MainMenu/_Auxiliary.jsx +19 -0
- package/esm/MainMenu/_PrimaryPanel.d.ts +13 -0
- package/esm/MainMenu/_PrimaryPanel.jsx +30 -0
- package/esm/MainMenu.d.ts +48 -0
- package/esm/MainMenu.jsx +149 -0
- package/esm/MiniMetrics.d.ts +8 -0
- package/esm/MiniMetrics.jsx +11 -0
- package/esm/Modal.d.ts +10 -0
- package/esm/Modal.jsx +16 -0
- package/esm/NameCard.d.ts +64 -0
- package/esm/NameCard.jsx +87 -0
- package/esm/NameCards.d.ts +6 -0
- package/esm/NameCards.jsx +9 -0
- package/esm/NewsHero.d.ts +14 -0
- package/esm/NewsHero.jsx +88 -0
- package/esm/PageFilter.d.ts +17 -0
- package/esm/PageFilter.jsx +16 -0
- package/esm/PageHeading.d.ts +10 -0
- package/esm/PageHeading.jsx +14 -0
- package/esm/ProcessOverview.d.ts +13 -0
- package/esm/ProcessOverview.jsx +20 -0
- package/esm/PullQuote.d.ts +4 -0
- package/esm/PullQuote.jsx +4 -0
- package/esm/RadioButtonsGroup.d.ts +11 -0
- package/esm/RadioButtonsGroup.jsx +14 -0
- package/esm/RadioGroup.d.ts +13 -0
- package/esm/RadioGroup.jsx +7 -0
- package/esm/RelatedLinks.d.ts +20 -0
- package/esm/RelatedLinks.jsx +30 -0
- package/esm/RowBlock.d.ts +12 -0
- package/esm/RowBlock.jsx +11 -0
- package/esm/RowBlockColumn.d.ts +8 -0
- package/esm/RowBlockColumn.jsx +13 -0
- package/esm/SearchInput.d.ts +18 -0
- package/esm/SearchInput.jsx +35 -0
- package/esm/SearchResults/_SearchResultsItem.d.ts +18 -0
- package/esm/SearchResults/_SearchResultsItem.jsx +19 -0
- package/esm/SearchResults.d.ts +33 -0
- package/esm/SearchResults.jsx +118 -0
- package/esm/SeenEffect.d.ts +4 -0
- package/esm/SeenEffect.jsx +19 -0
- package/esm/Selectbox.d.ts +8 -0
- package/esm/Selectbox.jsx +46 -0
- package/esm/ShareButtons.d.ts +9 -0
- package/esm/ShareButtons.jsx +57 -0
- package/esm/Sharpie.d.ts +23 -0
- package/esm/Sharpie.jsx +22 -0
- package/esm/SiteSearchAutocomplete.d.ts +40 -0
- package/esm/SiteSearchAutocomplete.jsx +60 -0
- package/esm/SiteSearchCurtain.d.ts +6 -0
- package/esm/SiteSearchCurtain.jsx +37 -0
- package/esm/SiteSearchInput.d.ts +24 -0
- package/esm/SiteSearchInput.jsx +42 -0
- package/esm/Skeleton.d.ts +25 -0
- package/esm/Skeleton.jsx +30 -0
- package/esm/SubHeading.d.ts +10 -0
- package/esm/SubHeading.jsx +15 -0
- package/esm/Tabs.d.ts +35 -0
- package/esm/Tabs.jsx +94 -0
- package/esm/TagPill.d.ts +27 -0
- package/esm/TagPill.jsx +48 -0
- package/esm/TextBlock.d.ts +15 -0
- package/esm/TextBlock.jsx +17 -0
- package/esm/TextButton.d.ts +9 -0
- package/esm/TextButton.jsx +9 -0
- package/esm/TextInput.d.ts +16 -0
- package/esm/TextInput.jsx +35 -0
- package/esm/VSpacer.d.ts +24 -0
- package/esm/VSpacer.jsx +41 -0
- package/esm/VerticalTabsTOC.d.ts +14 -0
- package/esm/VerticalTabsTOC.jsx +68 -0
- package/esm/WizardLayout.d.ts +15 -0
- package/esm/WizardLayout.jsx +39 -0
- package/esm/WizardLayoutClose.d.ts +3 -0
- package/esm/WizardLayoutClose.jsx +4 -0
- package/esm/WizardStepper.d.ts +36 -0
- package/esm/WizardStepper.jsx +29 -0
- package/esm/_abstract/Button.d.ts +40 -0
- package/esm/_abstract/Button.jsx +51 -0
- package/esm/_abstract/CardList.d.ts +29 -0
- package/esm/_abstract/CardList.jsx +39 -0
- package/esm/_abstract/Image.d.ts +32 -0
- package/esm/_abstract/Image.jsx +29 -0
- package/esm/_abstract/Link.d.ts +27 -0
- package/esm/_abstract/Link.jsx +24 -0
- package/esm/_abstract/TogglerGroup.d.ts +31 -0
- package/esm/_abstract/TogglerGroup.jsx +31 -0
- package/esm/_abstract/TogglerGroupField.d.ts +17 -0
- package/esm/_abstract/TogglerGroupField.jsx +22 -0
- package/esm/_abstract/TogglerInput.d.ts +22 -0
- package/esm/_abstract/TogglerInput.jsx +35 -0
- package/esm/_abstract/_AbstractCarousel.d.ts +25 -0
- package/esm/_abstract/_AbstractCarousel.jsx +133 -0
- package/esm/_abstract/_Blings.d.ts +11 -0
- package/esm/_abstract/_Blings.jsx +14 -0
- package/esm/_abstract/_Block.d.ts +22 -0
- package/esm/_abstract/_Block.jsx +27 -0
- package/esm/_abstract/_Quote.d.ts +9 -0
- package/esm/_abstract/_Quote.jsx +11 -0
- package/esm/_abstract/breakOnNL.d.ts +2 -0
- package/esm/_abstract/breakOnNL.jsx +8 -0
- package/esm/assets.d.ts +42 -0
- package/esm/assets.js +56 -0
- package/esm/constants.d.ts +39 -0
- package/esm/constants.js +22 -0
- package/esm/focus-visible.d.ts +1 -0
- package/esm/focus-visible.js +1 -0
- package/esm/package.json +1 -0
- package/esm/utils/env.d.ts +1 -0
- package/esm/utils/env.js +8 -0
- package/esm/utils/seenEffect.d.ts +28 -0
- package/esm/utils/seenEffect.js +73 -0
- package/esm/utils/useFormatMonitor.d.ts +38 -0
- package/esm/utils/useFormatMonitor.js +41 -0
- package/esm/utils/useGetSVGtext.d.ts +6 -0
- package/esm/utils/useGetSVGtext.js +19 -0
- package/esm/utils/useMenuToggling.d.ts +8 -0
- package/esm/utils/useMenuToggling.js +62 -0
- package/esm/utils/useScrollbarWidthCSSVar.d.ts +1 -0
- package/esm/utils/useScrollbarWidthCSSVar.js +3 -0
- package/esm/utils.d.ts +2 -0
- package/esm/utils.js +2 -0
- package/focus-visible.js +3 -0
- package/package.json +183 -184
- package/utils/env.js +14 -0
- package/utils/seenEffect.js +81 -0
- package/utils/useFormatMonitor.js +44 -0
- package/utils/useGetSVGtext.js +23 -0
- package/utils/useMenuToggling.js +66 -0
- package/utils/useScrollbarWidthCSSVar.js +10 -0
- package/utils.js +18 -0
- package/AccordionList.cjs +0 -91
- package/AccordionList.mjs +0 -69
- package/ActionCards.cjs +0 -57
- package/ActionCards.mjs +0 -35
- package/Alert.cjs +0 -159
- package/Alert.mjs +0 -139
- package/ArticleCarousel/_ArticleCarouselCard.cjs +0 -75
- package/ArticleCarousel/_ArticleCarouselCard.mjs +0 -51
- package/ArticleCarousel.cjs +0 -43
- package/ArticleCarousel.mjs +0 -21
- package/ArticleMeta.cjs +0 -46
- package/ArticleMeta.mjs +0 -22
- package/Attention.cjs +0 -33
- package/Attention.mjs +0 -9
- package/BasicTable.cjs +0 -72
- package/BasicTable.mjs +0 -50
- package/Bling.cjs +0 -76
- package/Bling.mjs +0 -52
- package/BlockBreak.cjs +0 -32
- package/BlockBreak.mjs +0 -8
- package/BlockQuote.cjs +0 -47
- package/BlockQuote.mjs +0 -25
- package/BreadCrumbs.cjs +0 -67
- package/BreadCrumbs.mjs +0 -43
- package/ButtonBack.cjs +0 -47
- package/ButtonBack.mjs +0 -25
- package/ButtonBar.cjs +0 -45
- package/ButtonBar.mjs +0 -18
- package/ButtonPrimary.cjs +0 -47
- package/ButtonPrimary.mjs +0 -25
- package/ButtonSecondary.cjs +0 -47
- package/ButtonSecondary.mjs +0 -25
- package/ButtonTertiary.cjs +0 -64
- package/ButtonTertiary.mjs +0 -42
- package/Carousel.cjs +0 -52
- package/Carousel.mjs +0 -30
- package/CarouselStepper.cjs +0 -51
- package/CarouselStepper.mjs +0 -29
- package/CenterColumn.cjs +0 -40
- package/CenterColumn.mjs +0 -16
- package/Checkbox.cjs +0 -52
- package/Checkbox.mjs +0 -30
- package/CheckboxButtonsGroup.cjs +0 -65
- package/CheckboxButtonsGroup.mjs +0 -43
- package/CheckboxGroup.cjs +0 -55
- package/CheckboxGroup.mjs +0 -33
- package/CityBlock.cjs +0 -49
- package/CityBlock.mjs +0 -25
- package/ContactBubble.cjs +0 -200
- package/ContactBubble.mjs +0 -173
- package/ContentArticle.cjs +0 -63
- package/ContentArticle.mjs +0 -41
- package/ContentImage.cjs +0 -58
- package/ContentImage.mjs +0 -36
- package/Datepicker.cjs +0 -164
- package/Datepicker.mjs +0 -142
- package/ExtraLinks.cjs +0 -96
- package/ExtraLinks.mjs +0 -74
- package/FeatureList.cjs +0 -53
- package/FeatureList.mjs +0 -29
- package/FieldGroup.cjs +0 -40
- package/FieldGroup.mjs +0 -16
- package/FileInput.cjs +0 -256
- package/FileInput.mjs +0 -234
- package/Foonote.cjs +0 -30
- package/Foonote.mjs +0 -6
- package/FooterBadges.cjs +0 -49
- package/FooterBadges.mjs +0 -25
- package/FooterInfo.cjs +0 -47
- package/FooterInfo.mjs +0 -23
- package/Footnote.cjs +0 -32
- package/Footnote.mjs +0 -8
- package/Form.cjs +0 -56
- package/Form.mjs +0 -34
- package/FormField.cjs +0 -153
- package/FormField.mjs +0 -131
- package/Gallery/_GalleryItem.cjs +0 -83
- package/Gallery/_GalleryItem.mjs +0 -61
- package/Gallery/_GalleryModal.cjs +0 -104
- package/Gallery/_GalleryModal.mjs +0 -82
- package/Gallery/_GalleryModalContext.cjs +0 -30
- package/Gallery/_GalleryModalContext.mjs +0 -6
- package/Gallery/_GalleryModalItem.cjs +0 -59
- package/Gallery/_GalleryModalItem.mjs +0 -36
- package/Gallery.cjs +0 -79
- package/Gallery.mjs +0 -57
- package/GridBlocks.cjs +0 -81
- package/GridBlocks.mjs +0 -59
- package/Heading.cjs +0 -45
- package/Heading.mjs +0 -21
- package/HeroBlock.cjs +0 -74
- package/HeroBlock.mjs +0 -52
- package/IframeBlock.cjs +0 -48
- package/IframeBlock.mjs +0 -24
- package/Illustration.cjs +0 -51
- package/Illustration.mjs +0 -31
- package/ImageCards.cjs +0 -72
- package/ImageCards.mjs +0 -52
- package/InfoBlock.cjs +0 -51
- package/InfoBlock.mjs +0 -27
- package/InfoHero.cjs +0 -150
- package/InfoHero.mjs +0 -128
- package/IslandBlock.cjs +0 -63
- package/IslandBlock.mjs +0 -41
- package/IslandPageBlock.cjs +0 -49
- package/IslandPageBlock.mjs +0 -25
- package/LabeledTextBlock.cjs +0 -60
- package/LabeledTextBlock.mjs +0 -38
- package/Layout.cjs +0 -113
- package/Layout.mjs +0 -87
- package/MainMenu/_Auxiliary.cjs +0 -54
- package/MainMenu/_Auxiliary.mjs +0 -28
- package/MainMenu/_PrimaryPanel.cjs +0 -74
- package/MainMenu/_PrimaryPanel.mjs +0 -48
- package/MainMenu.cjs +0 -209
- package/MainMenu.mjs +0 -187
- package/MiniMetrics.cjs +0 -56
- package/MiniMetrics.mjs +0 -34
- package/Modal.cjs +0 -70
- package/Modal.mjs +0 -48
- package/NameCard.cjs +0 -115
- package/NameCard.mjs +0 -91
- package/NameCards.cjs +0 -52
- package/NameCards.mjs +0 -30
- package/NewsHero.cjs +0 -136
- package/NewsHero.mjs +0 -114
- package/PageFilter.cjs +0 -48
- package/PageFilter.mjs +0 -24
- package/PageHeading.cjs +0 -42
- package/PageHeading.mjs +0 -18
- package/ProcessOverview.cjs +0 -52
- package/ProcessOverview.mjs +0 -28
- package/PullQuote.cjs +0 -47
- package/PullQuote.mjs +0 -25
- package/RadioButtonsGroup.cjs +0 -64
- package/RadioButtonsGroup.mjs +0 -42
- package/RadioGroup.cjs +0 -58
- package/RadioGroup.mjs +0 -36
- package/RelatedLinks.cjs +0 -61
- package/RelatedLinks.mjs +0 -37
- package/RowBlock.cjs +0 -39
- package/RowBlock.mjs +0 -15
- package/RowBlockColumn.cjs +0 -40
- package/RowBlockColumn.mjs +0 -16
- package/SearchInput.cjs +0 -136
- package/SearchInput.mjs +0 -114
- package/SearchResults/_SearchResultsItem.cjs +0 -54
- package/SearchResults/_SearchResultsItem.mjs +0 -30
- package/SearchResults.cjs +0 -172
- package/SearchResults.mjs +0 -150
- package/SeenEffect.cjs +0 -66
- package/SeenEffect.mjs +0 -44
- package/Selectbox.cjs +0 -144
- package/Selectbox.mjs +0 -122
- package/ShareButtons.cjs +0 -101
- package/ShareButtons.mjs +0 -83
- package/Sharpie.cjs +0 -51
- package/Sharpie.mjs +0 -27
- package/SiteSearchAutocomplete.cjs +0 -150
- package/SiteSearchAutocomplete.mjs +0 -126
- package/SiteSearchCurtain.cjs +0 -78
- package/SiteSearchCurtain.mjs +0 -56
- package/SiteSearchInput.cjs +0 -119
- package/SiteSearchInput.mjs +0 -97
- package/Skeleton.cjs +0 -63
- package/Skeleton.mjs +0 -39
- package/SubHeading.cjs +0 -43
- package/SubHeading.mjs +0 -19
- package/Tabs.cjs +0 -166
- package/Tabs.mjs +0 -144
- package/TagPill.cjs +0 -113
- package/TagPill.mjs +0 -91
- package/TextBlock.cjs +0 -45
- package/TextBlock.mjs +0 -21
- package/TextButton.cjs +0 -55
- package/TextButton.mjs +0 -33
- package/TextInput.cjs +0 -136
- package/TextInput.mjs +0 -114
- package/VSpacer.cjs +0 -70
- package/VSpacer.mjs +0 -46
- package/VerticalTabsTOC.cjs +0 -123
- package/VerticalTabsTOC.mjs +0 -101
- package/WizardLayout.cjs +0 -79
- package/WizardLayout.mjs +0 -55
- package/WizardLayoutClose.cjs +0 -47
- package/WizardLayoutClose.mjs +0 -25
- package/WizardStepper.cjs +0 -55
- package/WizardStepper.mjs +0 -31
- package/_abstract/Button.cjs +0 -114
- package/_abstract/Button.mjs +0 -92
- package/_abstract/CardList.cjs +0 -100
- package/_abstract/CardList.mjs +0 -76
- package/_abstract/Image.cjs +0 -75
- package/_abstract/Image.mjs +0 -51
- package/_abstract/Link.cjs +0 -37
- package/_abstract/Link.mjs +0 -10
- package/_abstract/TogglerGroup.cjs +0 -92
- package/_abstract/TogglerGroup.mjs +0 -70
- package/_abstract/TogglerGroupField.cjs +0 -121
- package/_abstract/TogglerGroupField.mjs +0 -99
- package/_abstract/TogglerInput.cjs +0 -105
- package/_abstract/TogglerInput.mjs +0 -83
- package/_abstract/_AbstractCarousel.cjs +0 -170
- package/_abstract/_AbstractCarousel.mjs +0 -152
- package/_abstract/_Blings.cjs +0 -47
- package/_abstract/_Blings.mjs +0 -23
- package/_abstract/_Block.cjs +0 -73
- package/_abstract/_Block.mjs +0 -51
- package/_abstract/_Quote.cjs +0 -43
- package/_abstract/_Quote.mjs +0 -17
- package/_abstract/breakOnNL.cjs +0 -30
- package/_abstract/breakOnNL.mjs +0 -6
- package/assets.cjs +0 -77
- package/assets.mjs +0 -53
- package/constants.cjs +0 -49
- package/constants.mjs +0 -24
- package/focus-visible.cjs +0 -1
- package/focus-visible.mjs +0 -1
- package/utils/config.cjs +0 -27
- package/utils/config.d.ts +0 -2
- package/utils/config.mjs +0 -4
- package/utils/detectEdgeScroll.cjs +0 -95
- package/utils/detectEdgeScroll.d.ts +0 -52
- package/utils/detectEdgeScroll.mjs +0 -71
- package/utils/env.cjs +0 -31
- package/utils/env.mjs +0 -5
- package/utils/seenEffect.cjs +0 -93
- package/utils/seenEffect.mjs +0 -65
- package/utils/useFormatMonitor.cjs +0 -29
- package/utils/useFormatMonitor.mjs +0 -6
- package/utils/useGetSVGtext.cjs +0 -44
- package/utils/useGetSVGtext.mjs +0 -21
- package/utils/useMenuToggling.cjs +0 -83
- package/utils/useMenuToggling.mjs +0 -60
- package/utils/useScrollbarWidthCSSVar.cjs +0 -32
- package/utils/useScrollbarWidthCSSVar.mjs +0 -6
- package/utils.cjs +0 -18
- package/utils.mjs +0 -2
package/SearchInput.jsx
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
26
|
+
var t = {};
|
|
27
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
28
|
+
t[p] = s[p];
|
|
29
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
30
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
31
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
32
|
+
t[p[i]] = s[p[i]];
|
|
33
|
+
}
|
|
34
|
+
return t;
|
|
35
|
+
};
|
|
36
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
37
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
38
|
+
};
|
|
39
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40
|
+
const react_1 = __importStar(require("react"));
|
|
41
|
+
const getBemClass_1 = __importDefault(require("@hugsmidjan/react/utils/getBemClass"));
|
|
42
|
+
const FormField_1 = __importDefault(require("./FormField"));
|
|
43
|
+
const SearchInput = (props) => {
|
|
44
|
+
var _a;
|
|
45
|
+
const { className, label, assistText, hideLabel, disabled, readOnly, invalid, errorMessage, required, reqText, id, onChange, small, onButtonClick, buttonText = 'Leita', ssr } = props, inputElementProps = __rest(props, ["className", "label", "assistText", "hideLabel", "disabled", "readOnly", "invalid", "errorMessage", "required", "reqText", "id", "onChange", "small", "onButtonClick", "buttonText", "ssr"]);
|
|
46
|
+
const { value, defaultValue, placeholder } = inputElementProps;
|
|
47
|
+
const [hasValue, setHasValue] = (0, react_1.useState)(undefined);
|
|
48
|
+
const filled = !!((_a = value !== null && value !== void 0 ? value : hasValue) !== null && _a !== void 0 ? _a : !!defaultValue);
|
|
49
|
+
const empty = !filled && !placeholder;
|
|
50
|
+
const _onChange = value != null
|
|
51
|
+
? onChange
|
|
52
|
+
: (e) => {
|
|
53
|
+
setHasValue(!!e.target.value);
|
|
54
|
+
onChange && onChange(e);
|
|
55
|
+
};
|
|
56
|
+
return (<FormField_1.default className={(0, getBemClass_1.default)('SearchInput', [], className)} ssr={ssr} small={small} label={label} empty={empty} filled={filled} assistText={assistText} hideLabel={hideLabel} disabled={disabled} readOnly={readOnly} invalid={invalid} errorMessage={errorMessage} required={required} reqText={reqText} id={id} renderInput={(className, inputProps, addFocusProps) => (<div className={className.input} {...addFocusProps()}>
|
|
57
|
+
<input className="SearchInput__input" onChange={_onChange} {...inputProps} {...inputElementProps} ref={props.inputRef}/>{' '}
|
|
58
|
+
{onButtonClick && (<button className="SearchInput__button" type="button" onClick={onButtonClick} title={buttonText} ref={props.buttonRef}>
|
|
59
|
+
{buttonText}
|
|
60
|
+
</button>)}
|
|
61
|
+
</div>)}/>);
|
|
62
|
+
};
|
|
63
|
+
exports.default = SearchInput;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const react_1 = __importDefault(require("react"));
|
|
7
|
+
const Image_1 = __importDefault(require("../_abstract/Image"));
|
|
8
|
+
const Link_1 = require("../_abstract/Link");
|
|
9
|
+
const SearchResultsItem = (props) => {
|
|
10
|
+
const { highlight, title, summary, href, meta, image } = props;
|
|
11
|
+
const bem = highlight ? 'SearchResultsHighlightItem' : 'SearchResultsItem';
|
|
12
|
+
const metaArr = (Array.isArray(meta) ? meta : [meta]);
|
|
13
|
+
return (<li className={bem}>
|
|
14
|
+
<Link_1.Link className={bem + '__link'} href={href}>
|
|
15
|
+
<h3 className={bem + '__title'}>{title}</h3>
|
|
16
|
+
{metaArr.length > 0 && (<span className={bem + '__meta'}>
|
|
17
|
+
{metaArr.map((item, i) => typeof item === 'function' ? item() : item && <span key={i}>{item}</span>)}
|
|
18
|
+
</span>)}
|
|
19
|
+
{highlight && image && <Image_1.default className={bem + '__image'} src={image}/>}
|
|
20
|
+
<div className={bem + '__summary'} dangerouslySetInnerHTML={{ __html: summary }}/>
|
|
21
|
+
</Link_1.Link>
|
|
22
|
+
</li>);
|
|
23
|
+
};
|
|
24
|
+
exports.default = SearchResultsItem;
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
const react_1 = __importStar(require("react"));
|
|
30
|
+
const react_intersection_observer_1 = require("react-intersection-observer");
|
|
31
|
+
const prettyNum_1 = require("@hugsmidjan/qj/prettyNum");
|
|
32
|
+
const range_1 = __importDefault(require("@hugsmidjan/qj/range"));
|
|
33
|
+
const hooks_1 = require("@hugsmidjan/react/hooks");
|
|
34
|
+
const getBemClass_1 = __importDefault(require("@hugsmidjan/react/utils/getBemClass"));
|
|
35
|
+
const i18n_1 = require("@reykjavik/hanna-utils/i18n");
|
|
36
|
+
const _SearchResultsItem_1 = __importDefault(require("./SearchResults/_SearchResultsItem"));
|
|
37
|
+
const Alert_1 = __importDefault(require("./Alert"));
|
|
38
|
+
const Tabs_1 = __importDefault(require("./Tabs"));
|
|
39
|
+
const renderDefaultErrorText = () => (<>
|
|
40
|
+
Úps, það hefur komið upp villa. Má bjóða þér að prófa aftur að leita?
|
|
41
|
+
<br />
|
|
42
|
+
Ef ekkert lát er á villunni þá kunnum við að meta að þú látir okkur vita.
|
|
43
|
+
</>);
|
|
44
|
+
const defaultTexts = {
|
|
45
|
+
en: {
|
|
46
|
+
lang: 'en',
|
|
47
|
+
loadQueryTitle: 'Loading results...',
|
|
48
|
+
resultsTitle: 'results found for',
|
|
49
|
+
noResultsTitle: 'No results were found for',
|
|
50
|
+
loadMore: 'Load more',
|
|
51
|
+
// loadingMore: 'Loading...',
|
|
52
|
+
},
|
|
53
|
+
is: {
|
|
54
|
+
lang: 'is',
|
|
55
|
+
loadQueryTitle: 'Sæki niðurstöður...',
|
|
56
|
+
resultsTitle: 'leitarniðurstöður fyrir',
|
|
57
|
+
noResultsTitle: 'Engar leitarniðurstöður fundust fyrir',
|
|
58
|
+
loadMore: 'Sækja fleiri',
|
|
59
|
+
// loadingMore: 'Sæki fleiri...',
|
|
60
|
+
},
|
|
61
|
+
};
|
|
62
|
+
const SearchResults_Tabs = (props) => {
|
|
63
|
+
const { domid, filters, activeIdx, setFilter, lang } = props;
|
|
64
|
+
const tabs = (0, react_1.useMemo)(() => (filters || []).map(({ label, count }) => ({
|
|
65
|
+
label,
|
|
66
|
+
badge: (0, prettyNum_1.prettyNum)(count, { lang }),
|
|
67
|
+
})), [filters, lang]);
|
|
68
|
+
return tabs.length ? (<Tabs_1.default role="tablist" aria-controls={domid} tabs={tabs} activeIdx={activeIdx || 0} onSetActive={(i) => setFilter && setFilter(i)}/>) : null;
|
|
69
|
+
};
|
|
70
|
+
const LoadingScaffold = (props) => props.count ? (<ol className="SearchResults__list SearchResults__list--loading">
|
|
71
|
+
{(0, range_1.default)(1, props.count).map((item, i) => (<_SearchResultsItem_1.default key={i} title="..." summary="" href=""/>))}
|
|
72
|
+
</ol>) : null;
|
|
73
|
+
// ===========================================================================
|
|
74
|
+
const NUM_AUTOLOADS = 2;
|
|
75
|
+
const SearchResults__loadmore = (props) => {
|
|
76
|
+
const { status, hits, numItems, loadMore, pageSize, texts } = props;
|
|
77
|
+
const { lang } = texts;
|
|
78
|
+
const moreCount = (hits || 0) - (numItems || 0);
|
|
79
|
+
const autoLoadCount = (0, react_1.useRef)(0);
|
|
80
|
+
const skip = !loadMore || autoLoadCount.current >= NUM_AUTOLOADS;
|
|
81
|
+
const [refFn, theEndIsNigh] = (0, react_intersection_observer_1.useInView)({
|
|
82
|
+
rootMargin: '150px 0px 0px 0px',
|
|
83
|
+
skip, // disable after two clicks
|
|
84
|
+
});
|
|
85
|
+
(0, react_1.useEffect)(() => {
|
|
86
|
+
if (theEndIsNigh && loadMore) {
|
|
87
|
+
autoLoadCount.current = autoLoadCount.current + 1;
|
|
88
|
+
loadMore();
|
|
89
|
+
}
|
|
90
|
+
}, [theEndIsNigh, loadMore]);
|
|
91
|
+
const moreAvailable = status === 'results' && moreCount && loadMore;
|
|
92
|
+
return status === 'loadingmore' ? (<LoadingScaffold count={Math.min(pageSize, moreCount)}/>) : moreAvailable ? (<button ref={refFn} className="SearchResults__loadmore" type="button" onClick={loadMore}>
|
|
93
|
+
{texts.loadMore}{' '}
|
|
94
|
+
<span className="SearchResults__loadmore__count">
|
|
95
|
+
({(0, prettyNum_1.prettyNum)(moreCount, { lang })})
|
|
96
|
+
</span>
|
|
97
|
+
</button>) : null;
|
|
98
|
+
};
|
|
99
|
+
// ===========================================================================
|
|
100
|
+
const renderTitle = (props, texts) => {
|
|
101
|
+
const { status, totalHits, query } = props;
|
|
102
|
+
const lang = texts.lang || props.lang || i18n_1.DEFAULT_LANG;
|
|
103
|
+
return (<h2 className="SearchResults__title">
|
|
104
|
+
{status === 'loadingquery'
|
|
105
|
+
? texts.loadQueryTitle
|
|
106
|
+
: totalHits
|
|
107
|
+
? (0, prettyNum_1.prettyNum)(totalHits, { lang: lang }) +
|
|
108
|
+
' ' +
|
|
109
|
+
texts.resultsTitle
|
|
110
|
+
: texts.noResultsTitle}
|
|
111
|
+
<span className="SearchResults__query">{query}</span>
|
|
112
|
+
</h2>);
|
|
113
|
+
};
|
|
114
|
+
// ---------------------------------------------------------------------------
|
|
115
|
+
const renderResults = (props) => {
|
|
116
|
+
const { status, pageSize, items, hits } = props;
|
|
117
|
+
if (status === 'loadingquery' || status === 'loadingfilter') {
|
|
118
|
+
return <LoadingScaffold count={Math.min(pageSize, hits || 999)}/>;
|
|
119
|
+
}
|
|
120
|
+
return items && items.length ? (<ol className="SearchResults__list">
|
|
121
|
+
{items.map((item, i) => (<_SearchResultsItem_1.default key={i} {...item}/>))}
|
|
122
|
+
</ol>) : null;
|
|
123
|
+
};
|
|
124
|
+
// ---------------------------------------------------------------------------
|
|
125
|
+
const renderLoadMore = (props, texts) => {
|
|
126
|
+
const { hits, items, status, pageSize, loadMore } = props;
|
|
127
|
+
return (<SearchResults__loadmore hits={hits} numItems={items && items.length} status={status} pageSize={pageSize} loadMore={loadMore} texts={texts}/>);
|
|
128
|
+
};
|
|
129
|
+
// TODO: add plural translation thingy for result string
|
|
130
|
+
const SearchResults = (props) => {
|
|
131
|
+
const { filters, activeFilterIdx, setFilter, status, errorText } = props;
|
|
132
|
+
const texts = (0, i18n_1.getTexts)(props, defaultTexts);
|
|
133
|
+
const domid = (0, hooks_1.useDomid)();
|
|
134
|
+
return (<div className={(0, getBemClass_1.default)('SearchResults', status !== 'results' && status)}>
|
|
135
|
+
{renderTitle(props, texts)}
|
|
136
|
+
|
|
137
|
+
<SearchResults_Tabs domid={domid} filters={filters} activeIdx={activeFilterIdx} setFilter={setFilter} lang={texts.lang}/>
|
|
138
|
+
|
|
139
|
+
<div className="SearchResults__results" id={domid}>
|
|
140
|
+
{renderResults(props)}
|
|
141
|
+
{status === 'error' && (<Alert_1.default type="error">{errorText || renderDefaultErrorText()}</Alert_1.default>)}
|
|
142
|
+
{renderLoadMore(props, texts)}
|
|
143
|
+
</div>
|
|
144
|
+
</div>);
|
|
145
|
+
};
|
|
146
|
+
exports.default = SearchResults;
|
package/SeenEffect.jsx
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3
|
+
var t = {};
|
|
4
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5
|
+
t[p] = s[p];
|
|
6
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9
|
+
t[p[i]] = s[p[i]];
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
14
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
const react_1 = __importDefault(require("react"));
|
|
18
|
+
const seenEffect_1 = require("./utils/seenEffect");
|
|
19
|
+
const SeenEffect = (props) => {
|
|
20
|
+
const { effectType, startSeen } = props, divProps = __rest(props, ["effectType", "startSeen"]);
|
|
21
|
+
const [ref] = (0, seenEffect_1.useSeenEffect)(startSeen);
|
|
22
|
+
return <div {...divProps} ref={ref} {...(0, seenEffect_1.getEffectAttr)(effectType)}/>;
|
|
23
|
+
};
|
|
24
|
+
exports.default = SeenEffect;
|
package/Selectbox.jsx
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
26
|
+
var t = {};
|
|
27
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
28
|
+
t[p] = s[p];
|
|
29
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
30
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
31
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
32
|
+
t[p[i]] = s[p[i]];
|
|
33
|
+
}
|
|
34
|
+
return t;
|
|
35
|
+
};
|
|
36
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
37
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
38
|
+
};
|
|
39
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40
|
+
const react_1 = __importStar(require("react"));
|
|
41
|
+
const Selectbox_1 = __importDefault(require("@hugsmidjan/react/Selectbox"));
|
|
42
|
+
const getBemClass_1 = __importDefault(require("@hugsmidjan/react/utils/getBemClass"));
|
|
43
|
+
const FormField_1 = __importDefault(require("./FormField"));
|
|
44
|
+
const getValue = (opt) => {
|
|
45
|
+
const val = typeof opt === 'object' ? opt.value : opt;
|
|
46
|
+
return typeof val === 'number' ? String(val) : val;
|
|
47
|
+
};
|
|
48
|
+
const Selectbox = (props) => {
|
|
49
|
+
var _a;
|
|
50
|
+
const { className, label, assistText, hideLabel, disabled, readOnly, reqText, invalid, errorMessage, required, id, ssr, onChange, small } = props, selectProps = __rest(props, ["className", "label", "assistText", "hideLabel", "disabled", "readOnly", "reqText", "invalid", "errorMessage", "required", "id", "ssr", "onChange", "small"]);
|
|
51
|
+
const { value, defaultValue, placeholder, options } = selectProps;
|
|
52
|
+
const _selectRef = (0, react_1.useRef)(null);
|
|
53
|
+
const selectRef = selectProps.selectRef || _selectRef;
|
|
54
|
+
const getInitialValue = () => { var _a; return (_a = value !== null && value !== void 0 ? value : defaultValue) !== null && _a !== void 0 ? _a : getValue(options[0]); };
|
|
55
|
+
const [isFilled, setIsFilled] = (0, react_1.useState)(() => !!getInitialValue());
|
|
56
|
+
const [isEmpty, setIsEmpty] = (0, react_1.useState)(() => !getInitialValue() && !placeholder);
|
|
57
|
+
(0, react_1.useEffect)(() => {
|
|
58
|
+
var _a;
|
|
59
|
+
const selectElm = selectRef.current;
|
|
60
|
+
if (selectElm) {
|
|
61
|
+
setIsFilled(!!selectElm.value);
|
|
62
|
+
setIsEmpty(!((_a = selectElm.selectedOptions[0]) === null || _a === void 0 ? void 0 : _a.text));
|
|
63
|
+
}
|
|
64
|
+
}, [(_a = selectRef.current) === null || _a === void 0 ? void 0 : _a.value]);
|
|
65
|
+
const _onChange = (e) => {
|
|
66
|
+
var _a;
|
|
67
|
+
const selectElm = e.currentTarget;
|
|
68
|
+
setIsFilled(!!selectElm.value);
|
|
69
|
+
setIsEmpty(!((_a = selectElm.selectedOptions[0]) === null || _a === void 0 ? void 0 : _a.text));
|
|
70
|
+
onChange && onChange(e);
|
|
71
|
+
};
|
|
72
|
+
return (<FormField_1.default className={(0, getBemClass_1.default)('Selectbox', null, className)} ssr={ssr} small={small} label={label} empty={isEmpty} filled={isFilled} assistText={assistText} hideLabel={hideLabel} disabled={disabled} readOnly={readOnly} invalid={invalid} errorMessage={errorMessage} required={required} reqText={reqText} id={id} renderInput={(className, inputProps, addFocusProps) => (<Selectbox_1.default bem={className.input} ssr={ssr} onChange={_onChange} {...inputProps} {...addFocusProps(selectProps)} selectRef={selectRef}/>)}/>);
|
|
73
|
+
};
|
|
74
|
+
exports.default = Selectbox;
|
package/ShareButtons.jsx
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
const react_1 = __importStar(require("react"));
|
|
27
|
+
const shareButtonsUtils_1 = require("@reykjavik/hanna-utils/shareButtonsUtils");
|
|
28
|
+
const Link_1 = require("./_abstract/Link");
|
|
29
|
+
const generateTypeList = (facebook, twitter, linkedin, email) => {
|
|
30
|
+
const listStr = ((facebook ? 'facebook,' : '') +
|
|
31
|
+
(twitter ? 'twitter,' : '') +
|
|
32
|
+
(linkedin ? 'linkedin,' : '') +
|
|
33
|
+
(email ? 'email,' : '')).slice(0, -1);
|
|
34
|
+
return (listStr !== 'facebook,twitter' && listStr) || undefined;
|
|
35
|
+
};
|
|
36
|
+
// FIXME: see other FIXME below for details
|
|
37
|
+
// TODO: Also figure out if/why the truthyness of document.location would be in doubt here
|
|
38
|
+
const docLoc = typeof document !== 'undefined' ? document.location : { href: undefined };
|
|
39
|
+
const ShareButtons__item = (props) => {
|
|
40
|
+
const { label, type, href } = props;
|
|
41
|
+
const buttonText = (0, shareButtonsUtils_1.getShareButtonLabel)(type, label);
|
|
42
|
+
const popup = type !== 'email';
|
|
43
|
+
return (<li className="ShareButtons__item">
|
|
44
|
+
<Link_1.Link className={'ShareButtons__link ShareButtons__link--' + type} href={href} title={buttonText} rel="noopener noreferrer" target={popup ? '_blank' : undefined} onClick={popup ? shareButtonsUtils_1.openInPopup : undefined}>
|
|
45
|
+
{buttonText}
|
|
46
|
+
</Link_1.Link>
|
|
47
|
+
</li>);
|
|
48
|
+
};
|
|
49
|
+
const ShareButtons = (props) => {
|
|
50
|
+
const { texts, ssr, facebook = true, twitter = true, linkedin, email, } = props;
|
|
51
|
+
const [docMeta, setDocMeta] = (0, react_1.useState)();
|
|
52
|
+
const href = docLoc.href; // assign to local variable to silence `react-hooks/exhaustive-deps`
|
|
53
|
+
(0, react_1.useEffect)(() => {
|
|
54
|
+
// FIXME: Drop dependency on _loc.href and set up proper
|
|
55
|
+
// location/route monitoring event handler, with unsubscribe on unmount
|
|
56
|
+
const { emailSubject } = texts || {};
|
|
57
|
+
setDocMeta((0, shareButtonsUtils_1.getDocMeta)({ emailSubject }));
|
|
58
|
+
}, [texts, href]);
|
|
59
|
+
if (!facebook && !twitter && !linkedin && !email) {
|
|
60
|
+
// no place to share
|
|
61
|
+
return null;
|
|
62
|
+
}
|
|
63
|
+
const txt = texts || (docMeta && shareButtonsUtils_1.i18n[docMeta.lang]) || {};
|
|
64
|
+
const { label, buttonLabel } = txt;
|
|
65
|
+
if (!docMeta || ssr === 'ssr-only') {
|
|
66
|
+
// Generate SSR markup for hanna-sprinkles to pick up on.
|
|
67
|
+
return (<div className="ShareButtons" data-button-types={generateTypeList(facebook, twitter, linkedin, email)} data-label={label} data-buttonlabel={buttonLabel} data-emailsubject={txt.emailSubject || undefined}/>);
|
|
68
|
+
}
|
|
69
|
+
const showTypes = {
|
|
70
|
+
facebook,
|
|
71
|
+
twitter,
|
|
72
|
+
linkedin,
|
|
73
|
+
email,
|
|
74
|
+
};
|
|
75
|
+
return (<div className="ShareButtons" aria-label={label} data-sprinkled="true">
|
|
76
|
+
{label && <strong className="ShareButtons__label">{label}</strong>}
|
|
77
|
+
<ul className="ShareButtons__list">
|
|
78
|
+
{shareButtonsUtils_1.shareButtonTypes.map((type) => showTypes[type] && (<ShareButtons__item key={type} type={type} label={buttonLabel || ''} href={docMeta.hrefs[type]}/>))}
|
|
79
|
+
</ul>
|
|
80
|
+
</div>);
|
|
81
|
+
};
|
|
82
|
+
exports.default = ShareButtons;
|
package/Sharpie.jsx
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const react_1 = __importDefault(require("react"));
|
|
7
|
+
const getBemClass_1 = __importDefault(require("@hugsmidjan/react/utils/getBemClass"));
|
|
8
|
+
const colors = {
|
|
9
|
+
green: 1,
|
|
10
|
+
red: 1,
|
|
11
|
+
};
|
|
12
|
+
const tags = {
|
|
13
|
+
span: 1,
|
|
14
|
+
strong: 1,
|
|
15
|
+
em: 1,
|
|
16
|
+
b: 1,
|
|
17
|
+
i: 1,
|
|
18
|
+
u: 1,
|
|
19
|
+
s: 1,
|
|
20
|
+
};
|
|
21
|
+
const Sharpie = (props) => {
|
|
22
|
+
const { color, tag, children } = props;
|
|
23
|
+
const colorModifier = colors[color] ? color : 'green';
|
|
24
|
+
const Tag = tag && tags[tag] ? tag : 'span';
|
|
25
|
+
return <Tag className={(0, getBemClass_1.default)('Sharpie', colorModifier)}>{children}</Tag>;
|
|
26
|
+
};
|
|
27
|
+
exports.default = Sharpie;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
26
|
+
var t = {};
|
|
27
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
28
|
+
t[p] = s[p];
|
|
29
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
30
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
31
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
32
|
+
t[p[i]] = s[p[i]];
|
|
33
|
+
}
|
|
34
|
+
return t;
|
|
35
|
+
};
|
|
36
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
37
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
38
|
+
};
|
|
39
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
40
|
+
exports.defaultSiteSearchACTexts = void 0;
|
|
41
|
+
const react_1 = __importStar(require("react"));
|
|
42
|
+
const react_autosuggest_1 = __importDefault(require("react-autosuggest"));
|
|
43
|
+
const i18n_1 = require("@reykjavik/hanna-utils/i18n");
|
|
44
|
+
const SiteSearchInput_1 = __importDefault(require("./SiteSearchInput"));
|
|
45
|
+
exports.defaultSiteSearchACTexts = {
|
|
46
|
+
is: {
|
|
47
|
+
lang: 'is',
|
|
48
|
+
label: 'Leit á vefnum',
|
|
49
|
+
inputLabel: 'Leitarorð',
|
|
50
|
+
placeholder: 'Sláðu inn leitarorð',
|
|
51
|
+
suggestionsLabel: 'Tillögur',
|
|
52
|
+
},
|
|
53
|
+
en: {
|
|
54
|
+
lang: 'en',
|
|
55
|
+
label: 'Site search',
|
|
56
|
+
inputLabel: 'Search terms',
|
|
57
|
+
placeholder: 'Enter search terms',
|
|
58
|
+
suggestionsLabel: 'Suggestions',
|
|
59
|
+
},
|
|
60
|
+
};
|
|
61
|
+
const SiteSearchAutocomplete = (props) => {
|
|
62
|
+
const { suggestions, setSuggestions, renderSuggestion, getSuggestionValue, onSuggestionsFetchRequested, onSuggestionSelected, onSuggestionHighlighted, onSubmit, onButtonClick = onSubmit, bem = 'SiteSearchAutocomplete', } = props;
|
|
63
|
+
const [value, setValue] = (0, react_1.useState)('');
|
|
64
|
+
const inputRef = (0, react_1.createRef)();
|
|
65
|
+
const txt = (0, i18n_1.getTexts)(props, exports.defaultSiteSearchACTexts);
|
|
66
|
+
return (<react_autosuggest_1.default theme={{
|
|
67
|
+
container: bem,
|
|
68
|
+
containerOpen: bem + '--open',
|
|
69
|
+
suggestionsContainer: bem + '__container',
|
|
70
|
+
suggestionsContainerOpen: bem + '__container--open',
|
|
71
|
+
suggestionsList: bem + '__list',
|
|
72
|
+
suggestion: bem + '__item',
|
|
73
|
+
suggestionHighlighted: bem + '__item--highlighted',
|
|
74
|
+
}} focusInputOnSuggestionClick={true} suggestions={suggestions} onSuggestionsClearRequested={() => setSuggestions([])} onSuggestionsFetchRequested={onSuggestionsFetchRequested} getSuggestionValue={getSuggestionValue} onSuggestionSelected={onSuggestionSelected} onSuggestionHighlighted={onSuggestionHighlighted} renderSuggestion={renderSuggestion} containerProps={{ 'aria-label': txt.label }} renderSuggestionsContainer={({ containerProps, children }) => (<div {...containerProps} aria-label={txt.suggestionsLabel}>
|
|
75
|
+
{children}
|
|
76
|
+
</div>)} inputProps={{
|
|
77
|
+
ref: inputRef,
|
|
78
|
+
value: value,
|
|
79
|
+
onChange: (_, { newValue }) => {
|
|
80
|
+
setValue(newValue);
|
|
81
|
+
},
|
|
82
|
+
}} renderInputComponent={(inputProps) => {
|
|
83
|
+
/* prettier-ignore */
|
|
84
|
+
const { className, type, disabled, readOnly, required, children } = inputProps, //eslint-disable-line @typescript-eslint/no-unused-vars
|
|
85
|
+
siteSearchProps = __rest(inputProps, ["className", "type", "disabled", "readOnly", "required", "children"]);
|
|
86
|
+
return (<SiteSearchInput_1.default {...siteSearchProps} label={props.label || txt.inputLabel} placeholder={txt.placeholder} onSubmit={onSubmit && (() => onSubmit(value))} onButtonClick={onButtonClick && (() => onButtonClick(value))}/>);
|
|
87
|
+
}}/>);
|
|
88
|
+
};
|
|
89
|
+
exports.default = SiteSearchAutocomplete;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
const react_1 = __importStar(require("react"));
|
|
30
|
+
const hooks_1 = require("@hugsmidjan/react/hooks");
|
|
31
|
+
const getBemClass_1 = __importDefault(require("@hugsmidjan/react/utils/getBemClass"));
|
|
32
|
+
const env_1 = require("./utils/env");
|
|
33
|
+
const SiteSearchCurtain = (props) => {
|
|
34
|
+
const [focused, setFocused] = (0, react_1.useState)(false);
|
|
35
|
+
let blurTimeout;
|
|
36
|
+
(0, hooks_1.useOnMount)(() => {
|
|
37
|
+
const closeSearch = (e) => {
|
|
38
|
+
if (e.key === 'Escape') {
|
|
39
|
+
setFocused(false);
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
document.addEventListener('keyup', closeSearch);
|
|
43
|
+
return () => {
|
|
44
|
+
document.removeEventListener('keyup', closeSearch);
|
|
45
|
+
};
|
|
46
|
+
});
|
|
47
|
+
const focusHandler = () => {
|
|
48
|
+
blurTimeout && clearTimeout(blurTimeout);
|
|
49
|
+
setFocused(true);
|
|
50
|
+
};
|
|
51
|
+
const blurHandler = (e) => {
|
|
52
|
+
if (!e.relatedTarget || !e.currentTarget.contains(e.relatedTarget)) {
|
|
53
|
+
blurTimeout = setTimeout(() => {
|
|
54
|
+
setFocused(false);
|
|
55
|
+
blurTimeout = undefined;
|
|
56
|
+
}, 100);
|
|
57
|
+
}
|
|
58
|
+
};
|
|
59
|
+
return (<div className={(0, getBemClass_1.default)('SiteSearchCurtain', [focused && 'focused'])} onFocus={focusHandler} onBlur={blurHandler}
|
|
60
|
+
// (Sneak this in as Preact does not bubble `FocusEvent`s)
|
|
61
|
+
{...(env_1.isPreact && { onfocusin: focusHandler, onfocusout: blurHandler })}>
|
|
62
|
+
{props.children}
|
|
63
|
+
</div>);
|
|
64
|
+
};
|
|
65
|
+
exports.default = SiteSearchCurtain;
|
package/SiteSearchInput.d.ts
CHANGED
|
@@ -20,5 +20,5 @@ export declare type SiteSearchInputProps = {
|
|
|
20
20
|
children?: undefined;
|
|
21
21
|
ssr?: SSRSupport;
|
|
22
22
|
} & WrappingProps & InputElmProps;
|
|
23
|
-
declare const SiteSearchInput: React.ForwardRefExoticComponent<Pick<SiteSearchInputProps, "
|
|
23
|
+
declare const SiteSearchInput: React.ForwardRefExoticComponent<Pick<SiteSearchInputProps, "title" | "id" | "ssr" | "form" | "label" | "slot" | "style" | "pattern" | "children" | "hidden" | "onClick" | "dir" | "is" | "key" | "list" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "name" | "value" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "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" | "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" | "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" | "size" | "step" | "src" | "alt" | "multiple" | "width" | "accept" | "autoComplete" | "capture" | "checked" | "crossOrigin" | "height" | "max" | "maxLength" | "min" | "minLength" | "onButtonClick" | "buttonText"> & React.RefAttributes<HTMLInputElement>>;
|
|
24
24
|
export default SiteSearchInput;
|