@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
|
@@ -16,7 +16,7 @@ const HeroBanner = (props : HeroBannerProps) => {
|
|
|
16
16
|
${pillar ? `${pillar}` : ""}
|
|
17
17
|
`}
|
|
18
18
|
>
|
|
19
|
-
<Container>
|
|
19
|
+
<Container border={false}>
|
|
20
20
|
<div className={styles.heroWrapper}>
|
|
21
21
|
<div className={styles.content}>
|
|
22
22
|
<h1>{title} <span>{boldTitle}</span></h1>
|
|
@@ -43,7 +43,7 @@ const HeroBanner = (props : HeroBannerProps) => {
|
|
|
43
43
|
${pillar ? `${pillar}` : ""}
|
|
44
44
|
`}
|
|
45
45
|
>
|
|
46
|
-
<Container>
|
|
46
|
+
<Container border={false}>
|
|
47
47
|
<div className={styles.heroWrapper}>
|
|
48
48
|
<div className={styles.content}>
|
|
49
49
|
<h1>{title} <span>{boldTitle}</span></h1>
|
|
@@ -71,16 +71,16 @@ const HeroBanner = (props : HeroBannerProps) => {
|
|
|
71
71
|
>
|
|
72
72
|
<div className={styles.heroImg}>
|
|
73
73
|
<img src={backgroundImg} alt="hero banner" />
|
|
74
|
+
<div className={styles.heroSvg}>
|
|
75
|
+
<LargeHeroIcon/>
|
|
76
|
+
</div>
|
|
74
77
|
</div>
|
|
75
|
-
<Container>
|
|
78
|
+
<Container border={false}>
|
|
76
79
|
<div className={styles.heroWrapper}>
|
|
77
80
|
<h1>{title} <span>{boldTitle}</span></h1>
|
|
78
81
|
{description && <p>{description}</p>}
|
|
79
82
|
</div>
|
|
80
83
|
</Container>
|
|
81
|
-
<div className={styles.heroSvg}>
|
|
82
|
-
<LargeHeroIcon/>
|
|
83
|
-
</div>
|
|
84
84
|
</div>
|
|
85
85
|
}
|
|
86
86
|
|
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
|
|
4
4
|
&Large{
|
|
5
5
|
position: relative;
|
|
6
|
-
min-height:
|
|
6
|
+
min-height: 494px;
|
|
7
|
+
overflow-x: hidden;
|
|
7
8
|
|
|
8
9
|
.heroImg{
|
|
9
10
|
position: absolute;
|
|
@@ -11,7 +12,7 @@
|
|
|
11
12
|
right: 0;
|
|
12
13
|
top: 0;
|
|
13
14
|
bottom: 0;
|
|
14
|
-
border-radius: 0 0
|
|
15
|
+
border-radius: 0 0 76.25px 0;
|
|
15
16
|
overflow: hidden;
|
|
16
17
|
background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 41.35%), linear-gradient(0deg, rgba(124, 132, 123, 0.05) 0%, rgba(124, 132, 123, 0.05) 100%), #000;
|
|
17
18
|
|
|
@@ -29,15 +30,15 @@
|
|
|
29
30
|
z-index: 10;
|
|
30
31
|
width: 100%;
|
|
31
32
|
height: 100%;
|
|
32
|
-
padding-top:
|
|
33
|
+
padding-top: 104px;
|
|
33
34
|
color: var(--color-text);
|
|
34
35
|
|
|
35
36
|
h1{
|
|
36
37
|
max-width: 898px;
|
|
37
|
-
font-size:
|
|
38
|
+
font-size: 44px;
|
|
38
39
|
line-height: 1;
|
|
39
40
|
font-weight: 400;
|
|
40
|
-
letter-spacing: -
|
|
41
|
+
letter-spacing: -1.76px;
|
|
41
42
|
|
|
42
43
|
span{
|
|
43
44
|
font-weight: 700;
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
z-index: 5;
|
|
53
54
|
left: 0;
|
|
54
55
|
bottom: 0;
|
|
55
|
-
height:
|
|
56
|
+
height: 165px;
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
}
|
|
@@ -136,6 +137,8 @@
|
|
|
136
137
|
|
|
137
138
|
&Small{
|
|
138
139
|
position: relative;
|
|
140
|
+
min-height: 600px;
|
|
141
|
+
overflow-x: hidden;
|
|
139
142
|
|
|
140
143
|
.heroWrapper{
|
|
141
144
|
display: flex;
|
|
@@ -210,6 +213,28 @@
|
|
|
210
213
|
|
|
211
214
|
@media screen and (min-width: 992px) {
|
|
212
215
|
|
|
216
|
+
&Large{
|
|
217
|
+
min-height: 100vh;
|
|
218
|
+
|
|
219
|
+
.heroImg{
|
|
220
|
+
border-radius: 0 0 366px 0;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.heroWrapper{
|
|
224
|
+
h1{
|
|
225
|
+
font-size: var(--font-size-h1);
|
|
226
|
+
letter-spacing: -1.68px;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
padding-top: 207px;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.heroSvg{
|
|
233
|
+
height: 340px;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
}
|
|
237
|
+
|
|
213
238
|
&Medium{
|
|
214
239
|
.heroWrapper{
|
|
215
240
|
|
|
@@ -250,4 +275,15 @@
|
|
|
250
275
|
|
|
251
276
|
}
|
|
252
277
|
|
|
278
|
+
@media screen and (min-width: 1400px) {
|
|
279
|
+
&Large{
|
|
280
|
+
.heroWrapper{
|
|
281
|
+
h1{
|
|
282
|
+
letter-spacing: -7.68px;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
253
289
|
}
|
|
@@ -27,5 +27,14 @@ export { default as HeroBanner } from './HeroBanner/HeroBanner';
|
|
|
27
27
|
export type { default as HeroBannerProps } from './HeroBanner/HeroBannerProps';
|
|
28
28
|
|
|
29
29
|
// Megamenu
|
|
30
|
-
export { default as MegaMenu} from './Header/MegaMenu/MegaMenu
|
|
31
|
-
export type { default as MegaMenuProps } from './Header/MegaMenu/MegaMenuProps
|
|
30
|
+
export { default as MegaMenu} from './Header/MegaMenu/MegaMenu'
|
|
31
|
+
export type { default as MegaMenuProps } from './Header/MegaMenu/MegaMenuProps'
|
|
32
|
+
|
|
33
|
+
//MobileNavigation
|
|
34
|
+
export { default as MobileNavigation } from './Header/MobileNavigation/MobileNavigation'
|
|
35
|
+
export { default as MobileNavigationItem} from './Header/MobileNavigation/MobileNavigationItem'
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
//MobileNavigation
|
|
39
|
+
export { default as MobileSubNavigation } from './Header/MobileNavigation/MobileSubNavigation/MobileSubNavigation'
|
|
40
|
+
export { default as MobileSubNavigationItem } from './Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationItem'
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { createContext, ReactNode } from "react";
|
|
2
|
+
interface SkopeUIContextType {
|
|
3
|
+
modalStack: ReactNode[];
|
|
4
|
+
openModal: (modal: React.ReactNode) => void;
|
|
5
|
+
closeModal: () => void;
|
|
6
|
+
closeAllModals: () => void;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
const SelwynUIContext = createContext<SkopeUIContextType>({
|
|
10
|
+
modalStack: [],
|
|
11
|
+
openModal: () => {},
|
|
12
|
+
closeModal: () => {},
|
|
13
|
+
closeAllModals: () => {},
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
export default SelwynUIContext;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import React, { FC, ReactNode, useState } from "react";
|
|
2
|
+
import SelwynUIContext from "./SelwynUIContext.tsx";
|
|
3
|
+
|
|
4
|
+
interface SelwynUIProviderProps {
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
const SelwynUIProvider: FC<SelwynUIProviderProps> = (props : SelwynUIProviderProps) => {
|
|
9
|
+
const { children } = props;
|
|
10
|
+
|
|
11
|
+
const [modalStack, setModalStack] = useState<React.ReactNode[]>([]);
|
|
12
|
+
const openModal = (modal: React.ReactNode) => {
|
|
13
|
+
setModalStack((prevStack) => [...prevStack, modal]);
|
|
14
|
+
console.log('hello')
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
const closeModal = () => {
|
|
18
|
+
setModalStack((prevStack) => prevStack.slice(0, -1));
|
|
19
|
+
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
const closeAllModals = () => {
|
|
23
|
+
setModalStack([]);
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
return (
|
|
28
|
+
<SelwynUIContext.Provider
|
|
29
|
+
value={{
|
|
30
|
+
modalStack,
|
|
31
|
+
openModal,
|
|
32
|
+
closeModal,
|
|
33
|
+
closeAllModals,
|
|
34
|
+
}}
|
|
35
|
+
>
|
|
36
|
+
<>
|
|
37
|
+
{children}
|
|
38
|
+
{modalStack.map((modal, index) => (
|
|
39
|
+
<React.Fragment key={index}>{modal}</React.Fragment>
|
|
40
|
+
))}
|
|
41
|
+
</>
|
|
42
|
+
</SelwynUIContext.Provider>
|
|
43
|
+
);
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export default SelwynUIProvider;
|
|
@@ -1,19 +1,29 @@
|
|
|
1
1
|
import styles from "./container.module.scss";
|
|
2
2
|
import ContainerProps from "./ContainerProps.tsx";
|
|
3
3
|
import cslx from "clsx";
|
|
4
|
-
const Container = (props : ContainerProps) =>{
|
|
5
|
-
|
|
6
|
-
const {children, type="default"} = props
|
|
7
4
|
|
|
5
|
+
const Container = (props: ContainerProps) => {
|
|
6
|
+
const { children, type = "default", border = true, spaceTop, spaceBottom } = props;
|
|
8
7
|
const className = cslx(
|
|
9
8
|
styles.container,
|
|
10
9
|
{
|
|
11
10
|
[styles.default]: type === "default",
|
|
12
|
-
|
|
11
|
+
[styles.simpleForm]: type === "simpleForm",
|
|
12
|
+
[styles.footer]: type === "footer",
|
|
13
|
+
[styles.hasBorder]: border,
|
|
14
|
+
[styles[`space-${spaceTop}`]]: spaceTop,
|
|
15
|
+
[styles[`space-${spaceBottom}`]]: spaceBottom,
|
|
16
|
+
}
|
|
17
|
+
);
|
|
13
18
|
|
|
14
|
-
return
|
|
15
|
-
{
|
|
16
|
-
|
|
17
|
-
}
|
|
19
|
+
return (
|
|
20
|
+
<div className={className}>
|
|
21
|
+
{border && <div className={styles.border}></div>}
|
|
22
|
+
<div className={styles.containerInner}>
|
|
23
|
+
{children}
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
);
|
|
27
|
+
};
|
|
18
28
|
|
|
19
|
-
export default Container
|
|
29
|
+
export default Container;
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import {ReactNode} from "react";
|
|
2
2
|
|
|
3
|
+
type SpacingOption = "none" | "xsm" |"sm" | "md" | "lg" | "xl"
|
|
4
|
+
|
|
3
5
|
interface ContainerProps {
|
|
4
6
|
children?: ReactNode
|
|
5
|
-
type?: "default"
|
|
7
|
+
type?: "default" | "simpleForm" | "footer"
|
|
8
|
+
border?:boolean;
|
|
9
|
+
spaceTop?: SpacingOption
|
|
10
|
+
spaceBottom?: SpacingOption
|
|
6
11
|
}
|
|
7
12
|
|
|
8
|
-
export default ContainerProps
|
|
13
|
+
export default ContainerProps;
|
|
@@ -1,13 +1,65 @@
|
|
|
1
1
|
.container {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
padding: 0px 16px 0 16px;
|
|
3
|
+
margin: 0px auto;
|
|
4
|
+
|
|
5
|
+
&.default {
|
|
6
|
+
max-width: 1520px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
&.simpleForm {
|
|
10
|
+
max-width: 1520px;
|
|
11
|
+
|
|
12
|
+
.border {
|
|
13
|
+
margin-right: 0;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.footer {
|
|
18
|
+
max-width: 1448px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.border {
|
|
22
|
+
width: 1px;
|
|
23
|
+
background: var(--color-block-text);
|
|
24
|
+
margin-right: 32px;
|
|
25
|
+
flex-shrink: 0;
|
|
26
|
+
margin-top: -150px;
|
|
27
|
+
margin-bottom: -150px;
|
|
28
|
+
display: none;
|
|
29
|
+
}
|
|
4
30
|
|
|
5
|
-
&.
|
|
6
|
-
|
|
31
|
+
&.hasBorder {
|
|
32
|
+
display: flex;
|
|
33
|
+
|
|
34
|
+
.containerInner{
|
|
35
|
+
flex: 1;
|
|
36
|
+
min-width: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@media screen and (min-width: 992px) {
|
|
42
|
+
.border {
|
|
43
|
+
display: block;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&.simpleForm {
|
|
47
|
+
.border {
|
|
48
|
+
margin-right: 45px;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
7
51
|
}
|
|
8
52
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
53
|
+
|
|
54
|
+
@media screen and (min-width: 1748px) {
|
|
55
|
+
padding: 0px 16px 0 16px;
|
|
56
|
+
|
|
57
|
+
&.simpleForm {
|
|
58
|
+
.border {
|
|
59
|
+
margin-right: 96px;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
}
|
|
12
64
|
|
|
13
65
|
}
|
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
background-color: var(--color-block-bg);
|
|
3
3
|
color: var(--color-block-text);
|
|
4
4
|
position: relative;
|
|
5
|
+
overflow: hidden;
|
|
5
6
|
|
|
6
7
|
&Inner {
|
|
7
|
-
position: relative;
|
|
8
|
+
//position: relative;
|
|
8
9
|
z-index: 1;
|
|
9
10
|
}
|
|
10
11
|
|
|
@@ -14,19 +15,23 @@
|
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
&--pt-xsm {
|
|
17
|
-
padding-top:
|
|
18
|
+
padding-top: 40px;
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
&--pt-sm {
|
|
21
|
-
padding-top:
|
|
22
|
+
padding-top: 48px;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
&--pt-md {
|
|
25
|
-
padding-top:
|
|
26
|
+
padding-top: 90px;
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
&--pt-lg {
|
|
29
|
-
padding-top:
|
|
30
|
+
padding-top: 120px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&--pt-xl {
|
|
34
|
+
padding-bottom: 144px;
|
|
30
35
|
}
|
|
31
36
|
|
|
32
37
|
// Padding Bottom
|
|
@@ -4,7 +4,7 @@ const PillarIcon = ({ pillar }: PillarIconsProps) => {
|
|
|
4
4
|
|
|
5
5
|
if (pillar === 'visit') {
|
|
6
6
|
return (
|
|
7
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 935 930" fill="none">
|
|
8
8
|
<g opacity="0.03">
|
|
9
9
|
<path d="M454.02 0C203.235 0 0 202.405 0 452.165H454.02V0Z" fill="currentColor"/>
|
|
10
10
|
<path d="M454.02 477.687C203.235 477.687 2.51136e-06 680.092 2.51136e-06 929.852H454.02V477.687Z" fill="currentColor"/>
|
|
@@ -16,7 +16,7 @@ const PillarIcon = ({ pillar }: PillarIconsProps) => {
|
|
|
16
16
|
}
|
|
17
17
|
if (pillar === 'live') {
|
|
18
18
|
return (
|
|
19
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 935 935" fill="none">
|
|
20
20
|
<g opacity="0.03">
|
|
21
21
|
<path d="M481.047 480.4C481.047 731.423 684.334 935 935 935V480.4H481.047Z" fill="currentColor"/>
|
|
22
22
|
<path d="M935 454.749C935 203.725 731.713 0.148275 481.047 0.148275V454.749H935Z" fill="currentColor"/>
|
|
@@ -28,7 +28,7 @@ const PillarIcon = ({ pillar }: PillarIconsProps) => {
|
|
|
28
28
|
}
|
|
29
29
|
if (pillar === 'business') {
|
|
30
30
|
return (
|
|
31
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
31
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 938 935" fill="none">
|
|
32
32
|
<g opacity="0.04">
|
|
33
33
|
<path d="M938 480.48C686.479 480.48 482.528 684.005 482.528 935H938V480.48Z" fill="currentColor"/>
|
|
34
34
|
<path d="M938 0.296748C686.479 0.296748 482.528 203.822 482.528 454.817H938V0.296748Z" fill="currentColor"/>
|
|
@@ -40,7 +40,7 @@ const PillarIcon = ({ pillar }: PillarIconsProps) => {
|
|
|
40
40
|
}
|
|
41
41
|
if (pillar === 'participate') {
|
|
42
42
|
return (
|
|
43
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
43
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 937 934" fill="none">
|
|
44
44
|
<g opacity="0.08">
|
|
45
45
|
<path d="M4.35945e-07 454.114C251.202 454.114 454.924 250.755 454.924 0H4.35945e-07V454.114Z" fill="currentColor"/>
|
|
46
46
|
<path d="M454.924 933.852C454.924 683.097 251.202 479.738 0 479.738V933.852H454.924Z" fill="currentColor"/>
|
|
@@ -51,7 +51,16 @@ const PillarIcon = ({ pillar }: PillarIconsProps) => {
|
|
|
51
51
|
);
|
|
52
52
|
}
|
|
53
53
|
if (pillar === 'taste') {
|
|
54
|
-
return
|
|
54
|
+
return (
|
|
55
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 937 932" fill="none">
|
|
56
|
+
<g opacity="0.03">
|
|
57
|
+
<path d="M482.009 931.935C733.33 931.935 937 729.109 937 478.829L482.009 478.829L482.009 931.935Z" fill="currentColor"/>
|
|
58
|
+
<path d="M482.009 453.254C733.33 453.254 937 250.428 937 0.148132L482.009 0.148093L482.009 453.254Z" fill="currentColor"/>
|
|
59
|
+
<path d="M454.991 931.787C203.67 931.787 1.77446e-05 728.961 3.96247e-05 478.681L454.991 478.681L454.991 931.787Z" fill="currentColor"/>
|
|
60
|
+
<path d="M454.991 453.106C203.67 453.106 5.95921e-05 250.28 8.14723e-05 -2.088e-05L454.991 1.88966e-05L454.991 453.106Z" fill="currentColor"/>
|
|
61
|
+
</g>
|
|
62
|
+
</svg>
|
|
63
|
+
);
|
|
55
64
|
}
|
|
56
65
|
};
|
|
57
66
|
|
|
@@ -40,7 +40,7 @@ const PillarLogo = ({brandPillar = 'visit', brandFullLogo } : PillarLogoProps) =
|
|
|
40
40
|
|
|
41
41
|
if(brandFullLogo){
|
|
42
42
|
return <svg xmlns="http://www.w3.org/2000/svg" width="203" height="67" viewBox="0 0 203 67" fill="none">
|
|
43
|
-
<g
|
|
43
|
+
<g clipPath="url(#clip0_4713_9167)">
|
|
44
44
|
<path d="M73.0897 25.7691V-0.1875H82.2102C87.9893 -0.1875 91.3306 2.21193 91.3306 6.75821C91.3306 9.15764 89.5143 11.6251 87.2997 12.2856C90.4953 13.0822 92.4961 15.4525 92.4961 18.5028C92.4961 23.2628 89.116 25.7691 83.3757 25.7691H73.0897ZM82.3947 11.2656C86.2507 11.2656 88.1739 9.63364 88.1739 6.79707C88.1739 3.9605 86.2799 2.35764 82.4336 2.35764H76.1784V11.2656H82.3947ZM76.1784 23.2239H83.23C87.1929 23.2239 89.3686 21.4754 89.3686 18.5028C89.3686 15.5302 87.1152 13.7039 83.1523 13.7039H76.1784V23.2239Z" fill="currentColor"/>
|
|
45
45
|
<path d="M106.454 25.7691V22.4565C105.579 24.7491 103.404 26.1965 100.636 26.1965C96.4882 26.1965 94.1668 23.6902 94.1668 19.2508V7.47707H97.2166V18.6776C97.2166 22.0582 98.6347 23.8359 101.51 23.8359C104.385 23.8359 106.347 21.9416 106.347 17.5508V7.47707H109.397V25.7594H106.454V25.7691Z" fill="currentColor"/>
|
|
46
46
|
<path d="M114.127 20.3485C114.35 22.8548 116.672 23.9136 119.139 23.9136C121.606 23.9136 123.461 22.7479 123.461 20.7856C123.461 19.4451 122.587 18.5708 120.265 18.1336L117.031 17.4828C114.088 16.9388 111.941 15.7342 111.941 12.5382C111.941 9.34221 114.7 7.04964 118.74 7.04964C122.781 7.04964 125.539 8.86621 125.899 12.3245H123.102C122.888 10.4691 121.246 9.38107 118.74 9.38107C116.235 9.38107 114.739 10.5856 114.739 12.3634C114.739 13.9274 115.827 14.5782 117.934 14.9765L121.567 15.6662C124.549 16.2491 126.287 17.7062 126.287 20.6496C126.287 23.8456 123.267 26.2159 119.168 26.2159C114.807 26.2159 111.533 24.2925 111.203 20.3582H114.107L114.127 20.3485Z" fill="currentColor"/>
|
|
@@ -80,7 +80,7 @@ const PillarLogo = ({brandPillar = 'visit', brandFullLogo } : PillarLogoProps) =
|
|
|
80
80
|
|
|
81
81
|
if(brandFullLogo){
|
|
82
82
|
return <svg xmlns="http://www.w3.org/2000/svg" width="193" height="66" viewBox="0 0 193 66" fill="none">
|
|
83
|
-
<g
|
|
83
|
+
<g clipPath="url(#clip0_4713_9228)">
|
|
84
84
|
<path d="M72.0742 -0.136921H75.1563V22.8348H88.9107V25.4074H72.0742V-0.146484V-0.136921Z" fill="currentColor"/>
|
|
85
85
|
<path d="M91.6291 0.0447881H94.9983V3.65982H91.6291V0.0447881ZM91.8492 7.41831H94.826V25.417H91.8492V7.41831Z" fill="currentColor"/>
|
|
86
86
|
<path d="M97.4007 7.41831H100.445L106.245 22.481H106.321L111.873 7.41831H114.85L107.939 25.417H104.608L97.4103 7.41831H97.4007Z" fill="currentColor"/>
|
package/src/Components/index.ts
CHANGED
package/dist/App.d.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
export type PillarType = "main" | "live" | "visit" | "taste" | "business" | "participate";
|
|
3
|
-
export type RenditionType = "full" | "contained" | "masked";
|
|
4
|
-
export interface ImageSet {
|
|
5
|
-
single?: string;
|
|
6
|
-
setOfFour?: [string, string, string, string];
|
|
7
|
-
}
|
|
8
|
-
export interface Item {
|
|
9
|
-
id?: number;
|
|
10
|
-
label?: string;
|
|
11
|
-
}
|
|
12
|
-
export interface ImageContentProps {
|
|
13
|
-
level?: "primary" | "secondary" | "light";
|
|
14
|
-
pillar?: PillarType;
|
|
15
|
-
displayFullLogo?: boolean;
|
|
16
|
-
displayIconWithTitle?: boolean;
|
|
17
|
-
pillarTitle?: string;
|
|
18
|
-
title?: string;
|
|
19
|
-
content?: ReactNode;
|
|
20
|
-
action?: ReactNode;
|
|
21
|
-
images?: ImageSet;
|
|
22
|
-
alignment?: 'left' | 'right';
|
|
23
|
-
imageBorder?: 'top' | 'bottom';
|
|
24
|
-
rendition?: RenditionType;
|
|
25
|
-
list?: Item[];
|
|
26
|
-
}
|
|
27
|
-
export default ImageContentProps;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
interface KPIItem {
|
|
2
|
-
value: string;
|
|
3
|
-
description: string;
|
|
4
|
-
}
|
|
5
|
-
interface KPIBlockProps {
|
|
6
|
-
title?: string;
|
|
7
|
-
description?: string;
|
|
8
|
-
stats?: KPIItem[];
|
|
9
|
-
pillar?: 'visit' | 'live' | 'business' | 'participate' | 'taste' | 'main';
|
|
10
|
-
}
|
|
11
|
-
export default KPIBlockProps;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export interface Card {
|
|
2
|
-
title: string;
|
|
3
|
-
link: string;
|
|
4
|
-
image: string;
|
|
5
|
-
category?: 'adventure' | 'ski' | 'nature';
|
|
6
|
-
}
|
|
7
|
-
interface PathwayProps {
|
|
8
|
-
title?: string;
|
|
9
|
-
description?: string;
|
|
10
|
-
variation?: 'grid' | 'carousel';
|
|
11
|
-
link?: string;
|
|
12
|
-
cards?: Card[];
|
|
13
|
-
filters?: string[];
|
|
14
|
-
}
|
|
15
|
-
export default PathwayProps;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
interface PromoBannerBlockProps {
|
|
3
|
-
IntroTitle?: string;
|
|
4
|
-
IntroText?: string;
|
|
5
|
-
BrandPiller?: string;
|
|
6
|
-
PillerTitle?: 'Visit' | 'Live' | 'Business' | 'Participate' | 'Taste' | 'Main';
|
|
7
|
-
Title?: string;
|
|
8
|
-
BoldTitle?: string;
|
|
9
|
-
Content?: string;
|
|
10
|
-
Image?: string;
|
|
11
|
-
Button?: ReactNode;
|
|
12
|
-
extraClass?: string;
|
|
13
|
-
}
|
|
14
|
-
export default PromoBannerBlockProps;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export { default as DetailsCard } from './DetailsCard/DetailsCard';
|
|
2
|
-
export type { default as DetailsCardProps } from './DetailsCard/DetailsCardProps';
|
|
3
|
-
export { default as IntroBlock } from './IntroBlock/IntroBlock';
|
|
4
|
-
export type { default as IntroBlockProps } from './IntroBlock/IntroBlockProps';
|
|
5
|
-
export { default as KPIBlock } from './KPIBlock/KPIBlock';
|
|
6
|
-
export type { default as KPIBlockProps } from './KPIBlock/KPIBlockProps';
|
|
7
|
-
export { default as Pathway } from './Pathway/Pathway';
|
|
8
|
-
export type { default as PathwayProps } from './Pathway/PathwayProps';
|
|
9
|
-
export { default as PromoBannerBlock } from './PromoBannerBlock/PromoBannerBlock';
|
|
10
|
-
export type { default as PromoBannerBlockProps } from './PromoBannerBlock/PromoBannerBlockProps';
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
interface ButtonProps {
|
|
3
|
-
type?: "button";
|
|
4
|
-
size?: "default" | "large" | "small";
|
|
5
|
-
style?: "solid" | "hollow";
|
|
6
|
-
label: string;
|
|
7
|
-
piller?: 'visit' | 'live' | 'business' | 'participate' | 'taste' | 'main';
|
|
8
|
-
level?: "primary" | "secondary" | "light";
|
|
9
|
-
icon?: ReactNode;
|
|
10
|
-
onClick?: () => void;
|
|
11
|
-
onHover?: () => void;
|
|
12
|
-
onFocus?: () => void;
|
|
13
|
-
}
|
|
14
|
-
export default ButtonProps;
|