@npm_leadtech/legal-lib-components 7.45.0 → 7.45.1
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/dist/css/styles.css +67 -5
- package/dist/images/componentsSvg/CloseIcon.d.ts +6 -0
- package/dist/images/componentsSvg/CloseIcon.js +2 -0
- package/dist/images/componentsSvg/CloseIcon.tsx +14 -0
- package/dist/images/componentsSvg/InfoLocationSvg.d.ts +2 -0
- package/dist/images/componentsSvg/InfoLocationSvg.js +4 -0
- package/dist/images/componentsSvg/InfoLocationSvg.tsx +14 -0
- package/dist/images/componentsSvg/InfoMailSvg.d.ts +2 -0
- package/dist/images/componentsSvg/InfoMailSvg.js +4 -0
- package/dist/images/componentsSvg/InfoMailSvg.tsx +12 -0
- package/dist/images/componentsSvg/InfoPhoneSvg.d.ts +2 -0
- package/dist/images/componentsSvg/InfoPhoneSvg.js +4 -0
- package/dist/images/componentsSvg/InfoPhoneSvg.tsx +12 -0
- package/dist/images/componentsSvg/SearchIcon.d.ts +4 -0
- package/dist/images/componentsSvg/SearchIcon.js +4 -0
- package/dist/images/componentsSvg/SearchIcon.tsx +26 -0
- package/dist/images/png/about-us-dena.png +0 -0
- package/dist/images/png/about-us-grover.png +0 -0
- package/dist/images/png/img-customized-doc.png +0 -0
- package/dist/images/svg/arrow-down.svg +3 -0
- package/dist/images/svg/business-type.svg +3 -0
- package/dist/images/svg/clear-24-px.svg +14 -0
- package/dist/images/svg/close-grey-24px.svg +3 -0
- package/dist/images/svg/currencyDE.svg +3 -0
- package/dist/images/svg/currencyUS.svg +3 -0
- package/dist/images/svg/men.svg +5 -0
- package/dist/images/svg/mid-banner-1.svg +5 -0
- package/dist/images/svg/mid-banner-2.svg +5 -0
- package/dist/images/svg/mid-banner-3.svg +5 -0
- package/dist/images/svg/percent.svg +3 -0
- package/dist/images/svg/search_24px.svg +3 -0
- package/dist/src/components/atoms/BenefitCard/BenefitCard.d.ts +3 -0
- package/dist/src/components/atoms/BenefitCard/BenefitCard.js +5 -0
- package/dist/src/components/atoms/BenefitCard/BenefitCard.tsx +24 -0
- package/dist/src/components/atoms/{BenefitRatafiaCard/BenefitRatafiaCardProps.types.d.ts → BenefitCard/BenefitCardProps.types.d.ts} +3 -1
- package/dist/src/components/atoms/BenefitCard/BenefitCardProps.types.ts +8 -0
- package/dist/src/components/atoms/BenefitCard/BenefitCardStyled.styled.d.ts +1 -0
- package/dist/src/components/atoms/{BenefitRatafiaCard/BenefitRatafiaCard.styled.js → BenefitCard/BenefitCardStyled.styled.js} +10 -4
- package/dist/src/components/atoms/{BenefitRatafiaCard/BenefitRatafiaCard.styled.ts → BenefitCard/BenefitCardStyled.styled.ts} +10 -4
- package/dist/src/components/atoms/BenefitCard/index.d.ts +2 -0
- package/dist/src/components/atoms/BenefitCard/index.js +1 -0
- package/dist/src/components/atoms/BenefitCard/index.ts +2 -0
- package/dist/src/components/atoms/Button/ButtonProps.types.d.ts +2 -1
- package/dist/src/components/atoms/Button/ButtonProps.types.js +1 -0
- package/dist/src/components/atoms/Button/ButtonProps.types.ts +18 -16
- package/dist/src/components/atoms/CardBox/CardBox.d.ts +3 -0
- package/dist/src/components/atoms/CardBox/CardBox.js +7 -0
- package/dist/src/components/atoms/CardBox/CardBox.styled.d.ts +1 -0
- package/dist/src/components/atoms/CardBox/CardBox.styled.js +22 -0
- package/dist/src/components/atoms/CardBox/CardBox.styled.ts +23 -0
- package/dist/src/components/atoms/CardBox/CardBox.tsx +23 -0
- package/dist/src/components/atoms/CardBox/CardBoxProps.types.d.ts +10 -0
- package/dist/src/components/atoms/CardBox/CardBoxProps.types.ts +10 -0
- package/dist/src/components/atoms/CardBox/index.d.ts +2 -0
- package/dist/src/components/atoms/CardBox/index.js +1 -0
- package/dist/src/components/atoms/CardBox/index.ts +2 -0
- package/dist/src/components/atoms/CardPane/CardPane.styled.js +1 -1
- package/dist/src/components/atoms/CardPane/CardPane.styled.ts +1 -1
- package/dist/src/components/atoms/CardPane/CardPaneInfo.js +2 -2
- package/dist/src/components/atoms/CardPane/CardPaneInfo.tsx +2 -2
- package/dist/src/components/atoms/CardPane/CardPaneProps.types.d.ts +1 -0
- package/dist/src/components/atoms/CardPane/CardPaneProps.types.ts +1 -0
- package/dist/src/components/atoms/ContactCard/ContactCard.styled.js +5 -1
- package/dist/src/components/atoms/ContactCard/ContactCard.styled.ts +5 -1
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.d.ts +3 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.js +5 -0
- package/dist/src/components/atoms/{BenefitRatafiaCard/BenefitRatafiaCard.styled.d.ts → ContactInformationHeader/ContactInformationHeader.styled.d.ts} +1 -1
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.styled.js +21 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.styled.ts +22 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeader.tsx +14 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeaderProps.d.ts +4 -0
- package/dist/src/components/atoms/ContactInformationHeader/ContactInformationHeaderProps.ts +4 -0
- package/dist/src/components/atoms/ContactInformationHeader/index.d.ts +2 -0
- package/dist/src/components/atoms/ContactInformationHeader/index.js +2 -0
- package/dist/src/components/atoms/ContactInformationHeader/index.ts +2 -0
- package/dist/src/components/atoms/DatePickerCustom/DatePickerCustom.js +1 -1
- package/dist/src/components/atoms/DatePickerCustom/DatePickerCustom.tsx +1 -0
- package/dist/src/components/atoms/DatePickerCustom/index.js.map +2 -2
- package/dist/src/components/atoms/DialogMenuIcon/DialogMenuIcon.styled.js +1 -1
- package/dist/src/components/atoms/DialogMenuIcon/DialogMenuIcon.styled.ts +1 -1
- package/dist/src/components/atoms/Divider/Divider.js +2 -4
- package/dist/src/components/atoms/Divider/Divider.styled.js +6 -0
- package/dist/src/components/atoms/Divider/Divider.styled.ts +6 -0
- package/dist/src/components/atoms/Divider/Divider.tsx +10 -6
- package/dist/src/components/atoms/DocumentStatus/DocumentStatus.js +1 -5
- package/dist/src/components/atoms/DocumentStatus/DocumentStatus.styled.js +0 -14
- package/dist/src/components/atoms/DocumentStatus/DocumentStatus.styled.ts +0 -14
- package/dist/src/components/atoms/DocumentStatus/DocumentStatus.tsx +0 -9
- package/dist/src/components/atoms/DropdownInput/DropdownInput.d.ts +3 -0
- package/dist/src/components/atoms/DropdownInput/DropdownInput.js +26 -0
- package/dist/src/components/atoms/DropdownInput/DropdownInput.styled.d.ts +1 -0
- package/dist/src/components/atoms/DropdownInput/DropdownInput.styled.js +164 -0
- package/dist/src/components/atoms/DropdownInput/DropdownInput.styled.ts +165 -0
- package/dist/src/components/atoms/DropdownInput/DropdownInput.tsx +64 -0
- package/dist/src/components/atoms/DropdownInput/DropdownInputProps.types.d.ts +9 -0
- package/dist/src/components/atoms/DropdownInput/DropdownInputProps.types.js +2 -0
- package/dist/src/components/atoms/DropdownInput/DropdownInputProps.types.ts +11 -0
- package/dist/src/components/atoms/DropdownInput/index.d.ts +2 -0
- package/dist/src/components/atoms/DropdownInput/index.js +1 -0
- package/dist/src/components/atoms/DropdownInput/index.ts +2 -0
- package/dist/src/components/atoms/ExpertCard/ExpertCard.js +1 -1
- package/dist/src/components/atoms/ExpertCard/ExpertCard.styled.js +24 -25
- package/dist/src/components/atoms/ExpertCard/ExpertCard.styled.ts +24 -25
- package/dist/src/components/atoms/ExpertCard/ExpertCard.tsx +9 -8
- package/dist/src/components/atoms/FeatureRatafiaCard/FeatureRatafiaCard.js +1 -1
- package/dist/src/components/atoms/FeatureRatafiaCard/FeatureRatafiaCard.tsx +2 -2
- package/dist/src/components/atoms/FixedFooter/FixedFooter.d.ts +4 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooter.js +4 -0
- package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.js +1 -1
- package/dist/src/components/atoms/FixedFooter/FixedFooter.styled.ts +1 -1
- package/dist/src/components/atoms/FixedFooter/FixedFooter.tsx +4 -0
- package/dist/src/components/atoms/IconImage/IconImage.js +2 -2
- package/dist/src/components/atoms/IconImage/IconImage.tsx +7 -9
- package/dist/src/components/atoms/Logo/Logo.js +2 -2
- package/dist/src/components/atoms/Logo/Logo.tsx +3 -1
- package/dist/src/components/atoms/Logo/LogoProps.types.d.ts +1 -0
- package/dist/src/components/atoms/Logo/LogoProps.types.ts +1 -0
- package/dist/src/components/atoms/Logo/svg/lawdistrict-logo.svg +12 -11
- package/dist/src/components/atoms/Logo/svg/lawdistrict-white-logo.svg +12 -11
- package/dist/src/components/atoms/MenuItemsDeprecated/MenuItemsDeprecated.d.ts +4 -0
- package/dist/src/components/atoms/{MenuItems/MenuItems.js → MenuItemsDeprecated/MenuItemsDeprecated.js} +4 -4
- package/dist/src/components/atoms/MenuItemsDeprecated/MenuItemsDeprecated.styled.d.ts +1 -0
- package/dist/src/components/atoms/{MenuItems/MenuItems.styled.js → MenuItemsDeprecated/MenuItemsDeprecated.styled.js} +1 -1
- package/dist/src/components/atoms/{MenuItems/MenuItems.styled.ts → MenuItemsDeprecated/MenuItemsDeprecated.styled.ts} +1 -1
- package/dist/src/components/atoms/{MenuItems/MenuItems.tsx → MenuItemsDeprecated/MenuItemsDeprecated.tsx} +12 -6
- package/dist/src/components/atoms/{MenuItems/MenuItemProps.types.d.ts → MenuItemsDeprecated/MenuItemsDeprecatedProps.types.d.ts} +1 -1
- package/dist/src/components/atoms/{MenuItems/MenuItemProps.types.ts → MenuItemsDeprecated/MenuItemsDeprecatedProps.types.ts} +1 -1
- package/dist/src/components/atoms/MenuItemsDeprecated/index.d.ts +2 -0
- package/dist/src/components/atoms/MenuItemsDeprecated/index.js +1 -0
- package/dist/src/components/atoms/MenuItemsDeprecated/index.ts +2 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.d.ts +3 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.js +5 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.styled.d.ts +5 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.styled.js +8 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.styled.ts +13 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTrigger.tsx +11 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTriggerProps.d.ts +6 -0
- package/dist/src/components/atoms/MobileTrigger/MobileTriggerProps.ts +6 -0
- package/dist/src/components/atoms/MobileTrigger/index.d.ts +2 -0
- package/dist/src/components/atoms/MobileTrigger/index.js +2 -0
- package/dist/src/components/atoms/MobileTrigger/index.ts +2 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.d.ts +3 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.js +6 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.styled.d.ts +1 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.styled.js +17 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.styled.ts +18 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplay.tsx +15 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplayProps.d.ts +3 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplayProps.js +1 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/PhoneNumberDisplayProps.ts +3 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/index.d.ts +2 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/index.js +2 -0
- package/dist/src/components/atoms/PhoneNumberDisplay/index.ts +2 -0
- package/dist/src/components/atoms/PopularDocsItem/PopularDocsItem.styled.js +9 -0
- package/dist/src/components/atoms/PopularDocsItem/PopularDocsItem.styled.ts +9 -0
- package/dist/src/components/atoms/Radio/Radio.scss +2 -1
- package/dist/src/components/atoms/RatafiaLandingIcon/RatafiaLandingIcon.scss +2 -1
- package/dist/src/components/atoms/RatafiaResultCard/RatafiaResultCard.d.ts +4 -0
- package/dist/src/components/atoms/RatafiaResultCard/RatafiaResultCard.js +6 -0
- package/dist/src/components/atoms/RatafiaResultCard/RatafiaResultCard.styled.d.ts +1 -0
- package/dist/src/components/atoms/RatafiaResultCard/RatafiaResultCard.styled.js +39 -0
- package/dist/src/components/atoms/RatafiaResultCard/RatafiaResultCard.styled.ts +40 -0
- package/dist/src/components/atoms/RatafiaResultCard/RatafiaResultCard.tsx +18 -0
- package/dist/src/components/atoms/RatafiaResultCard/RatafiaResultCardProps.types.d.ts +5 -0
- package/dist/src/components/atoms/RatafiaResultCard/RatafiaResultCardProps.types.js +1 -0
- package/dist/src/components/atoms/RatafiaResultCard/RatafiaResultCardProps.types.ts +5 -0
- package/dist/src/components/atoms/RatafiaResultCard/index.d.ts +2 -0
- package/dist/src/components/atoms/RatafiaResultCard/index.js +1 -0
- package/dist/src/components/atoms/RatafiaResultCard/index.ts +2 -0
- package/dist/src/components/atoms/RatafiaResultTab/RatafiaResultTab.d.ts +4 -0
- package/dist/src/components/atoms/RatafiaResultTab/RatafiaResultTab.js +6 -0
- package/dist/src/components/atoms/RatafiaResultTab/RatafiaResultTab.styled.d.ts +1 -0
- package/dist/src/components/atoms/RatafiaResultTab/RatafiaResultTab.styled.js +38 -0
- package/dist/src/components/atoms/RatafiaResultTab/RatafiaResultTab.styled.ts +39 -0
- package/dist/src/components/atoms/RatafiaResultTab/RatafiaResultTab.tsx +23 -0
- package/dist/src/components/atoms/RatafiaResultTab/RatafiaResultTabProps.types.d.ts +9 -0
- package/dist/src/components/atoms/RatafiaResultTab/RatafiaResultTabProps.types.js +1 -0
- package/dist/src/components/atoms/RatafiaResultTab/RatafiaResultTabProps.types.ts +9 -0
- package/dist/src/components/atoms/RatafiaResultTab/index.d.ts +2 -0
- package/dist/src/components/atoms/RatafiaResultTab/index.js +1 -0
- package/dist/src/components/atoms/RatafiaResultTab/index.ts +2 -0
- package/dist/src/components/atoms/RatafiaReviewResult/RatafiaReviewResult.d.ts +4 -0
- package/dist/src/components/atoms/RatafiaReviewResult/RatafiaReviewResult.js +6 -0
- package/dist/src/components/atoms/RatafiaReviewResult/RatafiaReviewResult.styled.d.ts +1 -0
- package/dist/src/components/atoms/RatafiaReviewResult/RatafiaReviewResult.styled.js +55 -0
- package/dist/src/components/atoms/RatafiaReviewResult/RatafiaReviewResult.styled.ts +56 -0
- package/dist/src/components/atoms/RatafiaReviewResult/RatafiaReviewResult.tsx +59 -0
- package/dist/src/components/atoms/RatafiaReviewResult/RatafiaReviewResultProps.types.d.ts +15 -0
- package/dist/src/components/atoms/RatafiaReviewResult/RatafiaReviewResultProps.types.js +1 -0
- package/dist/src/components/atoms/RatafiaReviewResult/RatafiaReviewResultProps.types.ts +16 -0
- package/dist/src/components/atoms/RatafiaReviewResult/index.d.ts +2 -0
- package/dist/src/components/atoms/RatafiaReviewResult/index.js +1 -0
- package/dist/src/components/atoms/RatafiaReviewResult/index.ts +2 -0
- package/dist/src/components/atoms/SearchSelect/SearchSelect.js +9 -2
- package/dist/src/components/atoms/SearchSelect/SearchSelect.styled.js +1 -1
- package/dist/src/components/atoms/SearchSelect/SearchSelect.styled.ts +1 -1
- package/dist/src/components/atoms/SearchSelect/SearchSelect.tsx +9 -2
- package/dist/src/components/atoms/SidemenuTab/SidemenuTab.js +2 -2
- package/dist/src/components/atoms/SidemenuTab/SidemenuTab.tsx +2 -2
- package/dist/src/components/atoms/TextArea/TextArea.js +2 -2
- package/dist/src/components/atoms/TextArea/TextArea.tsx +3 -1
- package/dist/src/components/atoms/TextArea/TextAreaProps.types.d.ts +1 -0
- package/dist/src/components/atoms/TextArea/TextAreaProps.types.ts +1 -0
- package/dist/src/components/atoms/TopBar/TopBar.styled.js +49 -2
- package/dist/src/components/atoms/TopBar/TopBar.styled.ts +49 -2
- package/dist/src/components/atoms/TopBar/TopBar.tsx +1 -1
- package/dist/src/components/atoms/TrustPilot/TrustPilot.styled.js +2 -3
- package/dist/src/components/atoms/TrustPilot/TrustPilot.styled.ts +2 -3
- package/dist/src/components/atoms/Video/Video.d.ts +1 -1
- package/dist/src/components/atoms/Video/Video.js +2 -2
- package/dist/src/components/atoms/Video/Video.tsx +13 -2
- package/dist/src/components/atoms/Video/VideoProps.types.d.ts +2 -0
- package/dist/src/components/atoms/Video/VideoProps.types.ts +2 -0
- package/dist/src/components/atoms/index.d.ts +10 -3
- package/dist/src/components/atoms/index.js +10 -3
- package/dist/src/components/atoms/index.ts +10 -3
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/AllTypeDocumentsItemMenu.d.ts +3 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/AllTypeDocumentsItemMenu.js +6 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/AllTypeDocumentsItemMenu.styled.d.ts +1 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/AllTypeDocumentsItemMenu.styled.js +18 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/AllTypeDocumentsItemMenu.styled.ts +19 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/AllTypeDocumentsItemMenu.tsx +22 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/AllTypeDocumentsItemMenuProps.types.d.ts +8 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/AllTypeDocumentsItemMenuProps.types.js +1 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/AllTypeDocumentsItemMenuProps.types.ts +9 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/index.d.ts +2 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/index.js +1 -0
- package/dist/src/components/molecules/AllTypeDocumentsItemMenu/index.ts +2 -0
- package/dist/src/components/molecules/Article/Article.js +2 -2
- package/dist/src/components/molecules/Article/Article.styled.js +10 -2
- package/dist/src/components/molecules/Article/Article.styled.ts +10 -2
- package/dist/src/components/molecules/Article/Article.tsx +2 -7
- package/dist/src/components/molecules/Article/ArticleProps.types.d.ts +1 -1
- package/dist/src/components/molecules/Article/ArticleProps.types.ts +1 -1
- package/dist/src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardList.js +2 -2
- package/dist/src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardList.tsx +2 -2
- package/dist/src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardListProps.types.d.ts +2 -2
- package/dist/src/components/molecules/BenefitRatafiaCardList/BenefitRatafiaCardListProps.types.ts +2 -2
- package/dist/src/components/molecules/ContactCardList/ContactCardList.styled.js +1 -1
- package/dist/src/components/molecules/ContactCardList/ContactCardList.styled.ts +1 -1
- package/dist/src/components/molecules/ContactInfo/ContactInfo.d.ts +3 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.js +4 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.styled.d.ts +2 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.styled.js +49 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.styled.ts +51 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfo.tsx +18 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfoProps.types.d.ts +5 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfoProps.types.js +1 -0
- package/dist/src/components/molecules/ContactInfo/ContactInfoProps.types.ts +5 -0
- package/dist/src/components/molecules/ContactInfo/index.d.ts +2 -0
- package/dist/src/components/molecules/ContactInfo/index.js +1 -0
- package/dist/src/components/molecules/ContactInfo/index.ts +2 -0
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.d.ts +3 -0
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.js +6 -0
- package/dist/src/components/{organisms/AboutUsContent/AboutUsContent.styled.d.ts → molecules/ContactInfoBox/ContactInfoBox.styled.d.ts} +1 -1
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.styled.js +23 -0
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.styled.ts +24 -0
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBox.tsx +15 -0
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBoxProps.types.d.ts +4 -0
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBoxProps.types.js +1 -0
- package/dist/src/components/molecules/ContactInfoBox/ContactInfoBoxProps.types.ts +4 -0
- package/dist/src/components/molecules/ContactInfoBox/index.d.ts +2 -0
- package/dist/src/components/molecules/ContactInfoBox/index.js +1 -0
- package/dist/src/components/molecules/ContactInfoBox/index.ts +2 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.d.ts +3 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.js +6 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.styled.d.ts +1 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.styled.js +23 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.styled.ts +24 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobile.tsx +15 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobileProps.types.d.ts +4 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobileProps.types.js +1 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobileProps.types.ts +4 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/index.d.ts +2 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/index.js +1 -0
- package/dist/src/components/molecules/ContactInfoBoxMobile/index.ts +2 -0
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.d.ts +3 -0
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.js +19 -0
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.styled.d.ts +1 -0
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.styled.js +77 -0
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.styled.ts +78 -0
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCard.tsx +58 -0
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCardProps.d.ts +7 -0
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCardProps.js +1 -0
- package/dist/src/components/molecules/ContactInfoCard/ContactInfoCardProps.ts +8 -0
- package/dist/src/components/molecules/ContactInfoCard/index.d.ts +2 -0
- package/dist/src/components/molecules/ContactInfoCard/index.js +2 -0
- package/dist/src/components/molecules/ContactInfoCard/index.ts +2 -0
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBar.d.ts +8 -0
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBar.js +44 -0
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBar.styled.d.ts +1 -0
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBar.styled.js +48 -0
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBar.styled.ts +49 -0
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBar.tsx +77 -0
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBarProps.types.d.ts +37 -0
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBarProps.types.js +1 -0
- package/dist/src/components/molecules/DesktopSearchBar/DesktopSearchBarProps.types.ts +40 -0
- package/dist/src/components/molecules/DesktopSearchBar/index.d.ts +2 -0
- package/dist/src/components/molecules/DesktopSearchBar/index.js +1 -0
- package/dist/src/components/molecules/DesktopSearchBar/index.ts +2 -0
- package/dist/src/components/molecules/DocumentListMenuSection/DocumentListMenuSection.d.ts +3 -0
- package/dist/src/components/molecules/DocumentListMenuSection/DocumentListMenuSection.js +7 -0
- package/dist/src/components/molecules/DocumentListMenuSection/DocumentListMenuSection.styled.d.ts +1 -0
- package/dist/src/components/molecules/DocumentListMenuSection/DocumentListMenuSection.styled.js +20 -0
- package/dist/src/components/molecules/DocumentListMenuSection/DocumentListMenuSection.styled.ts +21 -0
- package/dist/src/components/molecules/DocumentListMenuSection/DocumentListMenuSection.tsx +35 -0
- package/dist/src/components/molecules/DocumentListMenuSection/DocumentListMenuSectionProps.types.d.ts +16 -0
- package/dist/src/components/molecules/DocumentListMenuSection/DocumentListMenuSectionProps.types.js +1 -0
- package/dist/src/components/molecules/DocumentListMenuSection/DocumentListMenuSectionProps.types.ts +18 -0
- package/dist/src/components/molecules/DocumentListMenuSection/index.d.ts +2 -0
- package/dist/src/components/molecules/DocumentListMenuSection/index.js +1 -0
- package/dist/src/components/molecules/DocumentListMenuSection/index.ts +2 -0
- package/dist/src/components/molecules/ExpertCardList/ExpertCardList.styled.js +2 -3
- package/dist/src/components/molecules/ExpertCardList/ExpertCardList.styled.ts +2 -3
- package/dist/src/components/molecules/FooterMenu/FooterMenu.d.ts +3 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.js +3 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.styled.d.ts +4 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.styled.js +31 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.styled.ts +35 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenu.tsx +22 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenuProps.types.d.ts +11 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenuProps.types.js +1 -0
- package/dist/src/components/molecules/FooterMenu/FooterMenuProps.types.ts +12 -0
- package/dist/src/components/molecules/FooterMenu/index.d.ts +2 -0
- package/dist/src/components/molecules/FooterMenu/index.js +1 -0
- package/dist/src/components/molecules/FooterMenu/index.ts +2 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.d.ts +3 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.js +5 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.styled.d.ts +4 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.styled.js +34 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.styled.ts +38 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelList.tsx +18 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelListProps.d.ts +9 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelListProps.js +1 -0
- package/dist/src/components/molecules/HelpPanelList/HelpPanelListProps.ts +10 -0
- package/dist/src/components/molecules/HelpPanelList/index.d.ts +2 -0
- package/dist/src/components/molecules/HelpPanelList/index.js +2 -0
- package/dist/src/components/molecules/HelpPanelList/index.ts +2 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.d.ts +3 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.js +5 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.styled.d.ts +3 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.styled.js +64 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.styled.ts +66 -0
- package/dist/src/components/molecules/HelpSection/HelpSection.tsx +18 -0
- package/dist/src/components/molecules/HelpSection/HelpSectionProps.d.ts +6 -0
- package/dist/src/components/molecules/HelpSection/HelpSectionProps.js +1 -0
- package/dist/src/components/molecules/HelpSection/HelpSectionProps.ts +7 -0
- package/dist/src/components/molecules/HelpSection/index.d.ts +2 -0
- package/dist/src/components/molecules/HelpSection/index.js +2 -0
- package/dist/src/components/molecules/HelpSection/index.ts +2 -0
- package/dist/src/components/molecules/InfoBarFooter/InfoBarFooter.d.ts +4 -0
- package/dist/src/components/molecules/InfoBarFooter/InfoBarFooter.js +8 -0
- package/dist/src/components/molecules/InfoBarFooter/InfoBarFooter.styled.d.ts +3 -0
- package/dist/src/components/molecules/InfoBarFooter/InfoBarFooter.styled.js +49 -0
- package/dist/src/components/molecules/InfoBarFooter/InfoBarFooter.styled.ts +52 -0
- package/dist/src/components/molecules/InfoBarFooter/InfoBarFooter.tsx +53 -0
- package/dist/src/components/molecules/InfoBarFooter/InfoBarFooterProps.types.d.ts +10 -0
- package/dist/src/components/molecules/InfoBarFooter/InfoBarFooterProps.types.js +1 -0
- package/dist/src/components/molecules/InfoBarFooter/InfoBarFooterProps.types.ts +10 -0
- package/dist/src/components/molecules/InfoBarFooter/index.d.ts +2 -0
- package/dist/src/components/molecules/InfoBarFooter/index.js +1 -0
- package/dist/src/components/molecules/InfoBarFooter/index.ts +2 -0
- package/dist/src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafia.styled.js +4 -2
- package/dist/src/components/molecules/KeyFactCardListRatafia/KeyFactCardListRatafia.styled.ts +4 -2
- package/dist/src/components/molecules/LawGeniusInfoCard/LawGeniusInfoCard.d.ts +3 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/LawGeniusInfoCard.js +5 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/LawGeniusInfoCard.styled.d.ts +1 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/LawGeniusInfoCard.styled.js +46 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/LawGeniusInfoCard.styled.ts +47 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/LawGeniusInfoCard.tsx +20 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/LawGeniusInfoCardProps.d.ts +5 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/LawGeniusInfoCardProps.js +1 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/LawGeniusInfoCardProps.ts +5 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/index.d.ts +2 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/index.js +2 -0
- package/dist/src/components/molecules/LawGeniusInfoCard/index.ts +2 -0
- package/dist/src/components/molecules/MenuItemsSection/MenuItemsSection.js +2 -2
- package/dist/src/components/molecules/MenuItemsSection/MenuItemsSection.tsx +2 -2
- package/dist/src/components/molecules/MenuItemsSection/MenuItemsSectionProps.types.d.ts +1 -1
- package/dist/src/components/molecules/MenuItemsSection/MenuItemsSectionProps.types.ts +1 -1
- package/dist/src/components/molecules/MenuSectionTitle/MenuSectionTitle.d.ts +3 -0
- package/dist/src/components/molecules/MenuSectionTitle/MenuSectionTitle.js +5 -0
- package/dist/src/components/molecules/MenuSectionTitle/MenuSectionTitle.styled.d.ts +1 -0
- package/dist/src/components/molecules/MenuSectionTitle/MenuSectionTitle.styled.js +26 -0
- package/dist/src/components/molecules/MenuSectionTitle/MenuSectionTitle.styled.ts +27 -0
- package/dist/src/components/molecules/MenuSectionTitle/MenuSectionTitle.tsx +17 -0
- package/dist/src/components/molecules/MenuSectionTitle/MenuSectionTitleProps.types.d.ts +4 -0
- package/dist/src/components/molecules/MenuSectionTitle/MenuSectionTitleProps.types.js +1 -0
- package/dist/src/components/molecules/MenuSectionTitle/MenuSectionTitleProps.types.ts +4 -0
- package/dist/src/components/molecules/MenuSectionTitle/index.d.ts +2 -0
- package/dist/src/components/molecules/MenuSectionTitle/index.js +1 -0
- package/dist/src/components/molecules/MenuSectionTitle/index.ts +2 -0
- package/dist/src/components/molecules/MidBannerRatafiaContent/MidBannerRatafiaContent.styled.js +6 -0
- package/dist/src/components/molecules/MidBannerRatafiaContent/MidBannerRatafiaContent.styled.ts +6 -0
- package/dist/src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSample.js +2 -2
- package/dist/src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSample.styled.js +11 -0
- package/dist/src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSample.styled.ts +11 -0
- package/dist/src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSample.tsx +28 -20
- package/dist/src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSampleProps.types.d.ts +4 -0
- package/dist/src/components/molecules/MidBannerRatafiaSample/MidBannerRatafiaSampleProps.types.ts +4 -0
- package/dist/src/components/molecules/MobileSearchBar/MobileSearchBar.d.ts +3 -0
- package/dist/src/components/molecules/MobileSearchBar/MobileSearchBar.js +38 -0
- package/dist/src/components/molecules/MobileSearchBar/MobileSearchBar.styled.d.ts +1 -0
- package/dist/src/components/molecules/MobileSearchBar/MobileSearchBar.styled.js +17 -0
- package/dist/src/components/molecules/MobileSearchBar/MobileSearchBar.styled.ts +18 -0
- package/dist/src/components/molecules/MobileSearchBar/MobileSearchBar.tsx +55 -0
- package/dist/src/components/molecules/MobileSearchBar/MobileSearchBarProps.types.d.ts +37 -0
- package/dist/src/components/molecules/MobileSearchBar/MobileSearchBarProps.types.js +1 -0
- package/dist/src/components/molecules/MobileSearchBar/MobileSearchBarProps.types.ts +40 -0
- package/dist/src/components/molecules/MobileSearchBar/index.d.ts +2 -0
- package/dist/src/components/molecules/MobileSearchBar/index.js +1 -0
- package/dist/src/components/molecules/MobileSearchBar/index.ts +2 -0
- package/dist/src/components/molecules/NavBarDropDown/NavBarDropDown.js +2 -2
- package/dist/src/components/molecules/NavBarDropDown/NavBarDropDown.tsx +3 -3
- package/dist/src/components/molecules/NavMobileContactBar/NavMobileContactBar.d.ts +4 -0
- package/dist/src/components/molecules/NavMobileContactBar/NavMobileContactBar.js +7 -0
- package/dist/src/components/molecules/NavMobileContactBar/NavMobileContactBar.styled.d.ts +1 -0
- package/dist/src/components/molecules/NavMobileContactBar/NavMobileContactBar.styled.js +34 -0
- package/dist/src/components/molecules/NavMobileContactBar/NavMobileContactBar.styled.ts +35 -0
- package/dist/src/components/molecules/NavMobileContactBar/NavMobileContactBar.tsx +23 -0
- package/dist/src/components/molecules/NavMobileContactBar/NavMobileContactBarProps.types.d.ts +4 -0
- package/dist/src/components/molecules/NavMobileContactBar/NavMobileContactBarProps.types.js +1 -0
- package/dist/src/components/molecules/NavMobileContactBar/NavMobileContactBarProps.types.ts +4 -0
- package/dist/src/components/molecules/NavMobileContactBar/index.d.ts +2 -0
- package/dist/src/components/molecules/NavMobileContactBar/index.js +1 -0
- package/dist/src/components/molecules/NavMobileContactBar/index.ts +2 -0
- package/dist/src/components/molecules/ProductListMenu/ProductListMenu.d.ts +3 -0
- package/dist/src/components/molecules/ProductListMenu/ProductListMenu.js +5 -0
- package/dist/src/components/molecules/ProductListMenu/ProductListMenu.styled.d.ts +1 -0
- package/dist/src/components/molecules/ProductListMenu/ProductListMenu.styled.js +18 -0
- package/dist/src/components/molecules/ProductListMenu/ProductListMenu.styled.ts +19 -0
- package/dist/src/components/molecules/ProductListMenu/ProductListMenu.tsx +25 -0
- package/dist/src/components/molecules/ProductListMenu/ProductListMenuProps.types.d.ts +8 -0
- package/dist/src/components/molecules/ProductListMenu/ProductListMenuProps.types.js +1 -0
- package/dist/src/components/molecules/ProductListMenu/ProductListMenuProps.types.ts +9 -0
- package/dist/src/components/molecules/ProductListMenu/index.d.ts +2 -0
- package/dist/src/components/molecules/ProductListMenu/index.js +1 -0
- package/dist/src/components/molecules/ProductListMenu/index.ts +2 -0
- package/dist/src/components/molecules/RatafiaResultCardList/RatafiaResultCardList.d.ts +4 -0
- package/dist/src/components/molecules/RatafiaResultCardList/RatafiaResultCardList.js +9 -0
- package/dist/src/components/molecules/RatafiaResultCardList/RatafiaResultCardList.styled.d.ts +1 -0
- package/dist/src/components/molecules/RatafiaResultCardList/RatafiaResultCardList.styled.js +24 -0
- package/dist/src/components/molecules/RatafiaResultCardList/RatafiaResultCardList.styled.ts +25 -0
- package/dist/src/components/molecules/RatafiaResultCardList/RatafiaResultCardList.tsx +19 -0
- package/dist/src/components/molecules/RatafiaResultCardList/RatafiaResultCardListProps.types.d.ts +4 -0
- package/dist/src/components/molecules/RatafiaResultCardList/RatafiaResultCardListProps.types.js +1 -0
- package/dist/src/components/molecules/RatafiaResultCardList/RatafiaResultCardListProps.types.ts +5 -0
- package/dist/src/components/molecules/RatafiaResultCardList/index.d.ts +2 -0
- package/dist/src/components/molecules/RatafiaResultCardList/index.js +1 -0
- package/dist/src/components/molecules/RatafiaResultCardList/index.ts +2 -0
- package/dist/src/components/molecules/RatafiaResultTabList/RatafiaResultTabList.d.ts +4 -0
- package/dist/src/components/molecules/RatafiaResultTabList/RatafiaResultTabList.js +9 -0
- package/dist/src/components/molecules/RatafiaResultTabList/RatafiaResultTabList.styled.d.ts +1 -0
- package/dist/src/components/molecules/RatafiaResultTabList/RatafiaResultTabList.styled.js +7 -0
- package/dist/src/components/molecules/RatafiaResultTabList/RatafiaResultTabList.styled.ts +8 -0
- package/dist/src/components/molecules/RatafiaResultTabList/RatafiaResultTabList.tsx +18 -0
- package/dist/src/components/molecules/RatafiaResultTabList/RatafiaResultTabListProps.types.d.ts +4 -0
- package/dist/src/components/molecules/RatafiaResultTabList/RatafiaResultTabListProps.types.js +1 -0
- package/dist/src/components/molecules/RatafiaResultTabList/RatafiaResultTabListProps.types.ts +5 -0
- package/dist/src/components/molecules/RatafiaResultTabList/index.d.ts +2 -0
- package/dist/src/components/molecules/RatafiaResultTabList/index.js +1 -0
- package/dist/src/components/molecules/RatafiaResultTabList/index.ts +2 -0
- package/dist/src/components/molecules/SearchBar/SearchBar.d.ts +3 -0
- package/dist/src/components/molecules/SearchBar/SearchBar.js +21 -0
- package/dist/src/components/molecules/SearchBar/SearchBar.styled.d.ts +1 -0
- package/dist/src/components/molecules/SearchBar/SearchBar.styled.js +11 -0
- package/dist/src/components/molecules/SearchBar/SearchBar.styled.ts +12 -0
- package/dist/src/components/molecules/SearchBar/SearchBar.tsx +42 -0
- package/dist/src/components/molecules/SearchBar/SearchBarProps.types.d.ts +37 -0
- package/dist/src/components/molecules/SearchBar/SearchBarProps.types.js +1 -0
- package/dist/src/components/molecules/SearchBar/SearchBarProps.types.ts +41 -0
- package/dist/src/components/molecules/SearchBar/index.d.ts +2 -0
- package/dist/src/components/molecules/SearchBar/index.js +1 -0
- package/dist/src/components/molecules/SearchBar/index.ts +2 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.d.ts +3 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.js +9 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.styled.d.ts +1 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.styled.js +5 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.styled.ts +6 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinks.tsx +21 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinksProps.types.d.ts +8 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinksProps.types.js +1 -0
- package/dist/src/components/molecules/SocialLinks/SocialLinksProps.types.ts +9 -0
- package/dist/src/components/molecules/SocialLinks/index.d.ts +2 -0
- package/dist/src/components/molecules/SocialLinks/index.js +1 -0
- package/dist/src/components/molecules/SocialLinks/index.ts +2 -0
- package/dist/src/components/molecules/SubscriptionCard/CardBody.d.ts +6 -0
- package/dist/src/components/molecules/SubscriptionCard/CardBody.js +6 -0
- package/dist/src/components/molecules/SubscriptionCard/CardBody.tsx +29 -0
- package/dist/src/components/molecules/SubscriptionCard/CardFooter.d.ts +8 -0
- package/dist/src/components/molecules/SubscriptionCard/CardFooter.js +3 -0
- package/dist/src/components/molecules/SubscriptionCard/CardFooter.tsx +23 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingCardHeader.d.ts +6 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingCardHeader.js +3 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingCardHeader.styled.d.ts +1 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingCardHeader.styled.js +30 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingCardHeader.styled.ts +31 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingCardHeader.tsx +14 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingSubscriptionCard.d.ts +4 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingSubscriptionCard.js +15 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingSubscriptionCard.tsx +38 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingSubscriptionCardProps.types.d.ts +20 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingSubscriptionCardProps.types.js +1 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingSubscriptionCardProps.types.ts +22 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingText.styled.d.ts +1 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingText.styled.js +10 -0
- package/dist/src/components/molecules/SubscriptionCard/PlanBoxPricingSubscriptionCard/PlanBoxPricingText.styled.ts +11 -0
- package/dist/src/components/molecules/SubscriptionCard/RatafiaSubscriptionCard/RatafiaCardHeader.d.ts +8 -0
- package/dist/src/components/molecules/SubscriptionCard/RatafiaSubscriptionCard/RatafiaCardHeader.js +4 -0
- package/dist/src/components/molecules/SubscriptionCard/RatafiaSubscriptionCard/RatafiaCardHeader.styled.d.ts +1 -0
- package/dist/src/components/molecules/SubscriptionCard/RatafiaSubscriptionCard/RatafiaCardHeader.styled.js +29 -0
- package/dist/src/components/molecules/SubscriptionCard/RatafiaSubscriptionCard/RatafiaCardHeader.styled.ts +30 -0
- package/dist/src/components/molecules/SubscriptionCard/RatafiaSubscriptionCard/RatafiaCardHeader.tsx +20 -0
- package/dist/src/components/molecules/{RatafiaSubscriptionCard → SubscriptionCard/RatafiaSubscriptionCard}/RatafiaSubscriptionCard.d.ts +2 -2
- package/dist/src/components/molecules/SubscriptionCard/RatafiaSubscriptionCard/RatafiaSubscriptionCard.js +14 -0
- package/dist/src/components/molecules/SubscriptionCard/RatafiaSubscriptionCard/RatafiaSubscriptionCard.tsx +34 -0
- package/dist/src/components/molecules/{RatafiaSubscriptionCard → SubscriptionCard/RatafiaSubscriptionCard}/RatafiaSubscriptionCardProps.types.d.ts +3 -3
- package/dist/src/components/molecules/SubscriptionCard/RatafiaSubscriptionCard/RatafiaSubscriptionCardProps.types.js +1 -0
- package/dist/src/components/molecules/{RatafiaSubscriptionCard → SubscriptionCard/RatafiaSubscriptionCard}/RatafiaSubscriptionCardProps.types.ts +3 -3
- package/dist/src/components/molecules/SubscriptionCard/SubscriptionCard.styled.d.ts +1 -0
- package/dist/src/components/molecules/{RatafiaSubscriptionCard/RatafiaSubscriptionCard.styled.js → SubscriptionCard/SubscriptionCard.styled.js} +13 -31
- package/dist/src/components/molecules/{RatafiaSubscriptionCard/RatafiaSubscriptionCard.styled.ts → SubscriptionCard/SubscriptionCard.styled.ts} +13 -31
- package/dist/src/components/molecules/SubscriptionCard/index.d.ts +4 -0
- package/dist/src/components/molecules/SubscriptionCard/index.js +2 -0
- package/dist/src/components/molecules/SubscriptionCard/index.ts +4 -0
- package/dist/src/components/molecules/TextInput/Input.d.ts +4 -1
- package/dist/src/components/molecules/TextInput/Input.js +23 -3
- package/dist/src/components/molecules/TextInput/Input.tsx +44 -3
- package/dist/src/components/molecules/TextInput/TextInput.js +5 -9
- package/dist/src/components/molecules/TextInput/TextInput.scss +72 -2
- package/dist/src/components/molecules/TextInput/TextInput.tsx +9 -5
- package/dist/src/components/molecules/TextInput/TextInputProps.types.d.ts +4 -1
- package/dist/src/components/molecules/TextInput/TextInputProps.types.ts +4 -1
- package/dist/src/components/molecules/TextInput/stories/TextInput.stories.tsx +55 -1
- package/dist/src/components/molecules/TooltipMenu/TooltipMenu.js +2 -2
- package/dist/src/components/molecules/TooltipMenu/TooltipMenu.tsx +2 -2
- package/dist/src/components/molecules/TrustworthyWebsites/TrustworthyWebsites.js +1 -1
- package/dist/src/components/molecules/TrustworthyWebsites/TrustworthyWebsites.styled.js +20 -3
- package/dist/src/components/molecules/TrustworthyWebsites/TrustworthyWebsites.styled.ts +20 -3
- package/dist/src/components/molecules/TrustworthyWebsites/TrustworthyWebsites.tsx +3 -1
- package/dist/src/components/molecules/TrustworthyWebsites/TrustworthyWebsitesProps.types.d.ts +1 -0
- package/dist/src/components/molecules/TrustworthyWebsites/TrustworthyWebsitesProps.types.ts +1 -0
- package/dist/src/components/molecules/index.d.ts +16 -1
- package/dist/src/components/molecules/index.js +16 -1
- package/dist/src/components/molecules/index.ts +16 -1
- package/dist/src/components/organisms/AsSeeInContent/AsSeeInContent.styled.js +7 -0
- package/dist/src/components/organisms/AsSeeInContent/AsSeeInContent.styled.ts +7 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.d.ts +3 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.js +7 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.styled.d.ts +6 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.styled.js +35 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.styled.ts +41 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooter.tsx +51 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooterProps.types.d.ts +9 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooterProps.types.js +1 -0
- package/dist/src/components/organisms/BottomFooter/BottomFooterProps.types.ts +10 -0
- package/dist/src/components/organisms/BottomFooter/index.d.ts +2 -0
- package/dist/src/components/organisms/BottomFooter/index.js +1 -0
- package/dist/src/components/organisms/BottomFooter/index.ts +2 -0
- package/dist/src/components/organisms/ContactContent/ContactContent.js +1 -1
- package/dist/src/components/organisms/ContactContent/ContactContent.styled.js +27 -10
- package/dist/src/components/organisms/ContactContent/ContactContent.styled.ts +27 -10
- package/dist/src/components/organisms/ContactContent/ContactContent.tsx +7 -3
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotron.js +3 -3
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotron.styled.js +0 -1
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotron.styled.ts +0 -1
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotron.tsx +4 -6
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotronProps.types.d.ts +2 -3
- package/dist/src/components/organisms/ContactJumbotron/ContactJumbotronProps.types.ts +2 -4
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.d.ts +3 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.js +7 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.styled.d.ts +1 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.styled.js +16 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.styled.ts +17 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenu.tsx +15 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenuProps.d.ts +7 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenuProps.js +1 -0
- package/dist/src/components/organisms/DesktopMenu/DesktopMenuProps.ts +8 -0
- package/dist/src/components/organisms/DesktopMenu/index.d.ts +2 -0
- package/dist/src/components/organisms/DesktopMenu/index.js +2 -0
- package/dist/src/components/organisms/DesktopMenu/index.ts +2 -0
- package/dist/src/components/organisms/DocumentListMenu/DocumentListMenu.d.ts +3 -0
- package/dist/src/components/organisms/DocumentListMenu/DocumentListMenu.js +7 -0
- package/dist/src/components/organisms/DocumentListMenu/DocumentListMenu.styled.d.ts +1 -0
- package/dist/src/components/organisms/DocumentListMenu/DocumentListMenu.styled.js +67 -0
- package/dist/src/components/organisms/DocumentListMenu/DocumentListMenu.styled.ts +68 -0
- package/dist/src/components/organisms/DocumentListMenu/DocumentListMenu.tsx +47 -0
- package/dist/src/components/organisms/DocumentListMenu/DocumentListMenuProps.types.d.ts +21 -0
- package/dist/src/components/organisms/DocumentListMenu/DocumentListMenuProps.types.js +1 -0
- package/dist/src/components/organisms/DocumentListMenu/DocumentListMenuProps.types.ts +24 -0
- package/dist/src/components/organisms/DocumentListMenu/index.d.ts +2 -0
- package/dist/src/components/organisms/DocumentListMenu/index.js +1 -0
- package/dist/src/components/organisms/DocumentListMenu/index.ts +2 -0
- package/dist/src/components/organisms/DocumentMainMenu/DocumentMainMenu.d.ts +3 -0
- package/dist/src/components/organisms/DocumentMainMenu/DocumentMainMenu.js +11 -0
- package/dist/src/components/organisms/DocumentMainMenu/DocumentMainMenu.styled.d.ts +1 -0
- package/dist/src/components/organisms/DocumentMainMenu/DocumentMainMenu.styled.js +94 -0
- package/dist/src/components/organisms/DocumentMainMenu/DocumentMainMenu.styled.ts +95 -0
- package/dist/src/components/organisms/DocumentMainMenu/DocumentMainMenu.tsx +59 -0
- package/dist/src/components/organisms/DocumentMainMenu/DocumentMainMenuProps.types.d.ts +22 -0
- package/dist/src/components/organisms/DocumentMainMenu/DocumentMainMenuProps.types.js +1 -0
- package/dist/src/components/organisms/DocumentMainMenu/DocumentMainMenuProps.types.ts +25 -0
- package/dist/src/components/organisms/DocumentMainMenu/index.d.ts +2 -0
- package/dist/src/components/organisms/DocumentMainMenu/index.js +1 -0
- package/dist/src/components/organisms/DocumentMainMenu/index.ts +2 -0
- package/dist/src/components/organisms/DocumentSubMenu/DocumentSubMenu.d.ts +4 -0
- package/dist/src/components/organisms/DocumentSubMenu/DocumentSubMenu.js +7 -0
- package/dist/src/components/organisms/DocumentSubMenu/DocumentSubMenu.styled.d.ts +1 -0
- package/dist/src/components/organisms/DocumentSubMenu/DocumentSubMenu.styled.js +27 -0
- package/dist/src/components/organisms/DocumentSubMenu/DocumentSubMenu.styled.ts +28 -0
- package/dist/src/components/organisms/DocumentSubMenu/DocumentSubMenu.tsx +21 -0
- package/dist/src/components/organisms/DocumentSubMenu/DocumentSubMenuProps.types.d.ts +7 -0
- package/dist/src/components/organisms/DocumentSubMenu/DocumentSubMenuProps.types.js +1 -0
- package/dist/src/components/organisms/DocumentSubMenu/DocumentSubMenuProps.types.ts +8 -0
- package/dist/src/components/organisms/DocumentSubMenu/index.d.ts +2 -0
- package/dist/src/components/organisms/DocumentSubMenu/index.js +1 -0
- package/dist/src/components/organisms/DocumentSubMenu/index.ts +2 -0
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.js +3 -3
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.styled.js +83 -35
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.styled.ts +83 -35
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.tsx +28 -5
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.d.ts +7 -1
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContentProps.types.ts +8 -1
- package/dist/src/components/organisms/HeroContent/HeroContent.d.ts +4 -0
- package/dist/src/components/organisms/HeroContent/HeroContent.js +7 -0
- package/dist/src/components/organisms/HeroContent/HeroContent.styled.d.ts +1 -0
- package/dist/src/components/organisms/{AboutUsContent/AboutUsContent.styled.js → HeroContent/HeroContent.styled.js} +3 -3
- package/dist/src/components/organisms/{AboutUsContent/AboutUsContent.styled.ts → HeroContent/HeroContent.styled.ts} +3 -3
- package/dist/src/components/organisms/HeroContent/HeroContent.tsx +23 -0
- package/dist/src/components/organisms/{AboutUsContent/AboutUsContentProps.types.d.ts → HeroContent/HeroContentPropsProps.types.d.ts} +1 -1
- package/dist/src/components/organisms/HeroContent/HeroContentPropsProps.types.js +1 -0
- package/dist/src/components/organisms/{AboutUsContent/AboutUsContentProps.types.ts → HeroContent/HeroContentPropsProps.types.ts} +1 -1
- package/dist/src/components/organisms/HeroContent/index.d.ts +2 -0
- package/dist/src/components/organisms/HeroContent/index.js +1 -0
- package/dist/src/components/organisms/HeroContent/index.ts +2 -0
- package/dist/src/components/organisms/HowWeHelp/HowWeHelp.d.ts +4 -0
- package/dist/src/components/organisms/HowWeHelp/HowWeHelp.js +7 -0
- package/dist/src/components/organisms/HowWeHelp/HowWeHelp.styled.d.ts +1 -0
- package/dist/src/components/organisms/HowWeHelp/HowWeHelp.styled.js +95 -0
- package/dist/src/components/organisms/HowWeHelp/HowWeHelp.styled.ts +96 -0
- package/dist/src/components/organisms/HowWeHelp/HowWeHelp.tsx +28 -0
- package/dist/src/components/organisms/HowWeHelp/HowWeHelpProps.types.d.ts +7 -0
- package/dist/src/components/organisms/HowWeHelp/HowWeHelpProps.types.js +1 -0
- package/dist/src/components/organisms/HowWeHelp/HowWeHelpProps.types.ts +8 -0
- package/dist/src/components/organisms/HowWeHelp/index.d.ts +2 -0
- package/dist/src/components/organisms/HowWeHelp/index.js +1 -0
- package/dist/src/components/organisms/HowWeHelp/index.ts +2 -0
- package/dist/src/components/organisms/LayoutRatafia/LayoutRatafia.styled.js +2 -1
- package/dist/src/components/organisms/LayoutRatafia/LayoutRatafia.styled.ts +2 -1
- package/dist/src/components/organisms/MenuItems/MenuItems.d.ts +3 -0
- package/dist/src/components/organisms/MenuItems/MenuItems.js +10 -0
- package/dist/src/components/{atoms → organisms}/MenuItems/MenuItems.styled.d.ts +1 -1
- package/dist/src/components/organisms/MenuItems/MenuItems.styled.js +488 -0
- package/dist/src/components/organisms/MenuItems/MenuItems.styled.ts +492 -0
- package/dist/src/components/organisms/MenuItems/MenuItems.tsx +81 -0
- package/dist/src/components/organisms/MenuItems/MenuItemsProps.types.d.ts +44 -0
- package/dist/src/components/organisms/MenuItems/MenuItemsProps.types.js +1 -0
- package/dist/src/components/organisms/MenuItems/MenuItemsProps.types.ts +45 -0
- package/dist/src/components/organisms/MenuItems/index.d.ts +2 -0
- package/dist/src/components/organisms/MenuItems/index.js +1 -0
- package/dist/src/components/organisms/MenuItems/index.ts +2 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.d.ts +3 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.js +8 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.styled.d.ts +7 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.styled.js +23 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.styled.ts +30 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenu.tsx +53 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenuProps.d.ts +16 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenuProps.js +1 -0
- package/dist/src/components/organisms/MobileMenu/MobileMenuProps.ts +18 -0
- package/dist/src/components/organisms/MobileMenu/index.d.ts +2 -0
- package/dist/src/components/organisms/MobileMenu/index.js +2 -0
- package/dist/src/components/organisms/MobileMenu/index.ts +2 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.d.ts +3 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.js +3 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.styled.d.ts +8 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.styled.js +27 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.styled.ts +35 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanel.tsx +12 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanelProps.d.ts +7 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanelProps.js +1 -0
- package/dist/src/components/organisms/MobilePanel/MobilePanelProps.ts +7 -0
- package/dist/src/components/organisms/MobilePanel/index.d.ts +2 -0
- package/dist/src/components/organisms/MobilePanel/index.js +2 -0
- package/dist/src/components/organisms/MobilePanel/index.ts +2 -0
- package/dist/src/components/organisms/NavMenu/NavMenu.d.ts +3 -0
- package/dist/src/components/organisms/NavMenu/NavMenu.js +10 -0
- package/dist/src/components/organisms/NavMenu/NavMenu.styled.d.ts +1 -0
- package/dist/src/components/organisms/NavMenu/NavMenu.styled.js +673 -0
- package/dist/src/components/organisms/NavMenu/NavMenu.styled.ts +677 -0
- package/dist/src/components/organisms/NavMenu/NavMenu.tsx +115 -0
- package/dist/src/components/organisms/NavMenu/NavMenuProps.types.d.ts +79 -0
- package/dist/src/components/organisms/NavMenu/NavMenuProps.types.js +1 -0
- package/dist/src/components/organisms/NavMenu/NavMenuProps.types.ts +81 -0
- package/dist/src/components/organisms/NavMenu/index.d.ts +2 -0
- package/dist/src/components/organisms/NavMenu/index.js +1 -0
- package/dist/src/components/organisms/NavMenu/index.ts +2 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/RatafiaLoadingResultContent.d.ts +4 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/RatafiaLoadingResultContent.js +6 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/RatafiaLoadingResultContent.styled.d.ts +1 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/RatafiaLoadingResultContent.styled.js +143 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/RatafiaLoadingResultContent.styled.ts +144 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/RatafiaLoadingResultContent.tsx +48 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/RatafiaLoadingResultContentProps.types.d.ts +7 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/RatafiaLoadingResultContentProps.types.js +1 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/RatafiaLoadingResultContentProps.types.ts +7 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/index.d.ts +2 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/index.js +1 -0
- package/dist/src/components/organisms/RatafiaLoadingResultContent/index.ts +2 -0
- package/dist/src/components/organisms/RatafiaResultContent/RatafiaResultContent.d.ts +4 -0
- package/dist/src/components/organisms/RatafiaResultContent/RatafiaResultContent.js +9 -0
- package/dist/src/components/organisms/RatafiaResultContent/RatafiaResultContent.styled.d.ts +1 -0
- package/dist/src/components/organisms/RatafiaResultContent/RatafiaResultContent.styled.js +26 -0
- package/dist/src/components/organisms/RatafiaResultContent/RatafiaResultContent.styled.ts +27 -0
- package/dist/src/components/organisms/RatafiaResultContent/RatafiaResultContent.tsx +26 -0
- package/dist/src/components/organisms/RatafiaResultContent/RatafiaResultContentProps.types.d.ts +13 -0
- package/dist/src/components/organisms/RatafiaResultContent/RatafiaResultContentProps.types.js +1 -0
- package/dist/src/components/organisms/RatafiaResultContent/RatafiaResultContentProps.types.ts +16 -0
- package/dist/src/components/organisms/RatafiaResultContent/index.d.ts +3 -0
- package/dist/src/components/organisms/RatafiaResultContent/index.js +1 -0
- package/dist/src/components/organisms/RatafiaResultContent/index.ts +3 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.d.ts +3 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.js +7 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.styled.d.ts +2 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.styled.js +31 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.styled.ts +33 -0
- package/dist/src/components/organisms/TopFooter/TopFooter.tsx +20 -0
- package/dist/src/components/organisms/TopFooter/TopFooterProps.types.d.ts +7 -0
- package/dist/src/components/organisms/TopFooter/TopFooterProps.types.js +1 -0
- package/dist/src/components/organisms/TopFooter/TopFooterProps.types.ts +8 -0
- package/dist/src/components/organisms/TopFooter/index.d.ts +2 -0
- package/dist/src/components/organisms/TopFooter/index.js +1 -0
- package/dist/src/components/organisms/TopFooter/index.ts +2 -0
- package/dist/src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContent.js +5 -2
- package/dist/src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContent.styled.js +35 -2
- package/dist/src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContent.styled.ts +35 -2
- package/dist/src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContent.tsx +7 -2
- package/dist/src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContentProps.types.d.ts +4 -1
- package/dist/src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContentProps.types.js +2 -0
- package/dist/src/components/organisms/TryOurFreeLegalBlogsContent/TryOurFreeLegalBlogsContentProps.types.ts +4 -1
- package/dist/src/components/organisms/VisibleEnvVariables/VisibleEnvVariables.d.ts +4 -0
- package/dist/src/components/organisms/VisibleEnvVariables/VisibleEnvVariables.js +6 -0
- package/dist/src/components/organisms/VisibleEnvVariables/VisibleEnvVariables.styled.d.ts +1 -0
- package/dist/src/components/organisms/VisibleEnvVariables/VisibleEnvVariables.styled.js +13 -0
- package/dist/src/components/organisms/VisibleEnvVariables/VisibleEnvVariables.styled.ts +14 -0
- package/dist/src/components/organisms/VisibleEnvVariables/VisibleEnvVariables.tsx +18 -0
- package/dist/src/components/organisms/VisibleEnvVariables/VisibleEnvVariablesProps.types.d.ts +3 -0
- package/dist/src/components/organisms/VisibleEnvVariables/VisibleEnvVariablesProps.types.js +1 -0
- package/dist/src/components/organisms/VisibleEnvVariables/VisibleEnvVariablesProps.types.ts +3 -0
- package/dist/src/components/organisms/VisibleEnvVariables/index.d.ts +2 -0
- package/dist/src/components/organisms/VisibleEnvVariables/index.js +1 -0
- package/dist/src/components/organisms/VisibleEnvVariables/index.ts +2 -0
- package/dist/src/components/organisms/index.d.ts +14 -1
- package/dist/src/components/organisms/index.js +14 -1
- package/dist/src/components/organisms/index.ts +14 -1
- package/dist/src/components/pages/AboutUsPage/AboutUsPage.js +4 -3
- package/dist/src/components/pages/AboutUsPage/AboutUsPage.tsx +10 -2
- package/dist/src/components/pages/AboutUsPage/AboutUsPageProps.d.ts +6 -2
- package/dist/src/components/pages/AboutUsPage/AboutUsPageProps.ts +7 -2
- package/dist/src/components/pages/ContactUsPage/ContactUsPage.js +3 -3
- package/dist/src/components/pages/ContactUsPage/ContactUsPage.tsx +3 -3
- package/dist/src/components/pages/ContactUsPage/ContactUsPageProps.d.ts +2 -2
- package/dist/src/components/pages/ContactUsPage/ContactUsPageProps.ts +2 -2
- package/dist/src/components/pages/HowItWorksPage/HowItWorksPage.d.ts +3 -0
- package/dist/src/components/pages/HowItWorksPage/HowItWorksPage.js +5 -0
- package/dist/src/components/pages/HowItWorksPage/HowItWorksPage.tsx +26 -0
- package/dist/src/components/pages/HowItWorksPage/HowItWorksPageProps.d.ts +10 -0
- package/dist/src/components/pages/HowItWorksPage/HowItWorksPageProps.js +1 -0
- package/dist/src/components/pages/HowItWorksPage/HowItWorksPageProps.ts +16 -0
- package/dist/src/components/pages/HowItWorksPage/index.d.ts +2 -0
- package/dist/src/components/pages/HowItWorksPage/index.js +2 -0
- package/dist/src/components/pages/HowItWorksPage/index.ts +2 -0
- package/dist/src/components/pages/PricingPage/PricingPage.d.ts +3 -0
- package/dist/src/components/pages/PricingPage/PricingPage.js +10 -0
- package/dist/src/components/pages/PricingPage/PricingPage.styled.d.ts +1 -0
- package/dist/src/components/pages/PricingPage/PricingPage.styled.js +130 -0
- package/dist/src/components/pages/PricingPage/PricingPage.styled.ts +131 -0
- package/dist/src/components/pages/PricingPage/PricingPage.tsx +53 -0
- package/dist/src/components/pages/PricingPage/PricingPageProps.d.ts +28 -0
- package/dist/src/components/pages/PricingPage/PricingPageProps.js +1 -0
- package/dist/src/components/pages/PricingPage/PricingPageProps.ts +33 -0
- package/dist/src/components/pages/PricingPage/index.d.ts +2 -0
- package/dist/src/components/pages/PricingPage/index.js +2 -0
- package/dist/src/components/pages/PricingPage/index.ts +2 -0
- package/dist/src/components/pages/RatafiaResultPage/RatafiaResultPage.d.ts +4 -0
- package/dist/src/components/pages/RatafiaResultPage/RatafiaResultPage.js +15 -0
- package/dist/src/components/pages/RatafiaResultPage/RatafiaResultPage.styled.d.ts +1 -0
- package/dist/src/components/pages/RatafiaResultPage/RatafiaResultPage.styled.js +23 -0
- package/dist/src/components/pages/RatafiaResultPage/RatafiaResultPage.styled.ts +24 -0
- package/dist/src/components/pages/RatafiaResultPage/RatafiaResultPage.tsx +76 -0
- package/dist/src/components/pages/RatafiaResultPage/RatafiaResultPageProps.types.d.ts +20 -0
- package/dist/src/components/pages/RatafiaResultPage/RatafiaResultPageProps.types.js +1 -0
- package/dist/src/components/pages/RatafiaResultPage/RatafiaResultPageProps.types.ts +22 -0
- package/dist/src/components/pages/RatafiaResultPage/index.d.ts +2 -0
- package/dist/src/components/pages/RatafiaResultPage/index.js +1 -0
- package/dist/src/components/pages/RatafiaResultPage/index.ts +2 -0
- package/dist/src/components/pages/index.d.ts +3 -1
- package/dist/src/components/pages/index.js +3 -1
- package/dist/src/components/pages/index.ts +3 -1
- package/dist/src/components/sections/AppHeader/AppHeader.d.ts +4 -0
- package/dist/src/components/sections/AppHeader/AppHeader.js +8 -0
- package/dist/src/components/sections/AppHeader/AppHeader.scss +35 -0
- package/dist/src/components/sections/AppHeader/AppHeader.styled.d.ts +2 -0
- package/dist/src/components/sections/AppHeader/AppHeader.styled.js +35 -0
- package/dist/src/components/sections/AppHeader/AppHeader.styled.ts +36 -0
- package/dist/src/components/sections/AppHeader/AppHeader.tsx +58 -0
- package/dist/src/components/sections/AppHeader/AppHeaderProps.d.ts +26 -0
- package/dist/src/components/sections/AppHeader/AppHeaderProps.js +1 -0
- package/dist/src/components/sections/AppHeader/AppHeaderProps.ts +27 -0
- package/dist/src/components/sections/AppHeader/index.d.ts +2 -0
- package/dist/src/components/sections/AppHeader/index.js +2 -0
- package/dist/src/components/sections/AppHeader/index.ts +2 -0
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.js +3 -3
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.js +10 -17
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.ts +10 -17
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.tsx +2 -9
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.d.ts +0 -4
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.ts +0 -4
- package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSectionProps.types.d.ts +2 -2
- package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSectionProps.types.ts +2 -2
- package/dist/src/components/sections/CardBoxSection/CardBoxSection.d.ts +4 -0
- package/dist/src/components/sections/CardBoxSection/CardBoxSection.js +9 -0
- package/dist/src/components/sections/CardBoxSection/CardBoxSection.styled.d.ts +2 -0
- package/dist/src/components/sections/CardBoxSection/CardBoxSection.styled.js +33 -0
- package/dist/src/components/sections/CardBoxSection/CardBoxSection.styled.ts +35 -0
- package/dist/src/components/sections/CardBoxSection/CardBoxSection.tsx +23 -0
- package/dist/src/components/sections/CardBoxSection/CardBoxSectionProps.d.ts +4 -0
- package/dist/src/components/sections/CardBoxSection/CardBoxSectionProps.js +1 -0
- package/dist/src/components/sections/CardBoxSection/CardBoxSectionProps.ts +5 -0
- package/dist/src/components/sections/CardBoxSection/index.d.ts +2 -0
- package/dist/src/components/sections/CardBoxSection/index.js +1 -0
- package/dist/src/components/sections/CardBoxSection/index.ts +2 -0
- package/dist/src/components/sections/CardStorySection/CardStorySection.styled.js +2 -1
- package/dist/src/components/sections/CardStorySection/CardStorySection.styled.ts +2 -1
- package/dist/src/components/sections/ContactSection/ContactSection.styled.js +2 -0
- package/dist/src/components/sections/ContactSection/ContactSection.styled.ts +2 -0
- package/dist/src/components/sections/ExpertsSection/ExpertsSection.js +2 -2
- package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.js +14 -5
- package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.ts +14 -5
- package/dist/src/components/sections/ExpertsSection/ExpertsSection.tsx +2 -1
- package/dist/src/components/sections/ExpertsSection/ExpertsSectionProps.types.d.ts +2 -0
- package/dist/src/components/sections/ExpertsSection/ExpertsSectionProps.types.ts +2 -0
- package/dist/src/components/sections/FaqSection/FaqSection.js +1 -1
- package/dist/src/components/sections/FaqSection/FaqSection.tsx +1 -3
- package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.js +2 -1
- package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.ts +2 -1
- package/dist/src/components/sections/Footer/Footer.d.ts +3 -0
- package/dist/src/components/sections/Footer/Footer.js +7 -0
- package/dist/src/components/sections/Footer/Footer.mocks.d.ts +10 -0
- package/dist/src/components/sections/Footer/Footer.mocks.js +65 -0
- package/dist/src/components/sections/Footer/Footer.mocks.ts +77 -0
- package/dist/src/components/sections/Footer/Footer.styled.d.ts +1 -0
- package/dist/src/components/sections/Footer/Footer.styled.js +9 -0
- package/dist/src/components/sections/Footer/Footer.styled.ts +10 -0
- package/dist/src/components/sections/Footer/Footer.tsx +14 -0
- package/dist/src/components/sections/Footer/FooterProps.types.d.ts +6 -0
- package/dist/src/components/sections/Footer/FooterProps.types.js +1 -0
- package/dist/src/components/sections/Footer/FooterProps.types.ts +7 -0
- package/dist/src/components/sections/Footer/index.d.ts +8 -0
- package/dist/src/components/sections/Footer/index.js +1 -0
- package/dist/src/components/sections/Footer/index.ts +8 -0
- package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.js +1 -1
- package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.tsx +5 -0
- package/dist/src/components/sections/Header/Header.d.ts +4 -0
- package/dist/src/components/sections/Header/Header.js +11 -0
- package/dist/src/components/sections/Header/Header.styled.d.ts +1 -0
- package/dist/src/components/sections/Header/Header.styled.js +142 -0
- package/dist/src/components/sections/Header/Header.styled.ts +143 -0
- package/dist/src/components/sections/Header/Header.tsx +28 -0
- package/dist/src/components/sections/Header/HeaderProps.types.d.ts +95 -0
- package/dist/src/components/sections/Header/HeaderProps.types.js +1 -0
- package/dist/src/components/sections/Header/HeaderProps.types.ts +99 -0
- package/dist/src/components/sections/Header/index.d.ts +2 -0
- package/dist/src/components/sections/Header/index.js +1 -0
- package/dist/src/components/sections/Header/index.ts +2 -0
- package/dist/src/components/sections/HeroSection/HeroSection.d.ts +4 -0
- package/dist/src/components/sections/HeroSection/HeroSection.js +7 -0
- package/dist/src/components/sections/HeroSection/HeroSection.tsx +24 -0
- package/dist/src/components/sections/HeroSection/HeroSectionProps.types.d.ts +6 -0
- package/dist/src/components/sections/HeroSection/HeroSectionProps.types.js +1 -0
- package/dist/src/components/sections/HeroSection/HeroSectionProps.types.ts +7 -0
- package/dist/src/components/sections/HeroSection/HeroSectionStyled.styled.d.ts +1 -0
- package/dist/src/components/sections/{AboutUsSection/AboutUsSection.styled.js → HeroSection/HeroSectionStyled.styled.js} +2 -2
- package/dist/src/components/sections/{AboutUsSection/AboutUsSection.styled.ts → HeroSection/HeroSectionStyled.styled.ts} +2 -2
- package/dist/src/components/sections/HeroSection/index.d.ts +2 -0
- package/dist/src/components/sections/HeroSection/index.js +1 -0
- package/dist/src/components/sections/HeroSection/index.ts +2 -0
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.js +2 -3
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.js +12 -8
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.ts +12 -8
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.tsx +3 -10
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSectionProps.types.d.ts +1 -1
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSectionProps.types.ts +1 -1
- package/dist/src/components/sections/LawGeniusCardsSection/LawGeniusCardsSection.d.ts +4 -0
- package/dist/src/components/sections/LawGeniusCardsSection/LawGeniusCardsSection.js +12 -0
- package/dist/src/components/sections/LawGeniusCardsSection/LawGeniusCardsSection.styled.d.ts +1 -0
- package/dist/src/components/sections/LawGeniusCardsSection/LawGeniusCardsSection.styled.js +118 -0
- package/dist/src/components/sections/LawGeniusCardsSection/LawGeniusCardsSection.styled.ts +119 -0
- package/dist/src/components/sections/LawGeniusCardsSection/LawGeniusCardsSection.tsx +70 -0
- package/dist/src/components/sections/LawGeniusCardsSection/LawGeniusCardsSectionProps.types.d.ts +15 -0
- package/dist/src/components/sections/LawGeniusCardsSection/LawGeniusCardsSectionProps.types.js +1 -0
- package/dist/src/components/sections/LawGeniusCardsSection/LawGeniusCardsSectionProps.types.ts +16 -0
- package/dist/src/components/sections/LawGeniusCardsSection/index.d.ts +2 -0
- package/dist/src/components/sections/LawGeniusCardsSection/index.js +1 -0
- package/dist/src/components/sections/LawGeniusCardsSection/index.ts +2 -0
- package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.js +1 -1
- package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.ts +1 -1
- package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.js +6 -4
- package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.js +65 -0
- package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.ts +65 -0
- package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.tsx +16 -4
- package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSectionProps.types.d.ts +4 -1
- package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSectionProps.types.ts +4 -1
- package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.js +11 -7
- package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.ts +11 -7
- package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.tsx +0 -2
- package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSectionProps.types.d.ts +2 -2
- package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSectionProps.types.ts +2 -2
- package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.js +2 -2
- package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.tsx +9 -2
- package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSectionProps.types.d.ts +1 -0
- package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSectionProps.types.ts +1 -0
- package/dist/src/components/sections/TryNowSection/TryNowSection.d.ts +3 -0
- package/dist/src/components/sections/TryNowSection/TryNowSection.js +6 -0
- package/dist/src/components/sections/TryNowSection/TryNowSection.styled.d.ts +1 -0
- package/dist/src/components/sections/TryNowSection/TryNowSection.styled.js +190 -0
- package/dist/src/components/sections/TryNowSection/TryNowSection.styled.ts +191 -0
- package/dist/src/components/sections/TryNowSection/TryNowSection.tsx +27 -0
- package/dist/src/components/sections/TryNowSection/TryNowSectionProps.d.ts +8 -0
- package/dist/src/components/sections/TryNowSection/TryNowSectionProps.js +1 -0
- package/dist/src/components/sections/TryNowSection/TryNowSectionProps.ts +9 -0
- package/dist/src/components/sections/TryNowSection/index.d.ts +2 -0
- package/dist/src/components/sections/TryNowSection/index.js +1 -0
- package/dist/src/components/sections/TryNowSection/index.ts +2 -0
- package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.js +9 -1
- package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.js +30 -0
- package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.ts +30 -0
- package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.tsx +11 -1
- package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.js +6 -0
- package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.ts +6 -0
- package/dist/src/components/sections/index.d.ts +9 -1
- package/dist/src/components/sections/index.js +9 -1
- package/dist/src/components/sections/index.ts +9 -1
- package/dist/src/globalStyles/breakpoints.d.ts +2 -0
- package/dist/src/globalStyles/breakpoints.js +2 -0
- package/dist/src/globalStyles/breakpoints.ts +3 -0
- package/dist/src/globalStyles/themes.scss +0 -2
- package/dist/src/hooks/useIntersectionObserver.d.ts +7 -5
- package/dist/src/hooks/useIntersectionObserver.js +5 -7
- package/dist/src/hooks/useIntersectionObserver.tsx +12 -10
- package/dist/src/hooks/useSearchFunction.d.ts +10 -0
- package/dist/src/hooks/useSearchFunction.js +28 -0
- package/dist/src/hooks/useSearchFunction.tsx +63 -0
- package/dist/src/hooks/useWindowSize.d.ts +6 -0
- package/dist/src/hooks/useWindowSize.js +43 -0
- package/dist/src/hooks/useWindowSize.tsx +51 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/images/componentsSvg/RatafiaIcon24px.d.ts +0 -6
- package/dist/images/componentsSvg/RatafiaIcon24px.js +0 -2
- package/dist/src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCard.d.ts +0 -4
- package/dist/src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCard.js +0 -6
- package/dist/src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCard.tsx +0 -18
- package/dist/src/components/atoms/BenefitRatafiaCard/BenefitRatafiaCardProps.types.ts +0 -6
- package/dist/src/components/atoms/BenefitRatafiaCard/index.d.ts +0 -2
- package/dist/src/components/atoms/BenefitRatafiaCard/index.js +0 -1
- package/dist/src/components/atoms/BenefitRatafiaCard/index.ts +0 -2
- package/dist/src/components/atoms/MenuItems/MenuItems.d.ts +0 -4
- package/dist/src/components/atoms/MenuItems/index.d.ts +0 -2
- package/dist/src/components/atoms/MenuItems/index.js +0 -1
- package/dist/src/components/atoms/MenuItems/index.ts +0 -2
- package/dist/src/components/atoms/TopBarMobile/TopBarMobile.d.ts +0 -7
- package/dist/src/components/atoms/TopBarMobile/TopBarMobile.js +0 -10
- package/dist/src/components/atoms/TopBarMobile/TopBarMobile.styled.d.ts +0 -1
- package/dist/src/components/atoms/TopBarMobile/TopBarMobile.styled.js +0 -49
- package/dist/src/components/atoms/TopBarMobile/TopBarMobile.styled.ts +0 -50
- package/dist/src/components/atoms/TopBarMobile/TopBarMobile.tsx +0 -22
- package/dist/src/components/atoms/TopBarMobile/index.d.ts +0 -1
- package/dist/src/components/atoms/TopBarMobile/index.js +0 -1
- package/dist/src/components/atoms/TopBarMobile/index.ts +0 -1
- package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.js +0 -12
- package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.styled.d.ts +0 -1
- package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.tsx +0 -61
- package/dist/src/components/molecules/RatafiaSubscriptionCard/index.d.ts +0 -2
- package/dist/src/components/molecules/RatafiaSubscriptionCard/index.js +0 -1
- package/dist/src/components/molecules/RatafiaSubscriptionCard/index.ts +0 -2
- package/dist/src/components/organisms/AboutUsContent/AboutUsContent.d.ts +0 -4
- package/dist/src/components/organisms/AboutUsContent/AboutUsContent.js +0 -7
- package/dist/src/components/organisms/AboutUsContent/AboutUsContent.tsx +0 -23
- package/dist/src/components/organisms/AboutUsContent/index.d.ts +0 -2
- package/dist/src/components/organisms/AboutUsContent/index.js +0 -1
- package/dist/src/components/organisms/AboutUsContent/index.ts +0 -2
- package/dist/src/components/sections/AboutUsSection/AboutUsSection.d.ts +0 -4
- package/dist/src/components/sections/AboutUsSection/AboutUsSection.js +0 -7
- package/dist/src/components/sections/AboutUsSection/AboutUsSection.styled.d.ts +0 -1
- package/dist/src/components/sections/AboutUsSection/AboutUsSection.tsx +0 -24
- package/dist/src/components/sections/AboutUsSection/AboutUsSectionProps.types.d.ts +0 -6
- package/dist/src/components/sections/AboutUsSection/AboutUsSectionProps.types.ts +0 -7
- package/dist/src/components/sections/AboutUsSection/index.d.ts +0 -2
- package/dist/src/components/sections/AboutUsSection/index.js +0 -1
- package/dist/src/components/sections/AboutUsSection/index.ts +0 -2
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.scss +0 -37
- /package/dist/src/components/atoms/{BenefitRatafiaCard/BenefitRatafiaCardProps.types.js → BenefitCard/BenefitCardProps.types.js} +0 -0
- /package/dist/src/components/atoms/{MenuItems/MenuItemProps.types.js → CardBox/CardBoxProps.types.js} +0 -0
- /package/dist/src/components/{molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCardProps.types.js → atoms/ContactInformationHeader/ContactInformationHeaderProps.js} +0 -0
- /package/dist/src/components/{organisms/AboutUsContent/AboutUsContentProps.types.js → atoms/MenuItemsDeprecated/MenuItemsDeprecatedProps.types.js} +0 -0
- /package/dist/src/components/{sections/AboutUsSection/AboutUsSectionProps.types.js → atoms/MobileTrigger/MobileTriggerProps.js} +0 -0
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './HeroContent'
|
|
2
2
|
export * from './Accordion'
|
|
3
3
|
export * from './ArticlesList'
|
|
4
4
|
export * from './AsSeeInContent'
|
|
5
|
+
export * from './BottomFooter'
|
|
5
6
|
export * from './CardFunctionality'
|
|
6
7
|
export * from './ContactContent'
|
|
7
8
|
export * from './ContactJumbotron'
|
|
8
9
|
export * from './CookiePolicyBar'
|
|
10
|
+
export * from './DocumentListMenu'
|
|
11
|
+
export * from './DocumentMainMenu'
|
|
12
|
+
export * from './DocumentSubMenu'
|
|
9
13
|
export * from './ErrorContentRatafia'
|
|
10
14
|
export * from './FaqGroup'
|
|
11
15
|
export * from './FeaturesRatafiaContent'
|
|
@@ -20,6 +24,15 @@ export * from './LimitReachedContentRatafia'
|
|
|
20
24
|
export * from './ListStepsGetForm'
|
|
21
25
|
export * from './LoginRatafiaContent'
|
|
22
26
|
export * from './MobileBottomBar'
|
|
27
|
+
export * from './NavMenu'
|
|
28
|
+
export * from './RatafiaLoadingResultContent'
|
|
29
|
+
export * from './RatafiaResultContent'
|
|
23
30
|
export * from './StepsRatafiaContent'
|
|
31
|
+
export * from './TopFooter'
|
|
24
32
|
export * from './TryOurFreeLegalBlogsContent'
|
|
25
33
|
export * from './Wizard'
|
|
34
|
+
export * from './HowWeHelp'
|
|
35
|
+
export * from './MobileMenu'
|
|
36
|
+
export * from './MobilePanel'
|
|
37
|
+
export * from './DesktopMenu'
|
|
38
|
+
export * from './VisibleEnvVariables'
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import { AsSeeInSection, CardStorySection, ExpertsSection, GuidelinesSection, HeroSection, MidBannerRatafiaSection, PeopleSayAboutUsSection, TryOurFreeLegalBlogsSection } from '../../sections';
|
|
3
|
+
import { ContactContent, HowWeHelp } from '../../organisms';
|
|
4
|
+
export const AboutUsPage = ({ aboutUsSectionProps, ourMissionBlogsSectionProps, ourCoreValuesBlogsSectionProps, cardStorySection, howWeHelp, peopleSayAboutUsSectionProps, guidelinesSectionProps, expertsSectionProps, asSeeInSectionProps, midBannerSectionProps, contactContentProps, isJonSnow = false }) => {
|
|
5
|
+
return (_jsxs(_Fragment, { children: [aboutUsSectionProps != null && _jsx(HeroSection, { ...aboutUsSectionProps }), ourMissionBlogsSectionProps != null && _jsx(TryOurFreeLegalBlogsSection, { ...ourMissionBlogsSectionProps }), ourCoreValuesBlogsSectionProps != null && _jsx(TryOurFreeLegalBlogsSection, { ...ourCoreValuesBlogsSectionProps }), cardStorySection != null && _jsx(CardStorySection, { ...cardStorySection }), howWeHelp != null && _jsx(HowWeHelp, { ...howWeHelp }), guidelinesSectionProps != null && (_jsx(GuidelinesSection, { ...guidelinesSectionProps, children: guidelinesSectionProps.contentGuidelines?.children })), expertsSectionProps != null && _jsx(ExpertsSection, { ...expertsSectionProps }), !isJonSnow && peopleSayAboutUsSectionProps != null && (_jsx(PeopleSayAboutUsSection, { ...peopleSayAboutUsSectionProps })), !isJonSnow && asSeeInSectionProps != null && _jsx(AsSeeInSection, { ...asSeeInSectionProps }), !isJonSnow && midBannerSectionProps != null && _jsx(MidBannerRatafiaSection, { ...midBannerSectionProps }), !isJonSnow && contactContentProps != null && _jsx(ContactContent, { ...contactContentProps })] }));
|
|
5
6
|
};
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
|
|
3
3
|
import {
|
|
4
|
-
AboutUsSection,
|
|
5
4
|
AsSeeInSection,
|
|
6
5
|
CardStorySection,
|
|
7
6
|
ExpertsSection,
|
|
8
7
|
GuidelinesSection,
|
|
8
|
+
HeroSection,
|
|
9
|
+
MidBannerRatafiaSection,
|
|
9
10
|
PeopleSayAboutUsSection,
|
|
10
11
|
TryOurFreeLegalBlogsSection
|
|
11
12
|
} from '../../sections'
|
|
13
|
+
import { ContactContent, HowWeHelp } from '../../organisms'
|
|
12
14
|
import { type AboutUsPageProps } from './AboutUsPageProps'
|
|
13
15
|
|
|
14
16
|
export const AboutUsPage: React.FC<AboutUsPageProps> = ({
|
|
@@ -16,18 +18,22 @@ export const AboutUsPage: React.FC<AboutUsPageProps> = ({
|
|
|
16
18
|
ourMissionBlogsSectionProps,
|
|
17
19
|
ourCoreValuesBlogsSectionProps,
|
|
18
20
|
cardStorySection,
|
|
21
|
+
howWeHelp,
|
|
19
22
|
peopleSayAboutUsSectionProps,
|
|
20
23
|
guidelinesSectionProps,
|
|
21
24
|
expertsSectionProps,
|
|
22
25
|
asSeeInSectionProps,
|
|
26
|
+
midBannerSectionProps,
|
|
27
|
+
contactContentProps,
|
|
23
28
|
isJonSnow = false
|
|
24
29
|
}) => {
|
|
25
30
|
return (
|
|
26
31
|
<>
|
|
27
|
-
{aboutUsSectionProps != null && <
|
|
32
|
+
{aboutUsSectionProps != null && <HeroSection {...aboutUsSectionProps} />}
|
|
28
33
|
{ourMissionBlogsSectionProps != null && <TryOurFreeLegalBlogsSection {...ourMissionBlogsSectionProps} />}
|
|
29
34
|
{ourCoreValuesBlogsSectionProps != null && <TryOurFreeLegalBlogsSection {...ourCoreValuesBlogsSectionProps} />}
|
|
30
35
|
{cardStorySection != null && <CardStorySection {...cardStorySection} />}
|
|
36
|
+
{howWeHelp != null && <HowWeHelp {...howWeHelp} />}
|
|
31
37
|
{guidelinesSectionProps != null && (
|
|
32
38
|
<GuidelinesSection {...guidelinesSectionProps}>
|
|
33
39
|
{guidelinesSectionProps.contentGuidelines?.children}
|
|
@@ -38,6 +44,8 @@ export const AboutUsPage: React.FC<AboutUsPageProps> = ({
|
|
|
38
44
|
<PeopleSayAboutUsSection {...peopleSayAboutUsSectionProps} />
|
|
39
45
|
)}
|
|
40
46
|
{!isJonSnow && asSeeInSectionProps != null && <AsSeeInSection {...asSeeInSectionProps} />}
|
|
47
|
+
{!isJonSnow && midBannerSectionProps != null && <MidBannerRatafiaSection {...midBannerSectionProps} />}
|
|
48
|
+
{!isJonSnow && contactContentProps != null && <ContactContent {...contactContentProps} />}
|
|
41
49
|
</>
|
|
42
50
|
)
|
|
43
51
|
}
|
|
@@ -1,13 +1,17 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { AsSeeInSectionProps, CardStorySectionProps, ExpertsSectionProps, GuidelinesSectionProps, HeroSectionProps, MidBannerRatafiaSectionProps, PeopleSayAboutUsSectionProps, TryOurFreeLegalBlogsSectionProps, TryUsSectionProps } from '../../sections';
|
|
2
|
+
import { ContactContentProps, HowWeHelpProps } from '../../organisms';
|
|
2
3
|
export interface AboutUsPageProps {
|
|
3
|
-
aboutUsSectionProps?:
|
|
4
|
+
aboutUsSectionProps?: HeroSectionProps;
|
|
4
5
|
ourMissionBlogsSectionProps?: TryOurFreeLegalBlogsSectionProps;
|
|
5
6
|
ourCoreValuesBlogsSectionProps?: TryOurFreeLegalBlogsSectionProps;
|
|
6
7
|
cardStorySection?: CardStorySectionProps;
|
|
8
|
+
howWeHelp?: HowWeHelpProps;
|
|
7
9
|
peopleSayAboutUsSectionProps?: PeopleSayAboutUsSectionProps;
|
|
8
10
|
guidelinesSectionProps?: GuidelinesSectionProps;
|
|
9
11
|
tryUsSectionProps?: TryUsSectionProps;
|
|
10
12
|
expertsSectionProps?: ExpertsSectionProps;
|
|
11
13
|
asSeeInSectionProps?: AsSeeInSectionProps;
|
|
14
|
+
midBannerSectionProps?: MidBannerRatafiaSectionProps;
|
|
15
|
+
contactContentProps?: ContactContentProps;
|
|
12
16
|
isJonSnow?: boolean;
|
|
13
17
|
}
|
|
@@ -1,23 +1,28 @@
|
|
|
1
1
|
import type {
|
|
2
|
-
AboutUsSectionProps,
|
|
3
2
|
AsSeeInSectionProps,
|
|
4
3
|
CardStorySectionProps,
|
|
5
4
|
ExpertsSectionProps,
|
|
6
5
|
GuidelinesSectionProps,
|
|
6
|
+
HeroSectionProps,
|
|
7
|
+
MidBannerRatafiaSectionProps,
|
|
7
8
|
PeopleSayAboutUsSectionProps,
|
|
8
9
|
TryOurFreeLegalBlogsSectionProps,
|
|
9
10
|
TryUsSectionProps
|
|
10
11
|
} from '../../sections'
|
|
12
|
+
import { ContactContentProps, HowWeHelpProps } from '../../organisms'
|
|
11
13
|
|
|
12
14
|
export interface AboutUsPageProps {
|
|
13
|
-
aboutUsSectionProps?:
|
|
15
|
+
aboutUsSectionProps?: HeroSectionProps
|
|
14
16
|
ourMissionBlogsSectionProps?: TryOurFreeLegalBlogsSectionProps
|
|
15
17
|
ourCoreValuesBlogsSectionProps?: TryOurFreeLegalBlogsSectionProps
|
|
16
18
|
cardStorySection?: CardStorySectionProps
|
|
19
|
+
howWeHelp?: HowWeHelpProps
|
|
17
20
|
peopleSayAboutUsSectionProps?: PeopleSayAboutUsSectionProps
|
|
18
21
|
guidelinesSectionProps?: GuidelinesSectionProps
|
|
19
22
|
tryUsSectionProps?: TryUsSectionProps
|
|
20
23
|
expertsSectionProps?: ExpertsSectionProps
|
|
21
24
|
asSeeInSectionProps?: AsSeeInSectionProps
|
|
25
|
+
midBannerSectionProps?: MidBannerRatafiaSectionProps
|
|
26
|
+
contactContentProps?: ContactContentProps
|
|
22
27
|
isJonSnow?: boolean
|
|
23
28
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { ContactSection, JumbotronSimplifiedSection } from '../../sections';
|
|
3
|
-
import {
|
|
4
|
-
export const ContactUsPage = ({ jumbotronSimplifiedSectionProps,
|
|
5
|
-
return (_jsxs(_Fragment, { children: [_jsx(JumbotronSimplifiedSection, { ...jumbotronSimplifiedSectionProps }), !isJonSnow && _jsx(
|
|
3
|
+
import { ContactInfoBoxMobile } from '../../molecules';
|
|
4
|
+
export const ContactUsPage = ({ jumbotronSimplifiedSectionProps, contactInfoBoxMobileProps, contactProps, isJonSnow = false }) => {
|
|
5
|
+
return (_jsxs(_Fragment, { children: [_jsx(JumbotronSimplifiedSection, { ...jumbotronSimplifiedSectionProps }), !isJonSnow && _jsx(ContactInfoBoxMobile, { ...contactInfoBoxMobileProps }), _jsx(ContactSection, { ...contactProps })] }));
|
|
6
6
|
};
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
|
|
3
3
|
import { ContactSection, JumbotronSimplifiedSection } from '../../sections'
|
|
4
|
+
import { ContactInfoBoxMobile } from '../../molecules'
|
|
4
5
|
import { type ContactUsPageProps } from './ContactUsPageProps'
|
|
5
|
-
import { PhoneContactBoxMobile } from '../../molecules'
|
|
6
6
|
|
|
7
7
|
export const ContactUsPage: React.FC<ContactUsPageProps> = ({
|
|
8
8
|
jumbotronSimplifiedSectionProps,
|
|
9
|
-
|
|
9
|
+
contactInfoBoxMobileProps,
|
|
10
10
|
contactProps,
|
|
11
11
|
isJonSnow = false
|
|
12
12
|
}) => {
|
|
13
13
|
return (
|
|
14
14
|
<>
|
|
15
15
|
<JumbotronSimplifiedSection {...jumbotronSimplifiedSectionProps} />
|
|
16
|
-
{!isJonSnow && <
|
|
16
|
+
{!isJonSnow && <ContactInfoBoxMobile {...contactInfoBoxMobileProps} />}
|
|
17
17
|
<ContactSection {...contactProps} />
|
|
18
18
|
</>
|
|
19
19
|
)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type ContactSectionProps, type JumbotronSimplifiedSectionProps } from '../../sections';
|
|
2
|
-
import {
|
|
2
|
+
import { ContactInfoBoxMobileProps } from 'src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobileProps.types';
|
|
3
3
|
export interface ContactUsPageProps {
|
|
4
4
|
jumbotronSimplifiedSectionProps: JumbotronSimplifiedSectionProps;
|
|
5
|
-
|
|
5
|
+
contactInfoBoxMobileProps: ContactInfoBoxMobileProps;
|
|
6
6
|
contactProps: ContactSectionProps;
|
|
7
7
|
isJonSnow?: boolean;
|
|
8
8
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type ContactSectionProps, type JumbotronSimplifiedSectionProps } from '../../sections'
|
|
2
|
-
import {
|
|
2
|
+
import { ContactInfoBoxMobileProps } from 'src/components/molecules/ContactInfoBoxMobile/ContactInfoBoxMobileProps.types'
|
|
3
3
|
|
|
4
4
|
export interface ContactUsPageProps {
|
|
5
5
|
jumbotronSimplifiedSectionProps: JumbotronSimplifiedSectionProps
|
|
6
|
-
|
|
6
|
+
contactInfoBoxMobileProps: ContactInfoBoxMobileProps
|
|
7
7
|
contactProps: ContactSectionProps
|
|
8
8
|
isJonSnow?: boolean
|
|
9
9
|
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { HeroSection, LawGeniusCardsSection, TryNowSection, TryOurFreeLegalBlogsSection } from '../../sections';
|
|
3
|
+
export const HowItWorksPage = ({ aboutUsSectionProps, howItWorksStep1Props, howItWorksStep2Props, howItWorksStep3Props, howItWorksStep4Props, lawGeniusCardsSectionProps, tryNowSectionProps }) => {
|
|
4
|
+
return (_jsxs(_Fragment, { children: [aboutUsSectionProps != null && _jsx(HeroSection, { ...aboutUsSectionProps }), howItWorksStep1Props != null && _jsx(TryOurFreeLegalBlogsSection, { ...howItWorksStep1Props }), howItWorksStep2Props != null && _jsx(TryOurFreeLegalBlogsSection, { ...howItWorksStep2Props }), howItWorksStep3Props != null && _jsx(TryOurFreeLegalBlogsSection, { ...howItWorksStep3Props }), howItWorksStep4Props != null && _jsx(TryOurFreeLegalBlogsSection, { ...howItWorksStep4Props }), lawGeniusCardsSectionProps != null && _jsx(LawGeniusCardsSection, { ...lawGeniusCardsSectionProps }), tryNowSectionProps != null && _jsx(TryNowSection, { ...tryNowSectionProps })] }));
|
|
5
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { HeroSection, LawGeniusCardsSection, TryNowSection, TryOurFreeLegalBlogsSection } from '../../sections'
|
|
4
|
+
import { type HowItWorksPageProps } from './HowItWorksPageProps'
|
|
5
|
+
|
|
6
|
+
export const HowItWorksPage: React.FC<HowItWorksPageProps> = ({
|
|
7
|
+
aboutUsSectionProps,
|
|
8
|
+
howItWorksStep1Props,
|
|
9
|
+
howItWorksStep2Props,
|
|
10
|
+
howItWorksStep3Props,
|
|
11
|
+
howItWorksStep4Props,
|
|
12
|
+
lawGeniusCardsSectionProps,
|
|
13
|
+
tryNowSectionProps
|
|
14
|
+
}) => {
|
|
15
|
+
return (
|
|
16
|
+
<>
|
|
17
|
+
{aboutUsSectionProps != null && <HeroSection {...aboutUsSectionProps} />}
|
|
18
|
+
{howItWorksStep1Props != null && <TryOurFreeLegalBlogsSection {...howItWorksStep1Props} />}
|
|
19
|
+
{howItWorksStep2Props != null && <TryOurFreeLegalBlogsSection {...howItWorksStep2Props} />}
|
|
20
|
+
{howItWorksStep3Props != null && <TryOurFreeLegalBlogsSection {...howItWorksStep3Props} />}
|
|
21
|
+
{howItWorksStep4Props != null && <TryOurFreeLegalBlogsSection {...howItWorksStep4Props} />}
|
|
22
|
+
{lawGeniusCardsSectionProps != null && <LawGeniusCardsSection {...lawGeniusCardsSectionProps} />}
|
|
23
|
+
{tryNowSectionProps != null && <TryNowSection {...tryNowSectionProps} />}
|
|
24
|
+
</>
|
|
25
|
+
)
|
|
26
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { HeroSectionProps, LawGeniusCardsSectionProps, TryNowSectionProps, TryOurFreeLegalBlogsSectionProps } from '../../sections';
|
|
2
|
+
export interface HowItWorksPageProps {
|
|
3
|
+
aboutUsSectionProps?: HeroSectionProps;
|
|
4
|
+
howItWorksStep1Props?: TryOurFreeLegalBlogsSectionProps;
|
|
5
|
+
howItWorksStep2Props?: TryOurFreeLegalBlogsSectionProps;
|
|
6
|
+
howItWorksStep3Props?: TryOurFreeLegalBlogsSectionProps;
|
|
7
|
+
howItWorksStep4Props?: TryOurFreeLegalBlogsSectionProps;
|
|
8
|
+
lawGeniusCardsSectionProps?: LawGeniusCardsSectionProps;
|
|
9
|
+
tryNowSectionProps?: TryNowSectionProps;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type {
|
|
2
|
+
HeroSectionProps,
|
|
3
|
+
LawGeniusCardsSectionProps,
|
|
4
|
+
TryNowSectionProps,
|
|
5
|
+
TryOurFreeLegalBlogsSectionProps
|
|
6
|
+
} from '../../sections'
|
|
7
|
+
|
|
8
|
+
export interface HowItWorksPageProps {
|
|
9
|
+
aboutUsSectionProps?: HeroSectionProps
|
|
10
|
+
howItWorksStep1Props?: TryOurFreeLegalBlogsSectionProps
|
|
11
|
+
howItWorksStep2Props?: TryOurFreeLegalBlogsSectionProps
|
|
12
|
+
howItWorksStep3Props?: TryOurFreeLegalBlogsSectionProps
|
|
13
|
+
howItWorksStep4Props?: TryOurFreeLegalBlogsSectionProps
|
|
14
|
+
lawGeniusCardsSectionProps?: LawGeniusCardsSectionProps
|
|
15
|
+
tryNowSectionProps?: TryNowSectionProps
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { CardBoxFeaturedSection, CardBoxMinimalSection, FaqSection, HeroSection } from '../../sections';
|
|
3
|
+
import { BenefitCard } from '../../atoms';
|
|
4
|
+
import { PlanBoxPricingSubscriptionCard } from '../../molecules';
|
|
5
|
+
import { PricingPageStyled } from './PricingPage.styled';
|
|
6
|
+
export const PricingPage = ({ benefitsContent, faqsContent, helpResourcesCards, pricingPlanContent, pricingSection, supportContent }) => {
|
|
7
|
+
return (_jsxs(PricingPageStyled, { children: [pricingSection != null && _jsx(HeroSection, { ...pricingSection }), _jsxs("div", { className: 'pricing-plans wrapper wrapper--responsive', children: [pricingPlanContent?.title && _jsx("h2", { className: 'pricing-plans__title', children: pricingPlanContent.title }), _jsx("div", { className: 'pricing-plans__cards', children: pricingPlanContent?.plans?.length > 0 &&
|
|
8
|
+
pricingPlanContent?.plans?.map((plan) => _jsx(PlanBoxPricingSubscriptionCard, { ...plan }, plan?.id)) })] }), _jsx(CardBoxMinimalSection, { cards: helpResourcesCards }), _jsx("div", { className: 'wrapper wrapper--responsive', children: _jsxs("div", { className: 'benefits', children: [benefitsContent?.title && _jsx("h2", { className: 'benefits__title', children: benefitsContent.title }), _jsx("div", { className: 'benefits__cards', children: benefitsContent?.benefitsList?.length > 0 &&
|
|
9
|
+
benefitsContent?.benefitsList?.map((benefit) => (_jsx(BenefitCard, { hasShadow: false, ...benefit }, benefit?.id))) })] }) }), _jsxs("div", { className: 'support-section', children: [supportContent?.title && (_jsxs("div", { className: 'support-section__content', children: [_jsx("h2", { children: supportContent.title }), supportContent.description] })), _jsx(CardBoxFeaturedSection, { cards: supportContent?.benefitsList })] }), _jsx("div", { className: 'faqs-section', children: _jsx(FaqSection, { groups: faqsContent?.faqItems, givenClass: 'faqs-section__content wrapper wrapper--responsive' }) })] }));
|
|
10
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const PricingPageStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { device } from '../../../globalStyles/breakpoints';
|
|
2
|
+
import styled from 'styled-components';
|
|
3
|
+
export const PricingPageStyled = styled.div `
|
|
4
|
+
width: 100%;
|
|
5
|
+
.hero-section {
|
|
6
|
+
.hero-content__image {
|
|
7
|
+
.gatsby-image-wrapper {
|
|
8
|
+
min-height: 360px;
|
|
9
|
+
@media ${device['portrait-tablets']} {
|
|
10
|
+
min-height: auto;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.pricing-plans {
|
|
17
|
+
padding-left: 1.5rem;
|
|
18
|
+
padding-right: 1.5rem;
|
|
19
|
+
align-items: center;
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-flow: column nowrap;
|
|
22
|
+
gap: 2rem;
|
|
23
|
+
margin-bottom: 48px;
|
|
24
|
+
&__title {
|
|
25
|
+
color: var(--Neutral-800, var(--neutral-neutral-1));
|
|
26
|
+
font-size: 28px;
|
|
27
|
+
font-style: normal;
|
|
28
|
+
font-weight: 700;
|
|
29
|
+
line-height: 32px;
|
|
30
|
+
letter-spacing: -0.3px;
|
|
31
|
+
margin-top: 48px;
|
|
32
|
+
text-align: center;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.subscription-card {
|
|
36
|
+
min-width: 379px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.subscription-card__feature {
|
|
40
|
+
margin-bottom: 1rem;
|
|
41
|
+
&.ratafia-feature {
|
|
42
|
+
padding: 0.5rem;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.subscription-card__button {
|
|
47
|
+
flex: inherit;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.primary {
|
|
51
|
+
.subscription-card__feature {
|
|
52
|
+
&.ratafia-feature {
|
|
53
|
+
background-color: var(--primary-main-light-5);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
&__cards {
|
|
58
|
+
display: flex;
|
|
59
|
+
flex-direction: column;
|
|
60
|
+
gap: 32px;
|
|
61
|
+
|
|
62
|
+
@media ${device.desktop} {
|
|
63
|
+
flex-direction: row;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.support-section {
|
|
69
|
+
margin-top: 48px;
|
|
70
|
+
display: flex;
|
|
71
|
+
flex-direction: column;
|
|
72
|
+
align-items: center;
|
|
73
|
+
padding-left: 1.5rem;
|
|
74
|
+
padding-right: 1.5rem;
|
|
75
|
+
&__content {
|
|
76
|
+
display: flex;
|
|
77
|
+
flex-direction: column;
|
|
78
|
+
align-items: center;
|
|
79
|
+
text-align: center;
|
|
80
|
+
|
|
81
|
+
h2 {
|
|
82
|
+
color: var(--Neutral-800, var(--neutral-neutral-1));
|
|
83
|
+
font-size: 28px;
|
|
84
|
+
font-style: normal;
|
|
85
|
+
font-weight: 700;
|
|
86
|
+
line-height: 32px;
|
|
87
|
+
letter-spacing: -0.3px;
|
|
88
|
+
margin-bottom: 24px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.benefits {
|
|
94
|
+
padding: 48px;
|
|
95
|
+
background: var(--primary-main-light-6);
|
|
96
|
+
border-radius: 16px;
|
|
97
|
+
margin-top: 48px;
|
|
98
|
+
padding-left: 1.5rem;
|
|
99
|
+
padding-right: 1.5rem;
|
|
100
|
+
&__title {
|
|
101
|
+
color: var(--Neutral-800, var(--neutral-neutral-1));
|
|
102
|
+
font-size: 28px;
|
|
103
|
+
font-style: normal;
|
|
104
|
+
font-weight: 700;
|
|
105
|
+
line-height: 32px;
|
|
106
|
+
letter-spacing: -0.3px;
|
|
107
|
+
margin-bottom: 40px;
|
|
108
|
+
}
|
|
109
|
+
&__cards {
|
|
110
|
+
display: flex;
|
|
111
|
+
gap: 16px;
|
|
112
|
+
flex-direction: column;
|
|
113
|
+
width: 100%;
|
|
114
|
+
|
|
115
|
+
@media ${device.laptop} {
|
|
116
|
+
flex-direction: row;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
.faqs-section {
|
|
121
|
+
max-width: inherit;
|
|
122
|
+
align-items: center;
|
|
123
|
+
padding-bottom: 80px;
|
|
124
|
+
padding-top: 48px;
|
|
125
|
+
background: var(--neutral-neutral-6);
|
|
126
|
+
&__content {
|
|
127
|
+
max-width: 1200px;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
`;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { device } from '../../../globalStyles/breakpoints'
|
|
2
|
+
import styled from 'styled-components'
|
|
3
|
+
|
|
4
|
+
export const PricingPageStyled = styled.div`
|
|
5
|
+
width: 100%;
|
|
6
|
+
.hero-section {
|
|
7
|
+
.hero-content__image {
|
|
8
|
+
.gatsby-image-wrapper {
|
|
9
|
+
min-height: 360px;
|
|
10
|
+
@media ${device['portrait-tablets']} {
|
|
11
|
+
min-height: auto;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.pricing-plans {
|
|
18
|
+
padding-left: 1.5rem;
|
|
19
|
+
padding-right: 1.5rem;
|
|
20
|
+
align-items: center;
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-flow: column nowrap;
|
|
23
|
+
gap: 2rem;
|
|
24
|
+
margin-bottom: 48px;
|
|
25
|
+
&__title {
|
|
26
|
+
color: var(--Neutral-800, var(--neutral-neutral-1));
|
|
27
|
+
font-size: 28px;
|
|
28
|
+
font-style: normal;
|
|
29
|
+
font-weight: 700;
|
|
30
|
+
line-height: 32px;
|
|
31
|
+
letter-spacing: -0.3px;
|
|
32
|
+
margin-top: 48px;
|
|
33
|
+
text-align: center;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.subscription-card {
|
|
37
|
+
min-width: 379px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.subscription-card__feature {
|
|
41
|
+
margin-bottom: 1rem;
|
|
42
|
+
&.ratafia-feature {
|
|
43
|
+
padding: 0.5rem;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.subscription-card__button {
|
|
48
|
+
flex: inherit;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.primary {
|
|
52
|
+
.subscription-card__feature {
|
|
53
|
+
&.ratafia-feature {
|
|
54
|
+
background-color: var(--primary-main-light-5);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
&__cards {
|
|
59
|
+
display: flex;
|
|
60
|
+
flex-direction: column;
|
|
61
|
+
gap: 32px;
|
|
62
|
+
|
|
63
|
+
@media ${device.desktop} {
|
|
64
|
+
flex-direction: row;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.support-section {
|
|
70
|
+
margin-top: 48px;
|
|
71
|
+
display: flex;
|
|
72
|
+
flex-direction: column;
|
|
73
|
+
align-items: center;
|
|
74
|
+
padding-left: 1.5rem;
|
|
75
|
+
padding-right: 1.5rem;
|
|
76
|
+
&__content {
|
|
77
|
+
display: flex;
|
|
78
|
+
flex-direction: column;
|
|
79
|
+
align-items: center;
|
|
80
|
+
text-align: center;
|
|
81
|
+
|
|
82
|
+
h2 {
|
|
83
|
+
color: var(--Neutral-800, var(--neutral-neutral-1));
|
|
84
|
+
font-size: 28px;
|
|
85
|
+
font-style: normal;
|
|
86
|
+
font-weight: 700;
|
|
87
|
+
line-height: 32px;
|
|
88
|
+
letter-spacing: -0.3px;
|
|
89
|
+
margin-bottom: 24px;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.benefits {
|
|
95
|
+
padding: 48px;
|
|
96
|
+
background: var(--primary-main-light-6);
|
|
97
|
+
border-radius: 16px;
|
|
98
|
+
margin-top: 48px;
|
|
99
|
+
padding-left: 1.5rem;
|
|
100
|
+
padding-right: 1.5rem;
|
|
101
|
+
&__title {
|
|
102
|
+
color: var(--Neutral-800, var(--neutral-neutral-1));
|
|
103
|
+
font-size: 28px;
|
|
104
|
+
font-style: normal;
|
|
105
|
+
font-weight: 700;
|
|
106
|
+
line-height: 32px;
|
|
107
|
+
letter-spacing: -0.3px;
|
|
108
|
+
margin-bottom: 40px;
|
|
109
|
+
}
|
|
110
|
+
&__cards {
|
|
111
|
+
display: flex;
|
|
112
|
+
gap: 16px;
|
|
113
|
+
flex-direction: column;
|
|
114
|
+
width: 100%;
|
|
115
|
+
|
|
116
|
+
@media ${device.laptop} {
|
|
117
|
+
flex-direction: row;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
.faqs-section {
|
|
122
|
+
max-width: inherit;
|
|
123
|
+
align-items: center;
|
|
124
|
+
padding-bottom: 80px;
|
|
125
|
+
padding-top: 48px;
|
|
126
|
+
background: var(--neutral-neutral-6);
|
|
127
|
+
&__content {
|
|
128
|
+
max-width: 1200px;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
`
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
import { CardBoxFeaturedSection, CardBoxMinimalSection, FaqSection, HeroSection } from '../../sections'
|
|
4
|
+
import { BenefitCard } from '../../atoms'
|
|
5
|
+
import { PlanBoxPricingSubscriptionCard } from '../../molecules'
|
|
6
|
+
import { PricingPageProps } from './PricingPageProps'
|
|
7
|
+
import { PricingPageStyled } from './PricingPage.styled'
|
|
8
|
+
|
|
9
|
+
export const PricingPage: React.FC<PricingPageProps> = ({
|
|
10
|
+
benefitsContent,
|
|
11
|
+
faqsContent,
|
|
12
|
+
helpResourcesCards,
|
|
13
|
+
pricingPlanContent,
|
|
14
|
+
pricingSection,
|
|
15
|
+
supportContent
|
|
16
|
+
}) => {
|
|
17
|
+
return (
|
|
18
|
+
<PricingPageStyled>
|
|
19
|
+
{pricingSection != null && <HeroSection {...pricingSection} />}
|
|
20
|
+
<div className='pricing-plans wrapper wrapper--responsive'>
|
|
21
|
+
{pricingPlanContent?.title && <h2 className='pricing-plans__title'>{pricingPlanContent.title}</h2>}
|
|
22
|
+
<div className='pricing-plans__cards'>
|
|
23
|
+
{pricingPlanContent?.plans?.length > 0 &&
|
|
24
|
+
pricingPlanContent?.plans?.map((plan) => <PlanBoxPricingSubscriptionCard key={plan?.id} {...plan} />)}
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
<CardBoxMinimalSection cards={helpResourcesCards} />
|
|
28
|
+
<div className='wrapper wrapper--responsive'>
|
|
29
|
+
<div className='benefits'>
|
|
30
|
+
{benefitsContent?.title && <h2 className='benefits__title'>{benefitsContent.title}</h2>}
|
|
31
|
+
<div className='benefits__cards'>
|
|
32
|
+
{benefitsContent?.benefitsList?.length > 0 &&
|
|
33
|
+
benefitsContent?.benefitsList?.map((benefit) => (
|
|
34
|
+
<BenefitCard hasShadow={false} key={benefit?.id} {...benefit} />
|
|
35
|
+
))}
|
|
36
|
+
</div>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
<div className='support-section'>
|
|
40
|
+
{supportContent?.title && (
|
|
41
|
+
<div className='support-section__content'>
|
|
42
|
+
<h2>{supportContent.title}</h2>
|
|
43
|
+
{supportContent.description}
|
|
44
|
+
</div>
|
|
45
|
+
)}
|
|
46
|
+
<CardBoxFeaturedSection cards={supportContent?.benefitsList} />
|
|
47
|
+
</div>
|
|
48
|
+
<div className='faqs-section'>
|
|
49
|
+
<FaqSection groups={faqsContent?.faqItems} givenClass='faqs-section__content wrapper wrapper--responsive' />
|
|
50
|
+
</div>
|
|
51
|
+
</PricingPageStyled>
|
|
52
|
+
)
|
|
53
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { BenefitCardProps, CardBoxProps } from 'src/components/atoms';
|
|
2
|
+
import { FaqGroupProps } from 'src/components/organisms';
|
|
3
|
+
import { HeroSectionProps } from 'src/components/sections';
|
|
4
|
+
import { PlanBoxPricingSubscriptionCardProps } from 'src/components/molecules';
|
|
5
|
+
export interface BenefitContentProps {
|
|
6
|
+
title: string;
|
|
7
|
+
benefitsList: BenefitCardProps[];
|
|
8
|
+
}
|
|
9
|
+
export interface FaqsContentProps {
|
|
10
|
+
faqItems: FaqGroupProps[];
|
|
11
|
+
}
|
|
12
|
+
export interface PricingPlanContentProps {
|
|
13
|
+
title: string;
|
|
14
|
+
plans: PlanBoxPricingSubscriptionCardProps[];
|
|
15
|
+
}
|
|
16
|
+
export interface SupportContentProps {
|
|
17
|
+
title: string;
|
|
18
|
+
description: string;
|
|
19
|
+
benefitsList: CardBoxProps[];
|
|
20
|
+
}
|
|
21
|
+
export interface PricingPageProps {
|
|
22
|
+
benefitsContent: BenefitContentProps;
|
|
23
|
+
faqsContent: FaqsContentProps;
|
|
24
|
+
helpResourcesCards: CardBoxProps[];
|
|
25
|
+
supportContent: SupportContentProps;
|
|
26
|
+
pricingPlanContent: PricingPlanContentProps;
|
|
27
|
+
pricingSection: HeroSectionProps;
|
|
28
|
+
}
|