@hellobetterdigitalnz/selwynui 0.0.1-8 → 0.0.1-80
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/package.json +10 -1
- package/src/Components/DataDisplay/Accordion/Accordion.stories.tsx +9 -17
- package/src/Components/DataDisplay/Accordion/Accordion.tsx +29 -26
- package/src/Components/DataDisplay/Accordion/AccordionItem.tsx +2 -2
- package/src/Components/DataDisplay/Accordion/AccordionProps.tsx +2 -1
- package/src/Components/DataDisplay/Accordion/accordion-bg-design.tsx +5 -5
- package/src/Components/DataDisplay/Accordion/accordion.module.scss +94 -42
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderTool.stories.tsx +53 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderTool.tsx +23 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolMain/BrandBuilderToolMain.tsx +13 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolMain/BrandBuilderToolMainProps.tsx +7 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolProps.tsx +9 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolTemplate/BrandBuilderToolTemplateItem.tsx +15 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolTemplate/BrandBuilderToolTemplateItemProps.tsx +10 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolTemplate/BrandBuilderToolTemplateSelector.tsx +29 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolTemplate/BrandBuilderToolTemplateSelectorProps.tsx +8 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolUploader/BrandBuilderToolUploader.tsx +33 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolUploader/BrandBuilderToolUploaderProps.tsx +8 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolWrapper/BrandBuilderToolWrapper.tsx +17 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolWrapper/BrandBuilderToolWrapperProps.tsx +8 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandbuilderToolPreview/BrandBuilderToolPreview.tsx +25 -0
- package/src/Components/DataDisplay/BrandBuilderTool/BrandbuilderToolPreview/BrandBuilderToolPreviewProps.tsx +8 -0
- package/src/Components/DataDisplay/BrandBuilderTool/brandBuilder.module.scss +215 -0
- package/src/Components/DataDisplay/CallToActionBlock/CallToActionBlock.stories.tsx +92 -0
- package/src/Components/DataDisplay/CallToActionBlock/CallToActionBlock.tsx +80 -0
- package/src/Components/DataDisplay/CallToActionBlock/CallToActionBlockProps.tsx +18 -0
- package/src/Components/DataDisplay/CallToActionBlock/callToAction.module.scss +79 -0
- package/src/Components/DataDisplay/CallToActionBlock/callToAction.module.scss~ +78 -0
- package/src/Components/DataDisplay/CarouselBlock/CarouselBlock.stories.tsx +77 -0
- package/src/Components/DataDisplay/CarouselBlock/CarouselBlock.tsx +73 -0
- package/src/Components/DataDisplay/CarouselBlock/CarouselBlockProps.tsx +23 -0
- package/src/Components/DataDisplay/CarouselBlock/carouselBlock.module.scss +60 -0
- package/src/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlock.stories.tsx +128 -0
- package/src/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlock.tsx +257 -0
- package/src/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlockProps.tsx +44 -0
- package/src/Components/DataDisplay/ChatItenaryBlock/chatItenaryBlock.module.scss +777 -0
- package/src/Components/DataDisplay/ContactsBlock/ContactItem.tsx +47 -0
- package/src/Components/DataDisplay/ContactsBlock/ContactItemProps.tsx +10 -0
- package/src/Components/DataDisplay/ContactsBlock/ContactsBlock.stories.tsx +59 -0
- package/src/Components/DataDisplay/ContactsBlock/ContactsBlock.tsx +24 -0
- package/src/Components/DataDisplay/ContactsBlock/ContactsBlockProps.tsx +8 -0
- package/src/Components/DataDisplay/ContactsBlock/contactsBlock.module.scss +165 -0
- package/src/Components/DataDisplay/ContentBlock/ContentBlock.stories.tsx +107 -0
- package/src/Components/DataDisplay/ContentBlock/ContentBlock.tsx +36 -0
- package/src/Components/DataDisplay/ContentBlock/ContentBlockProps.tsx +11 -0
- package/src/Components/DataDisplay/ContentBlock/contentBlock.module.scss +76 -0
- package/src/Components/DataDisplay/DetailsCard/DetailsCard.tsx +8 -10
- package/src/Components/DataDisplay/DetailsCard/DetailsCardProps.tsx +0 -1
- package/src/Components/DataDisplay/DetailsCard/detailsCard.module.scss +3 -1
- package/src/Components/DataDisplay/ImageContent/ImageContent.stories.tsx +5 -11
- package/src/Components/DataDisplay/ImageContent/ImageContent.tsx +10 -9
- package/src/Components/DataDisplay/ImageContent/ImageContentProps.tsx +4 -0
- package/src/Components/DataDisplay/ImageContent/imageContent.module.scss +30 -14
- package/src/Components/DataDisplay/IntroBlock/IntroBlock.stories.tsx +1 -1
- package/src/Components/DataDisplay/IntroBlock/introBlock.module.scss +27 -3
- package/src/Components/DataDisplay/KPIBlock/KPIBlock.stories.tsx +3 -4
- package/src/Components/DataDisplay/KPIBlock/KPIBlock.tsx +14 -7
- package/src/Components/DataDisplay/KPIBlock/KPIBlockProps.tsx +6 -2
- package/src/Components/DataDisplay/KPIBlock/kpiBlock.module.scss +179 -16
- package/src/Components/DataDisplay/{Pathway/Pathway.stories.tsx → ListBlock/ListBlock.stories.tsx} +20 -18
- package/src/Components/DataDisplay/ListBlock/ListBlock.tsx +133 -0
- package/src/Components/DataDisplay/ListBlock/ListBlockProps.tsx +28 -0
- package/src/Components/DataDisplay/{Pathway/pathway.module.scss → ListBlock/listBlock.module.scss} +30 -6
- package/src/Components/DataDisplay/ListingDetailBlock/ListingDetailBlock.stories.tsx +93 -0
- package/src/Components/DataDisplay/ListingDetailBlock/ListingDetailBlock.tsx +74 -0
- package/src/Components/DataDisplay/ListingDetailBlock/ListingDetailBlockProps.tsx +23 -0
- package/src/Components/DataDisplay/ListingDetailBlock/listingDetailBlock.module.scss +265 -0
- package/src/Components/DataDisplay/Media/Media.stories.tsx +36 -0
- package/src/Components/DataDisplay/Media/Media.tsx +158 -0
- package/src/Components/DataDisplay/Media/MediaProps.tsx +8 -0
- package/src/Components/DataDisplay/Media/media.module.scss +16 -0
- package/src/Components/DataDisplay/Media/mediaVideo.scss +88 -0
- package/src/Components/DataDisplay/Modal/Modal.stories.tsx +89 -0
- package/src/Components/DataDisplay/Modal/Modal.tsx +16 -0
- package/src/Components/DataDisplay/Modal/ModalActions.tsx +14 -0
- package/src/Components/DataDisplay/Modal/ModalActionsLeft.tsx +13 -0
- package/src/Components/DataDisplay/Modal/ModalActionsLeftProps.tsx +8 -0
- package/src/Components/DataDisplay/Modal/ModalActionsProps.tsx +8 -0
- package/src/Components/DataDisplay/Modal/ModalActionsRight.tsx +14 -0
- package/src/Components/DataDisplay/Modal/ModalActionsRightProps.tsx +8 -0
- package/src/Components/DataDisplay/Modal/ModalBody.tsx +14 -0
- package/src/Components/DataDisplay/Modal/ModalBodyProps.tsx +8 -0
- package/src/Components/DataDisplay/Modal/ModalCurtain.tsx +6 -0
- package/src/Components/DataDisplay/Modal/ModalHeader.tsx +55 -0
- package/src/Components/DataDisplay/Modal/ModalHeaderProps.tsx +10 -0
- package/src/Components/DataDisplay/Modal/ModalProps.tsx +9 -0
- package/src/Components/DataDisplay/Modal/modal.module.scss +178 -0
- package/src/Components/DataDisplay/PathwayBlock/PathwayBlock.stories.tsx +27 -13
- package/src/Components/DataDisplay/PathwayBlock/PathwayBlock.tsx +8 -8
- package/src/Components/DataDisplay/PathwayBlock/PathwayBlockProps.tsx +10 -4
- package/src/Components/DataDisplay/PathwayBlock/pathwayBlock.module.scss +27 -23
- package/src/Components/DataDisplay/PromoBannerBlock/PromoBanner.stories.tsx +3 -4
- package/src/Components/DataDisplay/PromoBannerBlock/PromoBannerBlock.tsx +2 -6
- package/src/Components/DataDisplay/PromoBannerBlock/promoBanner.module.scss +12 -15
- package/src/Components/DataDisplay/TestimonyCard/TestimonyCard.stories.tsx +11 -5
- package/src/Components/DataDisplay/TestimonyCard/TestimonyCard.tsx +70 -54
- package/src/Components/DataDisplay/TestimonyCard/testimonyCard.module.scss +139 -70
- package/src/Components/DataDisplay/index.ts +87 -4
- package/src/Components/DataDisplay/slider.scss +43 -0
- package/src/Components/Form/Button/ButtonProps.tsx +1 -1
- package/src/Components/Form/Button/button.module.scss +2 -0
- package/src/Components/Form/Checkbox/Checkbox.stories.tsx +51 -0
- package/src/Components/Form/Checkbox/Checkbox.tsx +111 -0
- package/src/Components/Form/Checkbox/CheckboxProps.tsx +24 -0
- package/src/Components/Form/Checkbox/checkbox.module.scss +105 -0
- package/src/Components/Form/CheckboxSelect/CheckboxSelect.tsx +5 -0
- package/src/Components/Form/CheckboxSelect/CheckboxSelectItem.tsx +5 -0
- package/src/Components/Form/CheckboxSet/CheckboxSet.stories.tsx +100 -0
- package/src/Components/Form/CheckboxSet/CheckboxSet.tsx +14 -0
- package/src/Components/Form/CheckboxSet/CheckboxSetItem.tsx +109 -0
- package/src/Components/Form/CheckboxSet/CheckboxSetProps.tsx +9 -0
- package/src/Components/Form/CheckboxSet/checkboxSet.module.scss +19 -0
- package/src/Components/Form/CurrencyField/CurrencyField.stories.tsx +23 -0
- package/src/Components/Form/CurrencyField/CurrencyField.tsx +105 -0
- package/src/Components/Form/CurrencyField/CurrencyFieldProps.tsx +10 -0
- package/src/Components/Form/DateField/DateField.stories.tsx +22 -0
- package/src/Components/Form/DateField/DateField.tsx +61 -0
- package/src/Components/Form/DropdownBadge/DropdownBadge.stories.tsx +54 -0
- package/src/Components/Form/DropdownBadge/DropdownBadge.tsx +303 -0
- package/src/Components/Form/DropdownBadge/DropdownBadgeItem.tsx +54 -0
- package/src/Components/Form/DropdownBadge/DropdownBadgeItemProps.tsx +11 -0
- package/src/Components/Form/DropdownBadge/DropdownBadgeProps.tsx +34 -0
- package/src/Components/Form/DropdownBadge/DropdownBadgeSelector.tsx +17 -0
- package/src/Components/Form/DropdownBadge/DropdownBadgeSelectorProps.tsx +10 -0
- package/src/Components/Form/DropdownBadge/dropdownBadge.module.scss +195 -0
- package/src/Components/Form/DropdownField/CountryDropdownField/CountryDropdownField.stories.tsx +36 -0
- package/src/Components/Form/DropdownField/CountryDropdownField/CountryDropdownField.tsx +426 -0
- package/src/Components/Form/DropdownField/CountryDropdownField/CountryDropdownFieldProps.tsx +30 -0
- package/src/Components/Form/DropdownField/DropdownField.stories.tsx +55 -0
- package/src/Components/Form/DropdownField/DropdownField.tsx +245 -0
- package/src/Components/Form/DropdownField/DropdownFieldItem.tsx +33 -0
- package/src/Components/Form/DropdownField/DropdownFieldItemProps.tsx +10 -0
- package/src/Components/Form/DropdownField/DropdownFieldProps.tsx +39 -0
- package/src/Components/Form/DropdownField/DropdownFieldSelector.tsx +23 -0
- package/src/Components/Form/DropdownField/DropdownFieldSelectorProps.tsx +8 -0
- package/src/Components/Form/DropdownField/dropdown.module.scss +144 -0
- package/src/Components/Form/EmailField/EmailField.stories.ts +23 -0
- package/src/Components/Form/EmailField/EmailField.tsx +56 -0
- package/src/Components/Form/ErrorMessage/ErrorMessage.tsx +5 -0
- package/src/Components/Form/FormFieldHolder/FormFieldHolder.stories.tsx +31 -0
- package/src/Components/Form/FormFieldHolder/FormFieldHolder.tsx +57 -0
- package/src/Components/Form/FormFieldHolder/FormFieldHolderProps.tsx +16 -0
- package/src/Components/Form/FormFieldHolder/formHolder.module.scss +71 -0
- package/src/Components/Form/IconButton/IconButton.stories.tsx +45 -0
- package/src/Components/Form/IconButton/IconButton.tsx +65 -0
- package/src/Components/Form/IconButton/IconButtonProps.tsx +16 -0
- package/src/Components/Form/IconButton/iconButton.module.scss +157 -0
- package/src/Components/Form/InputProps.tsx +30 -0
- package/src/Components/Form/LandingPageForm/LandingPageForm.stories.tsx +110 -0
- package/src/Components/Form/LandingPageForm/LandingPageForm.tsx +24 -0
- package/src/Components/Form/LandingPageForm/LandingPageFormLeft.tsx +51 -0
- package/src/Components/Form/LandingPageForm/LandingPageFormLeftProps.tsx +13 -0
- package/src/Components/Form/LandingPageForm/LandingPageFormProps.tsx +9 -0
- package/src/Components/Form/LandingPageForm/LandingPageFormRight.tsx +49 -0
- package/src/Components/Form/LandingPageForm/LandingPageFormRightProps.tsx +14 -0
- package/src/Components/Form/LandingPageForm/landingPageForm.module.scss +190 -0
- package/src/Components/Form/LoadingInput/LoadingInput.tsx +12 -0
- package/src/Components/Form/LoadingInput/loadingInput.module.scss +15 -0
- package/src/Components/Form/MicroForm/MicroForm.stories.tsx +28 -0
- package/src/Components/Form/MicroForm/MicroForm.tsx +22 -0
- package/src/Components/Form/MicroForm/MicroFormProps.tsx +12 -0
- package/src/Components/Form/MicroForm/microForm.module.scss +64 -0
- package/src/Components/Form/MultiSelectField/MultiSelectField.stories.tsx +39 -0
- package/src/Components/Form/MultiSelectField/MultiSelectField.tsx +439 -0
- package/src/Components/Form/MultiSelectField/MultiSelectFieldItem.tsx +36 -0
- package/src/Components/Form/MultiSelectField/MultiSelectFieldItemProps.tsx +12 -0
- package/src/Components/Form/MultiSelectField/MultiSelectFieldProps.tsx +36 -0
- package/src/Components/Form/MultiSelectField/MultiSelectFieldTag.tsx +24 -0
- package/src/Components/Form/MultiSelectField/MultiSelectFieldTagProps.tsx +6 -0
- package/src/Components/Form/MultiSelectField/multiSelectField.module.scss +205 -0
- package/src/Components/Form/NumberField/NumberField.stories.ts +23 -0
- package/src/Components/Form/NumberField/NumberField.tsx +137 -0
- package/src/Components/Form/NumberField/NumberFieldProps.tsx +10 -0
- package/src/Components/Form/PasswordField/PasswordField.stories.tsx +22 -0
- package/src/Components/Form/PasswordField/PasswordField.tsx +73 -0
- package/src/Components/Form/PhoneField/PhoneField.stories.ts +21 -0
- package/src/Components/Form/PhoneField/PhoneField.tsx +55 -0
- package/src/Components/Form/RadioButtons/RadioButton.tsx +100 -0
- package/src/Components/Form/RadioButtons/RadioButtonProps.tsx +25 -0
- package/src/Components/Form/RadioButtons/RadioButtons.stories.tsx +92 -0
- package/src/Components/Form/RadioButtons/RadioButtons.tsx +18 -0
- package/src/Components/Form/RadioButtons/RadioButtonsProps.tsx +10 -0
- package/src/Components/Form/RadioButtons/radioButton.stories.scss +3 -0
- package/src/Components/Form/RadioButtons/radiobutton.module.scss +188 -0
- package/src/Components/Form/RichTextEditor/RichTextEditor.stories.ts +41 -0
- package/src/Components/Form/RichTextEditor/RichTextEditor.tsx +115 -0
- package/src/Components/Form/RichTextEditor/RichTextEditorProps.tsx +25 -0
- package/src/Components/Form/RichTextEditor/richTextEditor.module.scss +10 -0
- package/src/Components/Form/SimpleForm/SimpleForm.stories.tsx +55 -0
- package/src/Components/Form/SimpleForm/SimpleForm.tsx +63 -0
- package/src/Components/Form/SimpleForm/SimpleFormProps.tsx +13 -0
- package/src/Components/Form/SimpleForm/simple-form-bg-design.tsx +21 -0
- package/src/Components/Form/SimpleForm/simpleForm.module.scss +72 -0
- package/src/Components/Form/TextField/TextField.stories.ts +22 -0
- package/src/Components/Form/TextField/TextField.tsx +62 -0
- package/src/Components/Form/TextField/TextFieldProps.tsx +8 -0
- package/src/Components/Form/Textarea/Textarea.stories.ts +31 -0
- package/src/Components/Form/Textarea/Textarea.tsx +74 -0
- package/src/Components/Form/Textarea/TextareaProps.tsx +28 -0
- package/src/Components/Form/Textarea/textarea.module.scss +48 -0
- package/src/Components/Form/TimeField/TimeField.stories.tsx +22 -0
- package/src/Components/Form/TimeField/TimeField.tsx +58 -0
- package/src/Components/Form/ToggleSwitch/ToggleSwitch.stories.tsx +50 -0
- package/src/Components/Form/ToggleSwitch/ToggleSwitch.tsx +87 -0
- package/src/Components/Form/ToggleSwitch/ToggleSwitchProps.tsx +22 -0
- package/src/Components/Form/ToggleSwitch/toggleSwitch.module.scss +84 -0
- package/src/Components/Form/TypableDropdownField/TypableDropdownField.stories.tsx +55 -0
- package/src/Components/Form/TypableDropdownField/TypableDropdownField.tsx +313 -0
- package/src/Components/Form/TypableDropdownField/TypableDropdownFieldItem.tsx +27 -0
- package/src/Components/Form/TypableDropdownField/TypableDropdownFieldItemProps.tsx +9 -0
- package/src/Components/Form/TypableDropdownField/TypableDropdownFieldProps.tsx +38 -0
- package/src/Components/Form/TypableDropdownField/TypableDropdownFieldSelector.tsx +16 -0
- package/src/Components/Form/TypableDropdownField/TypableDropdownFieldSelectorProps.tsx +8 -0
- package/src/Components/Form/TypableDropdownField/typableDropdown.module.scss +185 -0
- package/src/Components/Form/UnitInput/UnitField.stories.ts +22 -0
- package/src/Components/Form/UnitInput/UnitField.tsx +129 -0
- package/src/Components/Form/UnitInput/UnitFieldProps.tsx +9 -0
- package/src/Components/Form/index.ts +42 -1
- package/src/Components/Form/inputs.module.scss +172 -0
- package/src/Components/Icons/Communication/PaperPlaneTilt/PaperPlaneTilt.tsx +37 -0
- package/src/Components/Icons/OfficeAndEditing/Paperclip/Paperclip.tsx +37 -0
- package/src/Components/Icons/SystemAndDevice/CheckCircle/CheckCircle.tsx +35 -0
- package/src/Components/Icons/index.ts +5 -1
- package/src/Components/Layout/Footer/Footer.stories.tsx +5 -7
- package/src/Components/Layout/Footer/Footer.tsx +1 -2
- package/src/Components/Layout/Footer/FooterBottom.tsx +83 -10
- package/src/Components/Layout/Footer/FooterBottomLeft.tsx +36 -1
- package/src/Components/Layout/Footer/FooterBottomLeftProps.tsx +4 -0
- package/src/Components/Layout/Footer/FooterBottomProps.tsx +13 -0
- package/src/Components/Layout/Footer/FooterMiddle.tsx +0 -4
- package/src/Components/Layout/Footer/FooterProps.tsx +1 -1
- package/src/Components/Layout/Footer/FooterTop.tsx +2 -2
- package/src/Components/Layout/Footer/footer.module.scss +211 -123
- package/src/Components/Layout/Header/Header.stories.tsx +8 -6
- package/src/Components/Layout/Header/Header.tsx +3 -3
- package/src/Components/Layout/Header/HeaderProps.tsx +1 -0
- package/src/Components/Layout/Header/MegaMenu/MegaMenu.tsx +156 -83
- package/src/Components/Layout/Header/MegaMenu/MegaMenuProps.tsx +22 -9
- package/src/Components/Layout/Header/MegaMenu/megaMenu.module.scss +4 -2
- package/src/Components/Layout/Header/MobileNavigation/MobileNavigation.tsx +4 -3
- package/src/Components/Layout/Header/MobileNavigation/MobileNavigationItem.tsx +7 -3
- package/src/Components/Layout/Header/MobileNavigation/MobileNavigationItemProps.tsx +3 -0
- package/src/Components/Layout/Header/MobileNavigation/MobileNavigationProps.tsx +1 -0
- package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigation.tsx +10 -5
- package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationItem.tsx +8 -9
- package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationItemProps.tsx +2 -2
- package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationProps.tsx +1 -0
- package/src/Components/Layout/Header/MobileNavigation/mobileNavigation.module.scss +14 -1
- package/src/Components/Layout/Header/header.module.scss +17 -19
- package/src/Components/Layout/Header/header.scss +8 -0
- package/src/Components/Layout/HeroBanner/HeroBanner.tsx +6 -6
- package/src/Components/Layout/HeroBanner/heroBanner.module.scss +42 -6
- package/src/Components/Layout/index.ts +11 -2
- package/src/Components/SelwynUIProvider/SelwynUIContext.tsx +16 -0
- package/src/Components/SelwynUIProvider/SelwynUIProvider.tsx +46 -0
- package/src/Components/SelwynUIProvider/index.ts +2 -0
- package/src/Components/Shared/Container/Container.tsx +19 -9
- package/src/Components/Shared/Container/ContainerProps.tsx +7 -2
- package/src/Components/Shared/Container/container.module.scss +59 -7
- package/src/Components/Shared/ElementHolder/ElementHolderProps.tsx +1 -1
- package/src/Components/Shared/ElementHolder/elementHolder.module.scss +10 -5
- package/src/Components/Shared/PillarIcon/PillarIcon.tsx +14 -5
- package/src/Components/Shared/PillarLogo/PillarLogo.tsx +2 -2
- package/src/Components/index.ts +1 -0
- package/dist/App.d.ts +0 -2
- package/dist/Components/DataDisplay/DetailsCard/DetailsCard.d.ts +0 -3
- package/dist/Components/DataDisplay/DetailsCard/DetailsCardProps.d.ts +0 -10
- package/dist/Components/DataDisplay/ImageContent/ImageContent.d.ts +0 -3
- package/dist/Components/DataDisplay/ImageContent/ImageContentMaskingImages.d.ts +0 -2
- package/dist/Components/DataDisplay/ImageContent/ImageContentProps.d.ts +0 -27
- package/dist/Components/DataDisplay/IntroBlock/IntroBlock.d.ts +0 -3
- package/dist/Components/DataDisplay/IntroBlock/IntroBlockProps.d.ts +0 -8
- package/dist/Components/DataDisplay/KPIBlock/KPIBlock.d.ts +0 -3
- package/dist/Components/DataDisplay/KPIBlock/KPIBlockProps.d.ts +0 -11
- package/dist/Components/DataDisplay/Pathway/Pathway.d.ts +0 -3
- package/dist/Components/DataDisplay/Pathway/PathwayProps.d.ts +0 -15
- package/dist/Components/DataDisplay/PromoBannerBlock/PromoBannerBlock.d.ts +0 -3
- package/dist/Components/DataDisplay/PromoBannerBlock/PromoBannerBlockProps.d.ts +0 -14
- package/dist/Components/DataDisplay/PromoBannerBlock/promo-banner-bg-design.d.ts +0 -2
- package/dist/Components/DataDisplay/index.d.ts +0 -10
- package/dist/Components/Form/Button/Button.d.ts +0 -3
- package/dist/Components/Form/Button/ButtonProps.d.ts +0 -14
- package/dist/Components/Form/index.d.ts +0 -2
- package/dist/Components/Icons/Arrows/ArrowLeft/ArrowLeft.d.ts +0 -3
- package/dist/Components/Icons/Arrows/ArrowRight/ArrowRight.d.ts +0 -3
- package/dist/Components/Icons/Arrows/ArrowSquareOut/ArrowSquareOut.d.ts +0 -3
- package/dist/Components/Icons/Arrows/ArrowsDownUp/ArrowsDownUp.d.ts +0 -3
- package/dist/Components/Icons/Arrows/ArrowsOutCardinal/ArrowsOutCardinal.d.ts +0 -3
- package/dist/Components/Icons/Arrows/CaretCircleRight/CaretCircleRight.d.ts +0 -3
- package/dist/Components/Icons/Arrows/CaretDown/CaretDown.d.ts +0 -3
- package/dist/Components/Icons/Arrows/CaretLeft/CaretLeft.d.ts +0 -3
- package/dist/Components/Icons/Arrows/CaretRight/CaretRight.d.ts +0 -3
- package/dist/Components/Icons/Arrows/CaretUp/CaretUp.d.ts +0 -3
- package/dist/Components/Icons/Arrows/CaretUpDown/CaretUpDown.d.ts +0 -3
- package/dist/Components/Icons/Brands/FacebookLogo/FacebookLogo.d.ts +0 -3
- package/dist/Components/Icons/Brands/InstagramLogo/InstagramLogo.d.ts +0 -3
- package/dist/Components/Icons/Brands/LinkedinLogo/LinkedinLogo.d.ts +0 -3
- package/dist/Components/Icons/Brands/WindowsLogo/WindowsLogo.d.ts +0 -3
- package/dist/Components/Icons/Commerce/Backpack/Backpack.d.ts +0 -3
- package/dist/Components/Icons/Commerce/BowlSteam/BowlSteam.d.ts +0 -3
- package/dist/Components/Icons/Commerce/Bread/Bread.d.ts +0 -3
- package/dist/Components/Icons/Commerce/Cheers/Cheers.d.ts +0 -3
- package/dist/Components/Icons/Commerce/ChefHat/ChefHat.d.ts +0 -3
- package/dist/Components/Icons/Commerce/Coffee/Coffee.d.ts +0 -3
- package/dist/Components/Icons/Commerce/CreditCard/CreditCard.d.ts +0 -3
- package/dist/Components/Icons/Commerce/CurrencyDollarSimple/CurrencyDollarSimple.d.ts +0 -3
- package/dist/Components/Icons/Commerce/Grains/Grains.d.ts +0 -3
- package/dist/Components/Icons/Commerce/Scale/Scale.d.ts +0 -3
- package/dist/Components/Icons/Commerce/StoreFront/StoreFront.d.ts +0 -3
- package/dist/Components/Icons/Communication/AddressBook/AddressBook.d.ts +0 -3
- package/dist/Components/Icons/Communication/AddressBook/AddressBook.stories.d.ts +0 -21
- package/dist/Components/Icons/Communication/AsterickSimple/AsteriskSimple.d.ts +0 -3
- package/dist/Components/Icons/Communication/AsterickSimple/AsteriskSimple.stories.d.ts +0 -21
- package/dist/Components/Icons/Communication/Asterisk/Asterisk.d.ts +0 -3
- package/dist/Components/Icons/Communication/Asterisk/Asterisk.stories.d.ts +0 -21
- package/dist/Components/Icons/Communication/At/At.d.ts +0 -3
- package/dist/Components/Icons/Communication/At/At.stories.d.ts +0 -21
- package/dist/Components/Icons/Communication/Broadcast/Broadcast.d.ts +0 -3
- package/dist/Components/Icons/Communication/Broadcast/Broadcast.stories.d.ts +0 -21
- package/dist/Components/Icons/Communication/Chat/Chat.d.ts +0 -3
- package/dist/Components/Icons/Communication/Chat/Chat.stories.d.ts +0 -21
- package/dist/Components/Icons/Communication/ChatCircleText/ChatCircleText.d.ts +0 -3
- package/dist/Components/Icons/Communication/EnvelopeSimple/EnvelopeSimple.d.ts +0 -3
- package/dist/Components/Icons/Communication/Export/Export.d.ts +0 -3
- package/dist/Components/Icons/Communication/Phone/Phone.d.ts +0 -3
- package/dist/Components/Icons/Communication/ThumbsUp/ThumbsUp.d.ts +0 -3
- package/dist/Components/Icons/Communication/Translate/Translate.d.ts +0 -3
- package/dist/Components/Icons/Design/DropHalfBottom/DropHalfBottom.d.ts +0 -3
- package/dist/Components/Icons/Design/Eye/Eye.d.ts +0 -3
- package/dist/Components/Icons/Design/EyeSlash/EyeSlash.d.ts +0 -3
- package/dist/Components/Icons/Design/GearFine/GearFine.d.ts +0 -3
- package/dist/Components/Icons/Design/PencilLine/PencilLine.d.ts +0 -3
- package/dist/Components/Icons/Design/PencilSimple/PencilSimple.d.ts +0 -3
- package/dist/Components/Icons/Design/Ruler/Ruler.d.ts +0 -3
- package/dist/Components/Icons/Design/SquaresFour/SquaresFour.d.ts +0 -3
- package/dist/Components/Icons/Education/BookOpenText/BookOpenText.d.ts +0 -3
- package/dist/Components/Icons/Education/BookmarkSimple/BookmarkSimple.d.ts +0 -3
- package/dist/Components/Icons/Education/Certificate/Certificate.d.ts +0 -3
- package/dist/Components/Icons/Education/GraduationCap/GraduationCap.d.ts +0 -3
- package/dist/Components/Icons/Games/Cricket/Cricket.d.ts +0 -3
- package/dist/Components/Icons/Games/Football/Football.d.ts +0 -3
- package/dist/Components/Icons/Games/Golf/Golf.d.ts +0 -3
- package/dist/Components/Icons/HealthAndWellness/Barbell/Barbell.d.ts +0 -3
- package/dist/Components/Icons/IconProps.d.ts +0 -4
- package/dist/Components/Icons/MapAndTravel/Barn/Barn.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/Bicycle/Bicycle.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/Bus/Bus.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/Car/Car.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/ChargingStation/ChargingStation.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/Farm/Farm.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/Globe/Globe.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/Goggles/Goggles.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/House/House.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/HouseSimple/HouseSimple.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/MapPin/MapPin.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/MapTriFold/MapTriFold.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/Path/Path.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/RoadHorizon/RoadHorizon.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/SteeringWheel/SteeringWheel.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/SwimmingPool/SwimmingPool.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/Tram/Tram.d.ts +0 -3
- package/dist/Components/Icons/MapAndTravel/Van/Van.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/Calculator/Calculator.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/ChartBar/ChartBar.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/ChartBarHorizontal/ChartBarHorizontal.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/ChartLine/ChartLine.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/ChartLineUp/ChartLineUp.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/ChartPie/ChartPie.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/Minus/Minus.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/MinusCircle/MinusCircle.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/NumberSquareThree/NumberSquareThree.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/Plus/Plus.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/PlusCircle/PlusCircle.d.ts +0 -3
- package/dist/Components/Icons/MathsAndFinance/XIcon/XIcon.d.ts +0 -3
- package/dist/Components/Icons/Media/Camera/Camera.d.ts +0 -3
- package/dist/Components/Icons/Media/DiscoBall/DiscoBall.d.ts +0 -3
- package/dist/Components/Icons/Media/FilmStrip/FilmStrip.d.ts +0 -3
- package/dist/Components/Icons/Media/Microphone/Microphone.d.ts +0 -3
- package/dist/Components/Icons/Media/MusicNotes/MusicNotes.d.ts +0 -3
- package/dist/Components/Icons/Media/PlayCircle/PlayCircle.d.ts +0 -3
- package/dist/Components/Icons/Media/SlidersHorizontal/SlidersHorizontal.d.ts +0 -3
- package/dist/Components/Icons/Media/StopCircle/StopCircle.d.ts +0 -3
- package/dist/Components/Icons/Media/VideoCamera/VideoCamera.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/BuildinfOffice/BuildingOffice.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/Copy/Copy.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/FileText/FileText.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/Files/Files.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/FloppyDisk/FloppyDisk.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/Folder/Folder.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/FolderSimplePlus/FolderSimplePlus.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/Folders/Folders.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/List/List.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/ListBullets/ListBullets.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/ListDashes/ListDashes.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/Printer/Printer.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/TextAa/TextAa.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/TextColumns/TextColumns.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/Trash/Trash.d.ts +0 -3
- package/dist/Components/Icons/OfficeAndEditing/TrashSimple/TrashSimple.d.ts +0 -3
- package/dist/Components/Icons/People/Person/Person.d.ts +0 -3
- package/dist/Components/Icons/People/PersonArmsSpread/PersonArmsSpread.d.ts +0 -3
- package/dist/Components/Icons/People/PersonSimpleBike/PersonSimpleBike.d.ts +0 -3
- package/dist/Components/Icons/People/PersonSimpleSki/PersonSimpleSki.d.ts +0 -3
- package/dist/Components/Icons/People/PersonSimpleWalk/PersonSimpleWalk.d.ts +0 -3
- package/dist/Components/Icons/People/User/User.d.ts +0 -3
- package/dist/Components/Icons/People/UserCircle/UserCircle.d.ts +0 -3
- package/dist/Components/Icons/People/UserSwitch/UserSwitch.d.ts +0 -3
- package/dist/Components/Icons/People/Users/Users.d.ts +0 -3
- package/dist/Components/Icons/SecurityAndWarnings/Info/Info.d.ts +0 -3
- package/dist/Components/Icons/SecurityAndWarnings/Key/Key.d.ts +0 -3
- package/dist/Components/Icons/SecurityAndWarnings/LockKeyOpen/LockKeyOpen.d.ts +0 -3
- package/dist/Components/Icons/SecurityAndWarnings/LockSimple/LockSimple.d.ts +0 -3
- package/dist/Components/Icons/SecurityAndWarnings/Question/Question.d.ts +0 -3
- package/dist/Components/Icons/SecurityAndWarnings/ShieldCheck/ShieldCheck.d.ts +0 -3
- package/dist/Components/Icons/SecurityAndWarnings/WarningCircle/WarningCircle.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/Bell/Bell.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/Check/Check.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/CheckSquare/CheckSquare.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/CloudCheck/CloudCheck.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/Desktop/Desktop.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/DeviceMobile/DeviceMobile.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/DotSixVertical/DotSixVertical.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/DotsSix/DotsSix.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/DotsThree/DotsThree.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/DotsThreeVertical/DotsThreeVertical.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/DownloadSimple/DownloadSimple.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/Gear/Gear.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/Link/Link.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/MagnifyingGlass/MagnifyingGlass.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/RadioButtonIcon/RadioButtonIcon.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/SignIn/SignIn.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/SignOut/SignOut.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/ToggleLeft/ToggleLeft.d.ts +0 -3
- package/dist/Components/Icons/SystemAndDevice/ToggleRight/ToggleRight.d.ts +0 -3
- package/dist/Components/Icons/Time/Calendar/Calendar.d.ts +0 -3
- package/dist/Components/Icons/Time/CalendarBank/CalendarBank.d.ts +0 -3
- package/dist/Components/Icons/Time/CalendarCheck/CalendarCheck.d.ts +0 -3
- package/dist/Components/Icons/Time/CalendarDots/CalendarDots.d.ts +0 -3
- package/dist/Components/Icons/Time/Clock/Clock.d.ts +0 -3
- package/dist/Components/Icons/Time/ClockCounterClockwise/ClockCounterClockwise.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Bird/Bird.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Campfire/Campfire.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/CloudSun/CloudSun.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Cow/Cow.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Dog/Dog.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/FishSimple/FishSimple.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Flower/Flower.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Moon/Moon.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Mountains/Mountains.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Plant/Plant.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Snowflake/Snowflake.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Sparkle/Sparkle.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Sun/Sun.d.ts +0 -3
- package/dist/Components/Icons/WeatherAndNature/Tree/Tree.d.ts +0 -3
- package/dist/Components/Icons/index.d.ts +0 -123
- package/dist/Components/Layout/Footer/Footer.d.ts +0 -3
- package/dist/Components/Layout/Footer/FooterBottom.d.ts +0 -3
- package/dist/Components/Layout/Footer/FooterBottomLeft.d.ts +0 -3
- package/dist/Components/Layout/Footer/FooterBottomLeftProps.d.ts +0 -11
- package/dist/Components/Layout/Footer/FooterBottomProps.d.ts +0 -5
- package/dist/Components/Layout/Footer/FooterBottomRight.d.ts +0 -3
- package/dist/Components/Layout/Footer/FooterBottomRightProps.d.ts +0 -6
- package/dist/Components/Layout/Footer/FooterItem.d.ts +0 -3
- package/dist/Components/Layout/Footer/FooterItemProps.d.ts +0 -6
- package/dist/Components/Layout/Footer/FooterMiddle.d.ts +0 -3
- package/dist/Components/Layout/Footer/FooterMiddleProps.d.ts +0 -6
- package/dist/Components/Layout/Footer/FooterProps.d.ts +0 -9
- package/dist/Components/Layout/Footer/FooterTop.d.ts +0 -3
- package/dist/Components/Layout/Footer/FooterTopProps.d.ts +0 -7
- package/dist/Components/Layout/Footer/footer-bg-design.d.ts +0 -2
- package/dist/Components/Layout/Header/Header.d.ts +0 -3
- package/dist/Components/Layout/Header/HeaderProps.d.ts +0 -7
- package/dist/Components/Layout/Header/HeaderRight.d.ts +0 -3
- package/dist/Components/Layout/Header/HeaderRightItem.d.ts +0 -3
- package/dist/Components/Layout/Header/HeaderRightItemProps.d.ts +0 -11
- package/dist/Components/Layout/Header/HeaderRightProps.d.ts +0 -5
- package/dist/Components/Layout/Header/MagnifyingGlass/MagnifyingGlass.d.ts +0 -2
- package/dist/Components/Layout/Header/MegaMenu/MegaMenu.d.ts +0 -2
- package/dist/Components/Layout/Header/MegaMenu/MegaMenuProps.d.ts +0 -4
- package/dist/Components/Layout/HeroBanner/HeroBanner.d.ts +0 -3
- package/dist/Components/Layout/HeroBanner/HeroBannerProps.d.ts +0 -9
- package/dist/Components/Layout/HeroBanner/LargeHeroIcon.d.ts +0 -2
- package/dist/Components/Layout/index.d.ts +0 -22
- package/dist/Components/Shared/Container/Container.d.ts +0 -3
- package/dist/Components/Shared/Container/ContainerProps.d.ts +0 -6
- package/dist/Components/Shared/ElementHolder/ElementHolder.d.ts +0 -3
- package/dist/Components/Shared/ElementHolder/ElementHolderProps.d.ts +0 -15
- package/dist/Components/Shared/index.d.ts +0 -4
- package/dist/img/card-one.png +0 -0
- package/dist/img/card-three.png +0 -0
- package/dist/img/card-two.png +0 -0
- package/dist/img/footer-bg-design.svg +0 -14
- package/dist/img/footer-logo.svg +0 -9
- package/dist/img/promo-banner-image.svg +0 -9
- package/dist/img/visit-brand-piller.svg +0 -6
- package/dist/img/waikirikiri-full-logo.svg +0 -23
- package/dist/index.cjs.js +0 -14
- package/dist/index.cjs.js.map +0 -1
- package/dist/index.d.ts +0 -5
- package/dist/index.es.d.ts +0 -2
- package/dist/index.es.js +0 -6787
- package/dist/index.es.js.map +0 -1
- package/dist/main.d.ts +0 -0
- package/dist/selwynui.css +0 -1
- package/dist/tsconfig.app.tsbuildinfo +0 -1
- package/dist/vite.svg +0 -1
- package/src/Components/DataDisplay/Pathway/Pathway.tsx +0 -94
- package/src/Components/DataDisplay/Pathway/PathwayProps.tsx +0 -17
|
@@ -9,6 +9,8 @@ import {List} from "../../Icons";
|
|
|
9
9
|
import "./header.scss"
|
|
10
10
|
import MobileNavigation from "./MobileNavigation/MobileNavigation";
|
|
11
11
|
import MobileNavigationItem from "./MobileNavigation/MobileNavigationItem";
|
|
12
|
+
import MobileSubNavigation from "./MobileNavigation/MobileSubNavigation/MobileSubNavigation";
|
|
13
|
+
import MobileSubNavigationItem from "./MobileNavigation/MobileSubNavigation/MobileSubNavigationItem";
|
|
12
14
|
|
|
13
15
|
|
|
14
16
|
const meta: Meta = {
|
|
@@ -61,13 +63,13 @@ const HeaderTemplate: Story = {
|
|
|
61
63
|
<HeaderRightItem extraClass={'desktop-item'}>
|
|
62
64
|
<MagnifyingGlass/>
|
|
63
65
|
</HeaderRightItem>
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
66
|
+
{/*<HeaderRightItem extraClass={'mobile-item'}>*/}
|
|
67
|
+
{/* <List/>*/}
|
|
68
|
+
{/*</HeaderRightItem>*/}
|
|
67
69
|
</HeaderRight>
|
|
68
|
-
<
|
|
70
|
+
<MobileSubNavigation>
|
|
69
71
|
<li>
|
|
70
|
-
<
|
|
72
|
+
<MobileSubNavigationItem label={'Attractions'}/>
|
|
71
73
|
</li>
|
|
72
74
|
<li>
|
|
73
75
|
<MobileNavigationItem label={'Eateries'}/>
|
|
@@ -84,7 +86,7 @@ const HeaderTemplate: Story = {
|
|
|
84
86
|
<li>
|
|
85
87
|
<MobileNavigationItem label={'Venues'}/>
|
|
86
88
|
</li>
|
|
87
|
-
</
|
|
89
|
+
</MobileSubNavigation>
|
|
88
90
|
</Header>
|
|
89
91
|
},
|
|
90
92
|
};
|
|
@@ -3,10 +3,10 @@ import HeaderProps from "./HeaderProps.tsx";
|
|
|
3
3
|
import Container from "../../Shared/Container/Container.tsx";
|
|
4
4
|
const Header = (props : HeaderProps) => {
|
|
5
5
|
|
|
6
|
-
const { children, logoSmall, logo } = props
|
|
6
|
+
const { children, logoSmall, logo, active } = props
|
|
7
7
|
|
|
8
|
-
return <header className={styles.header}>
|
|
9
|
-
<Container>
|
|
8
|
+
return <header className={`${styles.header} ${active ? styles.active : ''}`}>
|
|
9
|
+
<Container border={false}>
|
|
10
10
|
<div className={styles.headerWrapper}>
|
|
11
11
|
<div className={styles.headerLogo}>
|
|
12
12
|
<div className={`${styles.logo} HeaderLogo`}>
|
|
@@ -1,98 +1,171 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { useState } from "react";
|
|
2
|
+
import MegaMenuProps, { MenuItem } from "./MegaMenuProps.tsx";
|
|
2
3
|
import PillarLogo from "../../../Shared/PillarLogo/PillarLogo.tsx";
|
|
3
4
|
import Button from "../../../Form/Button/Button.tsx";
|
|
4
5
|
import ArrowRight from "../../../Icons/Arrows/ArrowRight/ArrowRight.tsx";
|
|
5
|
-
import styles from "./megaMenu.module.scss"
|
|
6
|
+
import styles from "./megaMenu.module.scss";
|
|
6
7
|
import Container from "../../../Shared/Container/Container.tsx";
|
|
7
8
|
|
|
8
|
-
const MegaMenu = (props
|
|
9
|
-
|
|
9
|
+
const MegaMenu = (props: MegaMenuProps) => {
|
|
10
10
|
const {
|
|
11
|
-
pillar,
|
|
12
|
-
menu,
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
pillar = "main",
|
|
12
|
+
menu = [],
|
|
13
|
+
defaultImg,
|
|
14
|
+
defaultBoldTitle,
|
|
15
|
+
defaultDescription,
|
|
16
|
+
defaultTitle,
|
|
17
|
+
defaultAction,
|
|
18
|
+
} = props;
|
|
18
19
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
</li>
|
|
46
|
-
<li>
|
|
47
|
-
<a href={''}>
|
|
48
|
-
Link
|
|
49
|
-
<ArrowRight type={'light'}/>
|
|
50
|
-
</a>
|
|
51
|
-
</li>
|
|
52
|
-
</ul>
|
|
53
|
-
</div>
|
|
54
|
-
<div className={styles.right}>
|
|
55
|
-
<div className={styles.preview}>
|
|
56
|
-
<div className={styles.previewWrapper}>
|
|
57
|
-
<div className={styles.previewImg}>
|
|
58
|
-
<img src={'https://images.pexels.com/photos/709143/pexels-photo-709143.jpeg'}/>
|
|
59
|
-
</div>
|
|
60
|
-
<div className={styles.content}>
|
|
61
|
-
<h5>
|
|
62
|
-
Spring gardens
|
|
63
|
-
<br/>
|
|
64
|
-
<span>in Selwyn</span>
|
|
65
|
-
</h5>
|
|
66
|
-
<p>
|
|
67
|
-
Visit Selwyn is for those who like to take the back roads, breathe mountain air, and find their own pace. Stay a little longer, explore deeper, and refuel with great kai and local stories along the way.
|
|
68
|
-
</p>
|
|
20
|
+
// ACTIVE ITEM ON HOVER
|
|
21
|
+
const [activeItem, setActiveItem] = useState<MenuItem | null>(null);
|
|
22
|
+
|
|
23
|
+
// Preview values (image, title, description)
|
|
24
|
+
const previewImg = activeItem?.imageUrl || defaultImg;
|
|
25
|
+
const previewTitle = activeItem?.title || defaultTitle;
|
|
26
|
+
const previewBoldTitle = activeItem?.boldTitle || defaultBoldTitle;
|
|
27
|
+
const previewDesc = activeItem?.description || defaultDescription;
|
|
28
|
+
|
|
29
|
+
// Action button (from hovered item or default)
|
|
30
|
+
const previewAction = activeItem?.action || defaultAction || {
|
|
31
|
+
label: "",
|
|
32
|
+
url: "",
|
|
33
|
+
target: "_self",
|
|
34
|
+
rel: "",
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
return (
|
|
38
|
+
<div className={`${styles.megaMenu} megaMenu ${pillar}`}>
|
|
39
|
+
<div className={`${styles.megaMenuHolder} megaMenuHolder`}>
|
|
40
|
+
<Container border={false}>
|
|
41
|
+
<div className={`${styles.megaMenuWrapper} megaMenuWrapper`}>
|
|
42
|
+
{/* LEFT */}
|
|
43
|
+
<div className={`${styles.left} left`}>
|
|
44
|
+
<div className={`${styles.pillarIcon} pillarIcon`}>
|
|
45
|
+
<PillarLogo brandPillar={pillar} brandFullLogo={true} />
|
|
69
46
|
</div>
|
|
70
|
-
|
|
71
|
-
|
|
47
|
+
|
|
48
|
+
<ul>
|
|
49
|
+
{menu.map((item, i) => (
|
|
50
|
+
<li key={i}>
|
|
51
|
+
<a
|
|
52
|
+
href={item.url || "#"}
|
|
53
|
+
target={item.target || "_self"}
|
|
54
|
+
onMouseEnter={() => setActiveItem(item)}
|
|
55
|
+
onMouseLeave={() => setActiveItem(null)}
|
|
56
|
+
>
|
|
57
|
+
{item.label}
|
|
58
|
+
<ArrowRight type={"light"} />
|
|
59
|
+
</a>
|
|
60
|
+
</li>
|
|
61
|
+
))}
|
|
62
|
+
</ul>
|
|
63
|
+
</div>
|
|
64
|
+
|
|
65
|
+
{/* RIGHT PREVIEW */}
|
|
66
|
+
<div className={styles.right}>
|
|
67
|
+
<div className={styles.preview}>
|
|
68
|
+
<div className={styles.previewWrapper}>
|
|
69
|
+
<div className={styles.previewImg}>
|
|
70
|
+
{previewImg && <img src={previewImg} alt="" />}
|
|
71
|
+
</div>
|
|
72
|
+
|
|
73
|
+
<div className={styles.content}>
|
|
74
|
+
<h5>
|
|
75
|
+
{previewTitle}
|
|
76
|
+
<br />
|
|
77
|
+
<span>{previewBoldTitle}</span>
|
|
78
|
+
</h5>
|
|
79
|
+
|
|
80
|
+
<p>{previewDesc}</p>
|
|
81
|
+
</div>
|
|
82
|
+
|
|
83
|
+
{ previewAction.label && <div className={styles.action}>
|
|
84
|
+
<Button
|
|
85
|
+
pillar={pillar}
|
|
86
|
+
label={previewAction.label}
|
|
87
|
+
linkable={true}
|
|
88
|
+
link={{
|
|
89
|
+
url: previewAction.url || "",
|
|
90
|
+
target: previewAction.target || "_self",
|
|
91
|
+
rel: previewAction.rel || "",
|
|
92
|
+
}}
|
|
93
|
+
secondaryIcon={<ArrowRight />}
|
|
94
|
+
/>
|
|
95
|
+
</div>
|
|
96
|
+
}
|
|
97
|
+
</div>
|
|
72
98
|
</div>
|
|
73
99
|
</div>
|
|
74
100
|
</div>
|
|
101
|
+
</Container>
|
|
102
|
+
|
|
103
|
+
{/* SVG BACKGROUND */}
|
|
104
|
+
<div className={styles.megaMenuSvg}>
|
|
105
|
+
<svg
|
|
106
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
107
|
+
width="741"
|
|
108
|
+
height="340"
|
|
109
|
+
viewBox="0 0 741 340"
|
|
110
|
+
fill="none"
|
|
111
|
+
>
|
|
112
|
+
<g opacity="0.1">
|
|
113
|
+
<path
|
|
114
|
+
opacity="0.5"
|
|
115
|
+
d="M0 113.209C68.1991 113.209 123.5 163.901 123.5 226.417H0V113.209Z"
|
|
116
|
+
fill="currentColor"
|
|
117
|
+
/>
|
|
118
|
+
<path
|
|
119
|
+
opacity="0.25"
|
|
120
|
+
d="M247 113.209C178.801 113.209 123.5 163.901 123.5 226.417H247V113.209Z"
|
|
121
|
+
fill="currentColor"
|
|
122
|
+
/>
|
|
123
|
+
<path
|
|
124
|
+
opacity="0.5"
|
|
125
|
+
d="M741 226.417C672.801 226.417 617.5 175.725 617.5 113.209H741V226.417Z"
|
|
126
|
+
fill="currentColor"
|
|
127
|
+
/>
|
|
128
|
+
<path
|
|
129
|
+
opacity="0.75"
|
|
130
|
+
d="M123.5 226.416C191.699 226.416 247 277.109 247 339.624H123.5V226.416Z"
|
|
131
|
+
fill="currentColor"
|
|
132
|
+
/>
|
|
133
|
+
<path
|
|
134
|
+
opacity="0.5"
|
|
135
|
+
d="M247 339.624C315.199 339.624 370.5 288.932 370.5 226.416H247V339.624Z"
|
|
136
|
+
fill="currentColor"
|
|
137
|
+
/>
|
|
138
|
+
<path
|
|
139
|
+
opacity="0.25"
|
|
140
|
+
d="M494 339.625C425.801 339.625 370.5 288.932 370.5 226.417H494V339.625Z"
|
|
141
|
+
fill="currentColor"
|
|
142
|
+
/>
|
|
143
|
+
<path
|
|
144
|
+
opacity="0.75"
|
|
145
|
+
d="M617.5 226.417C549.301 226.417 494 277.109 494 339.625H617.5V226.417Z"
|
|
146
|
+
fill="currentColor"
|
|
147
|
+
/>
|
|
148
|
+
<path
|
|
149
|
+
opacity="0.25"
|
|
150
|
+
d="M494 0.000656128C562.199 0.000656128 617.5 50.6932 617.5 113.209H494V0.000656128Z"
|
|
151
|
+
fill="currentColor"
|
|
152
|
+
/>
|
|
153
|
+
<path
|
|
154
|
+
opacity="0.5"
|
|
155
|
+
d="M370.5 226.417C438.699 226.417 494 175.725 494 113.209H370.5V226.417Z"
|
|
156
|
+
fill="currentColor"
|
|
157
|
+
/>
|
|
158
|
+
<path
|
|
159
|
+
opacity="0.75"
|
|
160
|
+
d="M247 113.208C315.199 113.208 370.5 62.5158 370.5 0H247V113.208Z"
|
|
161
|
+
fill="currentColor"
|
|
162
|
+
/>
|
|
163
|
+
</g>
|
|
164
|
+
</svg>
|
|
75
165
|
</div>
|
|
76
166
|
</div>
|
|
77
|
-
</Container>
|
|
78
|
-
<div className={styles.megaMenuSvg}>
|
|
79
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="741" height="340" viewBox="0 0 741 340" fill="none">
|
|
80
|
-
<g opacity="0.1">
|
|
81
|
-
<path opacity="0.5" d="M0 113.209C68.1991 113.209 123.5 163.901 123.5 226.417H0V113.209Z" fill="currentColor"/>
|
|
82
|
-
<path opacity="0.25" d="M247 113.209C178.801 113.209 123.5 163.901 123.5 226.417H247V113.209Z" fill="currentColor"/>
|
|
83
|
-
<path opacity="0.5" d="M741 226.417C672.801 226.417 617.5 175.725 617.5 113.209H741V226.417Z" fill="currentColor"/>
|
|
84
|
-
<path opacity="0.75" d="M123.5 226.416C191.699 226.416 247 277.109 247 339.624H123.5V226.416Z" fill="currentColor"/>
|
|
85
|
-
<path opacity="0.5" d="M247 339.624C315.199 339.624 370.5 288.932 370.5 226.416H247V339.624Z" fill="currentColor"/>
|
|
86
|
-
<path opacity="0.25" d="M494 339.625C425.801 339.625 370.5 288.932 370.5 226.417H494V339.625Z" fill="currentColor"/>
|
|
87
|
-
<path opacity="0.75" d="M617.5 226.417C549.301 226.417 494 277.109 494 339.625H617.5V226.417Z" fill="currentColor"/>
|
|
88
|
-
<path opacity="0.25" d="M494 0.000656128C562.199 0.000656128 617.5 50.6932 617.5 113.209H494V0.000656128Z" fill="currentColor"/>
|
|
89
|
-
<path opacity="0.5" d="M370.5 226.417C438.699 226.417 494 175.725 494 113.209H370.5V226.417Z" fill="currentColor"/>
|
|
90
|
-
<path opacity="0.75" d="M247 113.208C315.199 113.208 370.5 62.5158 370.5 0H247V113.208Z" fill="currentColor"/>
|
|
91
|
-
</g>
|
|
92
|
-
</svg>
|
|
93
|
-
</div>
|
|
94
167
|
</div>
|
|
95
|
-
|
|
96
|
-
}
|
|
168
|
+
);
|
|
169
|
+
};
|
|
97
170
|
|
|
98
|
-
export default MegaMenu;
|
|
171
|
+
export default MegaMenu;
|
|
@@ -1,20 +1,33 @@
|
|
|
1
1
|
export interface MenuItem {
|
|
2
|
-
label
|
|
3
|
-
url
|
|
4
|
-
imageUrl
|
|
5
|
-
title
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
label?: string;
|
|
3
|
+
url?: string;
|
|
4
|
+
imageUrl?: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
boldTitle?:string
|
|
7
|
+
description?: string;
|
|
8
|
+
target?: string;
|
|
9
|
+
action?: {
|
|
10
|
+
label?: string;
|
|
11
|
+
url?: string;
|
|
12
|
+
target?: "_blank" | "_self" | "_parent" | "_top" | undefined;
|
|
13
|
+
rel?: string;
|
|
14
|
+
};
|
|
15
|
+
pillar?: 'visit' | 'live' | 'business' | 'participate' | 'taste';
|
|
9
16
|
}
|
|
10
17
|
|
|
11
18
|
interface MegaMenuProps {
|
|
12
|
-
pillar: '
|
|
19
|
+
pillar: 'visit' | 'live' | 'business' | 'participate' | 'taste';
|
|
13
20
|
menu: MenuItem[];
|
|
14
|
-
headingHighlight?: string;
|
|
15
21
|
defaultImg?:string
|
|
16
22
|
defaultTitle?: string;
|
|
23
|
+
defaultBoldTitle?: string;
|
|
17
24
|
defaultDescription?:string;
|
|
25
|
+
defaultAction?: {
|
|
26
|
+
label?: string;
|
|
27
|
+
url?: string;
|
|
28
|
+
target?: "_blank" | "_self" | "_parent" | "_top" | undefined;
|
|
29
|
+
rel?: string;
|
|
30
|
+
};
|
|
18
31
|
}
|
|
19
32
|
|
|
20
33
|
export default MegaMenuProps;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
right: 0;
|
|
4
4
|
left: 0;
|
|
5
5
|
background: var(--color-bg);
|
|
6
|
-
top:
|
|
6
|
+
top: 97px;
|
|
7
7
|
border-radius: 0 0 366px 0;
|
|
8
8
|
overflow-x: hidden;
|
|
9
9
|
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.megaMenuSvg{
|
|
22
|
+
pointer-events: none;
|
|
22
23
|
position: absolute;
|
|
23
24
|
color: var(--color-text);
|
|
24
25
|
bottom: 0;
|
|
@@ -33,7 +34,7 @@
|
|
|
33
34
|
display: flex;
|
|
34
35
|
flex-wrap: wrap;
|
|
35
36
|
position: relative;
|
|
36
|
-
min-height:
|
|
37
|
+
min-height: calc(100vh - 96px);
|
|
37
38
|
|
|
38
39
|
.right{
|
|
39
40
|
width: 40%;
|
|
@@ -120,6 +121,7 @@
|
|
|
120
121
|
|
|
121
122
|
.action{
|
|
122
123
|
padding-top: 48px;
|
|
124
|
+
padding-bottom: 24px;
|
|
123
125
|
padding-left: 72px;
|
|
124
126
|
}
|
|
125
127
|
|
|
@@ -7,11 +7,12 @@ const MobileNavigation = (props : MobileNavigationProps) => {
|
|
|
7
7
|
|
|
8
8
|
const {
|
|
9
9
|
children,
|
|
10
|
-
extraClass
|
|
10
|
+
extraClass,
|
|
11
|
+
pillar = 'visit'
|
|
11
12
|
} = props
|
|
12
13
|
|
|
13
|
-
return <div className={`${styles.mobileNavigation} ${extraClass} mobileNavigation`}>
|
|
14
|
-
<Container>
|
|
14
|
+
return <div className={`${styles.mobileNavigation} ${pillar} ${extraClass} mobileNavigation`}>
|
|
15
|
+
<Container border={false}>
|
|
15
16
|
<ul className={`${styles.mobileNavigationWrapper} mobileNavigationWrapper`}>
|
|
16
17
|
{children}
|
|
17
18
|
</ul>
|
|
@@ -4,12 +4,16 @@ import ArrowRight from "../../../Icons/Arrows/ArrowRight/ArrowRight.tsx";
|
|
|
4
4
|
|
|
5
5
|
const MobileNavigationItem = (props : MobileNavigationItemProps) => {
|
|
6
6
|
|
|
7
|
-
const {label} = props
|
|
7
|
+
const {label, href, target, onClick} = props
|
|
8
8
|
|
|
9
9
|
return <div className={styles.mobileNavItem}>
|
|
10
10
|
<div className={styles.mobileNavItemWrapper}>
|
|
11
|
-
<
|
|
12
|
-
|
|
11
|
+
<a href={href} target={target}>
|
|
12
|
+
{label}
|
|
13
|
+
</a>
|
|
14
|
+
<div onClick={onClick} className={styles.mobileNavItemSvg}>
|
|
15
|
+
<ArrowRight type={'light'}/>
|
|
16
|
+
</div>
|
|
13
17
|
</div>
|
|
14
18
|
</div>
|
|
15
19
|
}
|
package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigation.tsx
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
import MobileSubNavigationProps from "./MobileSubNavigationProps.tsx";
|
|
2
2
|
import styles from '../mobileNavigation.module.scss'
|
|
3
|
-
import
|
|
3
|
+
import Container from "../../../../Shared/Container/Container.tsx";
|
|
4
|
+
import {ArrowLeft} from "../../../../Icons";
|
|
4
5
|
|
|
5
6
|
const MobileSubNavigation = (props : MobileSubNavigationProps) => {
|
|
6
7
|
|
|
7
8
|
const {
|
|
8
9
|
children,
|
|
9
|
-
extraClass
|
|
10
|
+
extraClass,
|
|
11
|
+
backOnclick
|
|
10
12
|
} = props
|
|
11
13
|
|
|
12
|
-
return <div className={`${styles.
|
|
13
|
-
<Container>
|
|
14
|
-
<
|
|
14
|
+
return <div className={`${styles.mobileNavigation} ${extraClass} mobileSubNavigation`}>
|
|
15
|
+
<Container border={false}>
|
|
16
|
+
<div onClick={backOnclick} className={`${styles.backIcon} backIcon`}>
|
|
17
|
+
<ArrowLeft/>
|
|
18
|
+
</div>
|
|
19
|
+
<ul className={`${styles.mobileNavigationWrapper} mobileSubNavigationWrapper`}>
|
|
15
20
|
{children}
|
|
16
21
|
</ul>
|
|
17
22
|
</Container>
|
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
import styles from '
|
|
2
|
-
import MobileNavigationItemProps from "
|
|
3
|
-
|
|
1
|
+
import styles from '../mobileNavigation.module.scss'
|
|
2
|
+
import MobileNavigationItemProps from "../MobileNavigationItemProps.tsx";
|
|
3
|
+
const MobileSubNavigationItem = (props : MobileNavigationItemProps) => {
|
|
4
4
|
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
const {label} = props
|
|
5
|
+
const {label, href, target} = props
|
|
8
6
|
|
|
9
7
|
return <div className={styles.mobileNavItem}>
|
|
10
8
|
<div className={styles.mobileNavItemWrapper}>
|
|
11
|
-
<
|
|
12
|
-
|
|
9
|
+
<a href={href} target={target}>
|
|
10
|
+
{label}
|
|
11
|
+
</a>
|
|
13
12
|
</div>
|
|
14
13
|
</div>
|
|
15
14
|
}
|
|
16
15
|
|
|
17
|
-
export default
|
|
16
|
+
export default MobileSubNavigationItem;
|
|
@@ -8,6 +8,11 @@
|
|
|
8
8
|
border-radius: 0 0 200px 0;
|
|
9
9
|
overflow-x: hidden;
|
|
10
10
|
|
|
11
|
+
.backIcon{
|
|
12
|
+
color: var(--header-color);
|
|
13
|
+
padding-top: 24px;
|
|
14
|
+
}
|
|
15
|
+
|
|
11
16
|
.mobileNavigationWrapper{
|
|
12
17
|
padding-top: 48px;
|
|
13
18
|
list-style: none;
|
|
@@ -21,21 +26,29 @@
|
|
|
21
26
|
color: var(--header-color);
|
|
22
27
|
transition: all 0.3s ease-in-out;
|
|
23
28
|
|
|
29
|
+
.mobileNavItemSvg{
|
|
30
|
+
display: flex;
|
|
31
|
+
}
|
|
32
|
+
|
|
24
33
|
svg {
|
|
25
34
|
margin-left: 16px;
|
|
26
35
|
transition: transform 0.3s ease-in-out;
|
|
27
36
|
}
|
|
28
37
|
|
|
29
38
|
&:hover {
|
|
39
|
+
color: var(--color-sand);
|
|
40
|
+
|
|
30
41
|
svg {
|
|
31
42
|
animation: wiggle 0.6s ease-in-out infinite;
|
|
32
43
|
}
|
|
33
44
|
}
|
|
34
45
|
|
|
35
|
-
|
|
46
|
+
a{
|
|
36
47
|
font-size: var(--font-size-h6);
|
|
37
48
|
line-height: var(--line-height-h6);
|
|
38
49
|
font-weight: var(--font-weight-h6);
|
|
50
|
+
color: inherit;
|
|
51
|
+
text-decoration: none;
|
|
39
52
|
}
|
|
40
53
|
|
|
41
54
|
}
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
.header{
|
|
2
|
-
background: var(--header-bg);
|
|
3
2
|
backdrop-filter: blur(10px);
|
|
4
3
|
border-bottom: 1px solid var(--color-taste);
|
|
5
4
|
|
|
5
|
+
&.active{
|
|
6
|
+
background: var(--header-bg);
|
|
7
|
+
}
|
|
8
|
+
|
|
6
9
|
.headerWrapper{
|
|
7
10
|
display: flex;
|
|
8
11
|
align-items: flex-end;
|
|
9
12
|
justify-content: space-between;
|
|
10
13
|
min-height: 60px;
|
|
14
|
+
width: 100%;
|
|
11
15
|
}
|
|
12
16
|
|
|
13
17
|
.headerLogo{
|
|
@@ -30,11 +34,9 @@
|
|
|
30
34
|
.headerRightWrapper{
|
|
31
35
|
display: flex;
|
|
32
36
|
align-items: center;
|
|
33
|
-
margin: 0 -12px;
|
|
34
37
|
}
|
|
35
38
|
|
|
36
39
|
.headerBottomItemHolder{
|
|
37
|
-
padding: 0 12px 12px 12px;
|
|
38
40
|
transition: all 0.3s ease-in;
|
|
39
41
|
|
|
40
42
|
a{
|
|
@@ -45,11 +47,14 @@
|
|
|
45
47
|
font-weight: 400;
|
|
46
48
|
line-height: 1.5;
|
|
47
49
|
cursor: pointer;
|
|
50
|
+
letter-spacing: -0.96px;
|
|
48
51
|
|
|
49
52
|
.icon{
|
|
50
53
|
display: flex;
|
|
51
54
|
|
|
52
55
|
svg{
|
|
56
|
+
margin-left: 20px;
|
|
57
|
+
flex-shrink: 0;
|
|
53
58
|
width: 24px;
|
|
54
59
|
height: 24px;
|
|
55
60
|
}
|
|
@@ -91,19 +96,6 @@
|
|
|
91
96
|
}
|
|
92
97
|
|
|
93
98
|
|
|
94
|
-
@media screen and (min-width: 1648px) {
|
|
95
|
-
|
|
96
|
-
.headerRightWrapper{
|
|
97
|
-
display: flex;
|
|
98
|
-
align-items: center;
|
|
99
|
-
margin: 0 -28px;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.headerBottomItemHolder {
|
|
103
|
-
padding: 0 28px 30px 28px;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
99
|
|
|
108
100
|
@media screen and (min-width: 992px) {
|
|
109
101
|
|
|
@@ -120,9 +112,15 @@
|
|
|
120
112
|
}
|
|
121
113
|
|
|
122
114
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
115
|
+
.headerRightWrapper{
|
|
116
|
+
display: flex;
|
|
117
|
+
align-items: center;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.headerBottomItemHolder {
|
|
121
|
+
padding-bottom: 30px;
|
|
122
|
+
padding-left: 60px;
|
|
123
|
+
}
|
|
126
124
|
|
|
127
125
|
}
|
|
128
126
|
|