@quintype/arrow 3.54.1-debug-full-bleed.4 → 3.54.1-version-upgrade.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/.babelrc +12 -0
- package/.circleci/config.yml +43 -0
- package/.eslintrc.json +35 -0
- package/.prettierrc +6 -0
- package/.storybook/addons.js +4 -0
- package/.storybook/main.js +7 -0
- package/.storybook/preview.js +3 -0
- package/.storybook/webpack.config.js +8 -0
- package/.stylelintrc +10 -0
- package/.vscode/extensions.json +16 -0
- package/.vscode/settings.json +12 -0
- package/CHANGELOG.md +2578 -0
- package/__mocks__/fileMock.js +1 -0
- package/__mocks__/styleMock.js +1 -0
- package/assets/stylesheets/mixins.scss +35 -0
- package/assets/stylesheets/reset.scss +148 -0
- package/assets/stylesheets/viewports.m.css +3 -0
- package/bin-dev-scripts/prepublish.sh +11 -0
- package/bin-dev-scripts/sync-to.sh +13 -0
- package/jest.config.json +14 -0
- package/package.json +138 -1
- package/publish +24 -0
- package/rollup.js +202 -0
- package/setupTests.js +3 -0
- package/src/components/Atoms/AdPlaceholder/ads.m.css +13 -0
- package/src/components/Atoms/AdPlaceholder/index.js +25 -0
- package/src/components/Atoms/AudioPlayer/PlayerBase.js +150 -0
- package/src/components/Atoms/AudioPlayer/PlayerControls.js +155 -0
- package/src/components/Atoms/AudioPlayer/ProgressBar.js +24 -0
- package/src/components/Atoms/AudioPlayer/audio.m.css +201 -0
- package/src/components/Atoms/AudioPlayer/index.js +59 -0
- package/src/components/Atoms/AudioPlayer/progressbar.m.css +48 -0
- package/src/components/Atoms/Author/README.md +19 -0
- package/src/components/Atoms/Author/author.m.css +62 -0
- package/src/components/Atoms/Author/index.js +112 -0
- package/src/components/Atoms/Author/stories.js +23 -0
- package/src/components/Atoms/AuthorCard/README.md +55 -0
- package/src/components/Atoms/AuthorCard/author-card.m.css +224 -0
- package/src/components/Atoms/AuthorCard/author-card.test.js +97 -0
- package/src/components/Atoms/AuthorCard/index.js +312 -0
- package/src/components/Atoms/AuthorCard/stories.js +164 -0
- package/src/components/Atoms/AuthorImage/README.md +31 -0
- package/src/components/Atoms/AuthorImage/author-image.m.css +53 -0
- package/src/components/Atoms/AuthorImage/index.js +62 -0
- package/src/components/Atoms/AuthorImage/stories.js +20 -0
- package/src/components/Atoms/AuthorWithTimestamp/README.md +12 -0
- package/src/components/Atoms/AuthorWithTimestamp/author-with-timestamp.m.css +40 -0
- package/src/components/Atoms/AuthorWithTimestamp/index.js +115 -0
- package/src/components/Atoms/AuthorWithTimestamp/stories.js +27 -0
- package/src/components/Atoms/BulletPoint/README.md +9 -0
- package/src/components/Atoms/BulletPoint/bullet-point.m.css +25 -0
- package/src/components/Atoms/BulletPoint/index.js +19 -0
- package/src/components/Atoms/BulletPoint/stories.js +6 -0
- package/src/components/Atoms/CaptionAttribution/README.md +15 -0
- package/src/components/Atoms/CaptionAttribution/caption-attribution.m.css +40 -0
- package/src/components/Atoms/CaptionAttribution/caption-attribution.test.js +29 -0
- package/src/components/Atoms/CaptionAttribution/index.js +40 -0
- package/src/components/Atoms/CaptionAttribution/stories.js +40 -0
- package/src/components/Atoms/CollectionName/README.md +11 -0
- package/src/components/Atoms/CollectionName/collection-name.m.css +106 -0
- package/src/components/Atoms/CollectionName/index.js +147 -0
- package/src/components/Atoms/CollectionName/stories.js +52 -0
- package/src/components/Atoms/Divider/__snapshots__/divider.test.js.snap +18 -0
- package/src/components/Atoms/Divider/divider.m.css +6 -0
- package/src/components/Atoms/Divider/divider.test.js +10 -0
- package/src/components/Atoms/Divider/index.js +20 -0
- package/src/components/Atoms/Dot/dot.js +20 -0
- package/src/components/Atoms/Dot/dot.m.css +6 -0
- package/src/components/Atoms/ExtendedLoadMore/README.md +9 -0
- package/src/components/Atoms/ExtendedLoadMore/__snapshots__/extended-load-more.test.js.snap +11 -0
- package/src/components/Atoms/ExtendedLoadMore/extended-load-more.test.js +19 -0
- package/src/components/Atoms/ExtendedLoadMore/index.js +114 -0
- package/src/components/Atoms/FallbackImage/fallback.m.css +33 -0
- package/src/components/Atoms/FallbackImage/index.js +39 -0
- package/src/components/Atoms/Headline/README.md +7 -0
- package/src/components/Atoms/Headline/headline.m.css +67 -0
- package/src/components/Atoms/Headline/index.js +112 -0
- package/src/components/Atoms/Headline/stories.js +52 -0
- package/src/components/Atoms/HeroImage/README.md +13 -0
- package/src/components/Atoms/HeroImage/hero-image.m.css +99 -0
- package/src/components/Atoms/HeroImage/index.js +293 -0
- package/src/components/Atoms/HeroImage/stories.js +22 -0
- package/src/components/Atoms/Hyperlink/hyperlink.m.css +10 -0
- package/src/components/Atoms/Hyperlink/index.js +24 -0
- package/src/components/Atoms/LoadMoreTarget/index.js +30 -0
- package/src/components/Atoms/LoadMoreTarget/load-more-target.m.css +7 -0
- package/src/components/Atoms/Loadmore/README.md +0 -0
- package/src/components/Atoms/Loadmore/__snapshots__/load-more.test.js.snap +25 -0
- package/src/components/Atoms/Loadmore/index.js +54 -0
- package/src/components/Atoms/Loadmore/load-more.m.css +23 -0
- package/src/components/Atoms/Loadmore/load-more.test.js +30 -0
- package/src/components/Atoms/Loadmore/stories.js +17 -0
- package/src/components/Atoms/MagazineCoverImage/README.md +21 -0
- package/src/components/Atoms/MagazineCoverImage/index.js +73 -0
- package/src/components/Atoms/MagazineCoverImage/magazine-cover-image.m.css +24 -0
- package/src/components/Atoms/MagazineCoverImage/stories.js +21 -0
- package/src/components/Atoms/PremiumStoryIcon/index.js +27 -0
- package/src/components/Atoms/PublishDetail/README.md +15 -0
- package/src/components/Atoms/PublishDetail/index.js +105 -0
- package/src/components/Atoms/PublishDetail/publish-details.m.css +53 -0
- package/src/components/Atoms/PublishDetail/publish-details.test.js +35 -0
- package/src/components/Atoms/PublishDetail/stories.js +22 -0
- package/src/components/Atoms/ReadTime/README.md +13 -0
- package/src/components/Atoms/ReadTime/index.js +59 -0
- package/src/components/Atoms/ReadTime/read-time.m.css +25 -0
- package/src/components/Atoms/ReadTime/read-time.test.js +27 -0
- package/src/components/Atoms/ReadTime/stories.js +19 -0
- package/src/components/Atoms/ResponsiveImg/index.js +174 -0
- package/src/components/Atoms/ScrollSnap/SliderArrow/index.js +67 -0
- package/src/components/Atoms/ScrollSnap/SliderArrow/slider-arrow.m.css +45 -0
- package/src/components/Atoms/ScrollSnap/SliderIndicator/index.js +41 -0
- package/src/components/Atoms/ScrollSnap/SliderIndicator/slider-indicator.m.css +71 -0
- package/src/components/Atoms/ScrollSnap/index.js +179 -0
- package/src/components/Atoms/ScrollSnap/scroll-snap.m.css +26 -0
- package/src/components/Atoms/SectionTag/README.md +11 -0
- package/src/components/Atoms/SectionTag/index.js +74 -0
- package/src/components/Atoms/SectionTag/section.m.css +53 -0
- package/src/components/Atoms/SectionTag/stories.js +26 -0
- package/src/components/Atoms/SocialSharePopup/README.md +25 -0
- package/src/components/Atoms/SocialSharePopup/__snapshots__/social-share-popup.test.js.snap +259 -0
- package/src/components/Atoms/SocialSharePopup/index.js +122 -0
- package/src/components/Atoms/SocialSharePopup/social-share-popup.m.css +287 -0
- package/src/components/Atoms/SocialSharePopup/social-share-popup.test.js +101 -0
- package/src/components/Atoms/SocialSharePopup/stories.js +19 -0
- package/src/components/Atoms/SponsoredLabel/index.js +52 -0
- package/src/components/Atoms/SponsoredLabel/sponsored-lable.m.css +17 -0
- package/src/components/Atoms/StoryDemarcationIcon/index.js +127 -0
- package/src/components/Atoms/StoryElements/AISummary/ai-icons.js +51 -0
- package/src/components/Atoms/StoryElements/AISummary/ai-summary.m.css +106 -0
- package/src/components/Atoms/StoryElements/AISummary/index.js +206 -0
- package/src/components/Atoms/StoryElements/AISummary/stories.js +27 -0
- package/src/components/Atoms/StoryElements/AlsoRead/README.md +49 -0
- package/src/components/Atoms/StoryElements/AlsoRead/also-read.m.css +133 -0
- package/src/components/Atoms/StoryElements/AlsoRead/also-read.test.js +83 -0
- package/src/components/Atoms/StoryElements/AlsoRead/index.js +126 -0
- package/src/components/Atoms/StoryElements/AlsoRead/stories.js +40 -0
- package/src/components/Atoms/StoryElements/Attachment/README.md +21 -0
- package/src/components/Atoms/StoryElements/Attachment/__snapshots__/attachment.test.js.snap +47 -0
- package/src/components/Atoms/StoryElements/Attachment/attachment.m.css +127 -0
- package/src/components/Atoms/StoryElements/Attachment/attachment.test.js +39 -0
- package/src/components/Atoms/StoryElements/Attachment/index.js +63 -0
- package/src/components/Atoms/StoryElements/Attachment/stories.js +48 -0
- package/src/components/Atoms/StoryElements/BigFact/README.md +9 -0
- package/src/components/Atoms/StoryElements/BigFact/big-fact.m.css +41 -0
- package/src/components/Atoms/StoryElements/BigFact/big-fact.test.js +21 -0
- package/src/components/Atoms/StoryElements/BigFact/index.js +33 -0
- package/src/components/Atoms/StoryElements/BigFact/stories.js +9 -0
- package/src/components/Atoms/StoryElements/BlockQuote/README.md +49 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/curve.js +27 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/edge.js +27 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/icon.m.css +11 -0
- package/src/components/Atoms/StoryElements/BlockQuote/block-quote.m.css +170 -0
- package/src/components/Atoms/StoryElements/BlockQuote/block-quote.test.js +48 -0
- package/src/components/Atoms/StoryElements/BlockQuote/index.js +82 -0
- package/src/components/Atoms/StoryElements/BlockQuote/stories.js +35 -0
- package/src/components/Atoms/StoryElements/Blurb/README.md +43 -0
- package/src/components/Atoms/StoryElements/Blurb/blurb.m.css +56 -0
- package/src/components/Atoms/StoryElements/Blurb/blurb.test.js +71 -0
- package/src/components/Atoms/StoryElements/Blurb/index.js +50 -0
- package/src/components/Atoms/StoryElements/Blurb/stories.js +28 -0
- package/src/components/Atoms/StoryElements/Image/README.md +13 -0
- package/src/components/Atoms/StoryElements/Image/image.m.css +21 -0
- package/src/components/Atoms/StoryElements/Image/image.test.js +20 -0
- package/src/components/Atoms/StoryElements/Image/index.js +76 -0
- package/src/components/Atoms/StoryElements/Image/stories.js +25 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/README.md +13 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/image-slideshow.m.css +63 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/index.js +101 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/stories.js +34 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/README.md +56 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/index.js +150 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.m.css +185 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.test.js +74 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/stories.js +79 -0
- package/src/components/Atoms/StoryElements/Quote/README.md +41 -0
- package/src/components/Atoms/StoryElements/Quote/index.js +45 -0
- package/src/components/Atoms/StoryElements/Quote/quote.m.css +125 -0
- package/src/components/Atoms/StoryElements/Quote/quote.test.js +58 -0
- package/src/components/Atoms/StoryElements/Quote/stories.js +28 -0
- package/src/components/Atoms/StoryElements/Reference/README.md +9 -0
- package/src/components/Atoms/StoryElements/Reference/index.js +52 -0
- package/src/components/Atoms/StoryElements/Reference/reference.m.css +42 -0
- package/src/components/Atoms/StoryElements/Reference/reference.test.js +28 -0
- package/src/components/Atoms/StoryElements/Reference/stories.js +18 -0
- package/src/components/Atoms/StoryElements/StoryElement/README.md +10 -0
- package/src/components/Atoms/StoryElements/StoryElement/index.js +35 -0
- package/src/components/Atoms/StoryElements/StoryElement/stories.js +20 -0
- package/src/components/Atoms/StoryElements/StoryElement/storyElement.m.css +23 -0
- package/src/components/Atoms/StoryElements/StoryElement/storyelement.test.js +13 -0
- package/src/components/Atoms/StoryElements/Summary/README.md +56 -0
- package/src/components/Atoms/StoryElements/Summary/index.js +67 -0
- package/src/components/Atoms/StoryElements/Summary/stories.js +33 -0
- package/src/components/Atoms/StoryElements/Summary/summary.m.css +169 -0
- package/src/components/Atoms/StoryElements/Summary/summary.test.js +50 -0
- package/src/components/Atoms/StoryElements/Text/README.md +32 -0
- package/src/components/Atoms/StoryElements/Text/index.js +40 -0
- package/src/components/Atoms/StoryElements/Text/stories.js +32 -0
- package/src/components/Atoms/StoryElements/Text/text.m.css +88 -0
- package/src/components/Atoms/StoryElements/Text/text.test.js +42 -0
- package/src/components/Atoms/StoryElements/Video/README.md +9 -0
- package/src/components/Atoms/StoryElements/Video/index.js +46 -0
- package/src/components/Atoms/StoryElements/Video/stories.js +24 -0
- package/src/components/Atoms/StoryElements/Video/video.m.css +142 -0
- package/src/components/Atoms/StoryElements/Video/video.test.js +19 -0
- package/src/components/Atoms/StoryElements/imageGallery/README.md +18 -0
- package/src/components/Atoms/StoryElements/imageGallery/image-gallery.m.css +52 -0
- package/src/components/Atoms/StoryElements/imageGallery/image-gallery.test.js +19 -0
- package/src/components/Atoms/StoryElements/imageGallery/index.js +79 -0
- package/src/components/Atoms/StoryElements/imageGallery/stories.js +23 -0
- package/src/components/Atoms/StoryElements/withElementWrapper.js +13 -0
- package/src/components/Atoms/StoryElements/withElementWrapper.test.js +31 -0
- package/src/components/Atoms/StoryHeadline/index.js +56 -0
- package/src/components/Atoms/StoryHeadline/story-headline.m.css +36 -0
- package/src/components/Atoms/StoryReview/README.md +9 -0
- package/src/components/Atoms/StoryReview/index.js +39 -0
- package/src/components/Atoms/StoryReview/stories.js +8 -0
- package/src/components/Atoms/StoryReview/story-review.m.css +34 -0
- package/src/components/Atoms/StoryTags/README.md +9 -0
- package/src/components/Atoms/StoryTags/index.js +33 -0
- package/src/components/Atoms/StoryTags/stories.js +25 -0
- package/src/components/Atoms/StoryTags/story-tags.test.js +18 -0
- package/src/components/Atoms/StoryTags/tags.m.css +42 -0
- package/src/components/Atoms/Subheadline/README.md +17 -0
- package/src/components/Atoms/Subheadline/index.js +54 -0
- package/src/components/Atoms/Subheadline/stories.js +12 -0
- package/src/components/Atoms/Subheadline/subheadline.m.css +17 -0
- package/src/components/Atoms/TimeStamp/README.md +9 -0
- package/src/components/Atoms/TimeStamp/index.js +83 -0
- package/src/components/Atoms/TimeStamp/stories.js +9 -0
- package/src/components/Atoms/TimeStamp/timestamp.m.css +21 -0
- package/src/components/Fixture/config.json +2703 -0
- package/src/components/Fixture/dummy-collection.js +2790 -0
- package/src/components/Fixture/dummyStory.js +2368 -0
- package/src/components/Fixture/index.js +425 -0
- package/src/components/Fixture/slot-config.js +29 -0
- package/src/components/Fixture/timezone.js +1 -0
- package/src/components/Molecules/FollowUs/README.md +17 -0
- package/src/components/Molecules/FollowUs/follow-us.m.css +99 -0
- package/src/components/Molecules/FollowUs/index.js +97 -0
- package/src/components/Molecules/FollowUs/stories.js +9 -0
- package/src/components/Molecules/FullScreenImages/fullscreenimages.scss +56 -0
- package/src/components/Molecules/FullScreenImages/index.js +98 -0
- package/src/components/Molecules/KeyEvents/README.md +21 -0
- package/src/components/Molecules/KeyEvents/index.js +132 -0
- package/src/components/Molecules/KeyEvents/key-events.m.css +103 -0
- package/src/components/Molecules/KeyEvents/stories.js +28 -0
- package/src/components/Molecules/PageIntroductionCard/README.md +25 -0
- package/src/components/Molecules/PageIntroductionCard/index.js +50 -0
- package/src/components/Molecules/PageIntroductionCard/page-intro-card.m.css +61 -0
- package/src/components/Molecules/PageIntroductionCard/stories.js +16 -0
- package/src/components/Molecules/PortraitStoryCard/README.md +10 -0
- package/src/components/Molecules/PortraitStoryCard/index.js +54 -0
- package/src/components/Molecules/PortraitStoryCard/portrait-story-card.m.css +42 -0
- package/src/components/Molecules/PortraitStoryCard/stories.js +24 -0
- package/src/components/Molecules/SliderHorizontalCard/README.md +14 -0
- package/src/components/Molecules/SliderHorizontalCard/index.js +44 -0
- package/src/components/Molecules/SliderHorizontalCard/slider-horizontal-card.m.css +42 -0
- package/src/components/Molecules/SliderHorizontalCard/stories.js +30 -0
- package/src/components/Molecules/SocialShareTemplate/README.md +118 -0
- package/src/components/Molecules/SocialShareTemplate/__snapshots__/social-share-template.test.js.snap +285 -0
- package/src/components/Molecules/SocialShareTemplate/index.js +299 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-data.js +205 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-template.m.css +340 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-template.test.js +147 -0
- package/src/components/Molecules/SocialShareTemplate/stories.js +45 -0
- package/src/components/Molecules/StoryCard/README.md +75 -0
- package/src/components/Molecules/StoryCard/READMEBGIMAGE.md +25 -0
- package/src/components/Molecules/StoryCard/READMEBORDER.md +61 -0
- package/src/components/Molecules/StoryCard/index.js +248 -0
- package/src/components/Molecules/StoryCard/stories.js +223 -0
- package/src/components/Molecules/StoryCard/storycard.m.css +197 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/README.md +9 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/index.js +33 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/stories.js +31 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/story-card-with-bullet-point.m.css +7 -0
- package/src/components/Molecules/StoryElementCard/README.md +9 -0
- package/src/components/Molecules/StoryElementCard/index.js +511 -0
- package/src/components/Molecules/StoryElementCard/stories.js +27 -0
- package/src/components/Molecules/StoryElementCard/story-element-card.m.css +102 -0
- package/src/components/Molecules/StorycardContent/README.md +34 -0
- package/src/components/Molecules/StorycardContent/index.js +85 -0
- package/src/components/Molecules/StorycardContent/stories.js +39 -0
- package/src/components/Molecules/StorycardContent/storycardContent.m.css +27 -0
- package/src/components/Rows/AlternateCollectionFilter/README.md +38 -0
- package/src/components/Rows/AlternateCollectionFilter/alternate-collection-filter.m.css +254 -0
- package/src/components/Rows/AlternateCollectionFilter/index.js +179 -0
- package/src/components/Rows/AlternateCollectionFilter/stories.js +74 -0
- package/src/components/Rows/AsideCollection/README.md +27 -0
- package/src/components/Rows/AsideCollection/aside-collection.m.css +125 -0
- package/src/components/Rows/AsideCollection/aside-collection.test.js +34 -0
- package/src/components/Rows/AsideCollection/index.js +247 -0
- package/src/components/Rows/AsideCollection/stories.js +52 -0
- package/src/components/Rows/AstrologyCollection/README.md +40 -0
- package/src/components/Rows/AstrologyCollection/astrology-collection.m.css +173 -0
- package/src/components/Rows/AstrologyCollection/index.js +176 -0
- package/src/components/Rows/AstrologyCollection/stories.js +60 -0
- package/src/components/Rows/AuthorIntroductionCard/README.md +43 -0
- package/src/components/Rows/AuthorIntroductionCard/author-intro.m.css +334 -0
- package/src/components/Rows/AuthorIntroductionCard/author-intro.test.js +106 -0
- package/src/components/Rows/AuthorIntroductionCard/index.js +126 -0
- package/src/components/Rows/AuthorIntroductionCard/stories.js +43 -0
- package/src/components/Rows/AuthorsList/README.md +24 -0
- package/src/components/Rows/AuthorsList/author-list.test.js +50 -0
- package/src/components/Rows/AuthorsList/authors-list.m.css +22 -0
- package/src/components/Rows/AuthorsList/index.js +48 -0
- package/src/components/Rows/AuthorsList/stories.js +61 -0
- package/src/components/Rows/CollectionFilter/README.md +39 -0
- package/src/components/Rows/CollectionFilter/collection-filter.m.css +213 -0
- package/src/components/Rows/CollectionFilter/index.js +240 -0
- package/src/components/Rows/CollectionFilter/stories.js +77 -0
- package/src/components/Rows/ElevenStories/11-stories.m.css +85 -0
- package/src/components/Rows/ElevenStories/README.md +39 -0
- package/src/components/Rows/ElevenStories/index.js +338 -0
- package/src/components/Rows/ElevenStories/stories.js +70 -0
- package/src/components/Rows/FourColFiveStories/README.md +37 -0
- package/src/components/Rows/FourColFiveStories/four-col-five-stories.m.css +115 -0
- package/src/components/Rows/FourColFiveStories/index.js +170 -0
- package/src/components/Rows/FourColFiveStories/stories.js +68 -0
- package/src/components/Rows/FourColGrid/README.md +39 -0
- package/src/components/Rows/FourColGrid/four-col.m.css +50 -0
- package/src/components/Rows/FourColGrid/index.js +164 -0
- package/src/components/Rows/FourColGrid/stories.js +66 -0
- package/src/components/Rows/FourColPortraitStories/README.md +38 -0
- package/src/components/Rows/FourColPortraitStories/four-col-portrait-stories.m.css +45 -0
- package/src/components/Rows/FourColPortraitStories/index.js +149 -0
- package/src/components/Rows/FourColPortraitStories/stories.js +66 -0
- package/src/components/Rows/FourColSixteenStories/README.md +35 -0
- package/src/components/Rows/FourColSixteenStories/four-col-sixteen-stories.m.css +165 -0
- package/src/components/Rows/FourColSixteenStories/index.js +136 -0
- package/src/components/Rows/FourColSixteenStories/stories.js +47 -0
- package/src/components/Rows/FourColTwelveStory/README.md +39 -0
- package/src/components/Rows/FourColTwelveStory/four-col-twelve-story.m.css +80 -0
- package/src/components/Rows/FourColTwelveStory/index.js +175 -0
- package/src/components/Rows/FourColTwelveStory/stories.js +117 -0
- package/src/components/Rows/FourStorySlider/README.md +45 -0
- package/src/components/Rows/FourStorySlider/four-story-slider.m.css +78 -0
- package/src/components/Rows/FourStorySlider/index.js +128 -0
- package/src/components/Rows/FourStorySlider/stories.js +117 -0
- package/src/components/Rows/FourStorySliderPortrait/README.md +45 -0
- package/src/components/Rows/FourStorySliderPortrait/four-story-slider-portrait.m.css +272 -0
- package/src/components/Rows/FourStorySliderPortrait/index.js +128 -0
- package/src/components/Rows/FourStorySliderPortrait/stories.js +117 -0
- package/src/components/Rows/FourTabbedBigStorySlider/README.md +39 -0
- package/src/components/Rows/FourTabbedBigStorySlider/four-tabbed-big-story-slider.m.css +265 -0
- package/src/components/Rows/FourTabbedBigStorySlider/index.js +159 -0
- package/src/components/Rows/FourTabbedBigStorySlider/stories.js +63 -0
- package/src/components/Rows/FullScreenSlider/README.md +46 -0
- package/src/components/Rows/FullScreenSlider/full-screen-slider.m.css +162 -0
- package/src/components/Rows/FullScreenSlider/index.js +122 -0
- package/src/components/Rows/FullScreenSlider/stories.js +115 -0
- package/src/components/Rows/HalfScreenSlider/README.md +43 -0
- package/src/components/Rows/HalfScreenSlider/half-screen-slider.m.css +80 -0
- package/src/components/Rows/HalfScreenSlider/index.js +112 -0
- package/src/components/Rows/HalfScreenSlider/stories.js +115 -0
- package/src/components/Rows/IntroductionCard/README.md +11 -0
- package/src/components/Rows/IntroductionCard/index.js +72 -0
- package/src/components/Rows/IntroductionCard/intro-card.module.css +102 -0
- package/src/components/Rows/IntroductionCard/stories.js +32 -0
- package/src/components/Rows/ListComponent/README.md +48 -0
- package/src/components/Rows/ListComponent/index.js +149 -0
- package/src/components/Rows/ListComponent/list-component.m.css +65 -0
- package/src/components/Rows/ListComponent/stories.js +63 -0
- package/src/components/Rows/Listicles/README.md +32 -0
- package/src/components/Rows/Listicles/index.js +162 -0
- package/src/components/Rows/Listicles/listicles.m.css +149 -0
- package/src/components/Rows/Listicles/stories.js +66 -0
- package/src/components/Rows/MagazineEditions/README.md +21 -0
- package/src/components/Rows/MagazineEditions/index.js +96 -0
- package/src/components/Rows/MagazineEditions/magazine-editions.m.css +50 -0
- package/src/components/Rows/MagazineEditions/magazine-editions.test.js +33 -0
- package/src/components/Rows/MagazineEditions/stories.js +45 -0
- package/src/components/Rows/MagazineHeaderCard/README.md +21 -0
- package/src/components/Rows/MagazineHeaderCard/index.js +77 -0
- package/src/components/Rows/MagazineHeaderCard/magazine-cards.m.css +107 -0
- package/src/components/Rows/MagazineHeaderCard/stories.js +36 -0
- package/src/components/Rows/MagazineWidget/README.md +21 -0
- package/src/components/Rows/MagazineWidget/index.js +132 -0
- package/src/components/Rows/MagazineWidget/stories.js +43 -0
- package/src/components/Rows/OneColStoryList/README.md +48 -0
- package/src/components/Rows/OneColStoryList/index.js +217 -0
- package/src/components/Rows/OneColStoryList/one-col-story-list.m.css +91 -0
- package/src/components/Rows/OneColStoryList/stories.js +61 -0
- package/src/components/Rows/OpinionCollection/README.md +36 -0
- package/src/components/Rows/OpinionCollection/index.js +156 -0
- package/src/components/Rows/OpinionCollection/opinion-collection.m.css +210 -0
- package/src/components/Rows/OpinionCollection/stories.js +82 -0
- package/src/components/Rows/SixColSixStories/README.md +39 -0
- package/src/components/Rows/SixColSixStories/index.js +182 -0
- package/src/components/Rows/SixColSixStories/six-col-six-stories.m.css +92 -0
- package/src/components/Rows/SixColSixStories/stories.js +76 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/custom-attributes.m.css +78 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/index.js +103 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/event-story.m.css +138 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/index.js +56 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/stories.js +78 -0
- package/src/components/Rows/StoryTemplates/EventStoryTemplates/template.js +169 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/README.md +19 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/__snapshots__/listicle-story.test.js.snap +841 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/index.js +477 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.m.css +285 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.test.js +47 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicleUtils.js +16 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/stories.js +125 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/README.md +25 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/index.js +74 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/live-blog.m.css +320 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/stories.js +114 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/templates.js +449 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/index.js +381 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo-story.test.js +144 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo.m.css +199 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/stories.js +117 -0
- package/src/components/Rows/StoryTemplates/Snapshot/README.md +9 -0
- package/src/components/Rows/StoryTemplates/Snapshot/index.js +103 -0
- package/src/components/Rows/StoryTemplates/Snapshot/snapshot.m.css +88 -0
- package/src/components/Rows/StoryTemplates/Snapshot/stories.js +95 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/README.md +49 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/index.js +100 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/stories.js +120 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/templates.js +413 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.m.css +496 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.test.js +222 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/README.md +31 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/index.js +294 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/stories.js +217 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/video-story.m.css +185 -0
- package/src/components/Rows/ThreeColFlexStories/README.md +38 -0
- package/src/components/Rows/ThreeColFlexStories/index.js +217 -0
- package/src/components/Rows/ThreeColFlexStories/stories.js +73 -0
- package/src/components/Rows/ThreeColFlexStories/three-col-flex-stories.m.css +58 -0
- package/src/components/Rows/ThreeColFourteenStory/README.md +28 -0
- package/src/components/Rows/ThreeColFourteenStory/index.js +131 -0
- package/src/components/Rows/ThreeColFourteenStory/stories.js +60 -0
- package/src/components/Rows/ThreeColFourteenStory/three-col-fourteen-story.m.css +51 -0
- package/src/components/Rows/ThreeColGrid/README.md +36 -0
- package/src/components/Rows/ThreeColGrid/index.js +177 -0
- package/src/components/Rows/ThreeColGrid/stories.js +70 -0
- package/src/components/Rows/ThreeColGrid/three-col.m.css +43 -0
- package/src/components/Rows/ThreeColSevenStory/README.md +36 -0
- package/src/components/Rows/ThreeColSevenStory/index.js +242 -0
- package/src/components/Rows/ThreeColSevenStory/stories.js +103 -0
- package/src/components/Rows/ThreeColSevenStory/three-col-seven-story.m.css +44 -0
- package/src/components/Rows/ThreeColSixStories/README.md +40 -0
- package/src/components/Rows/ThreeColSixStories/index.js +183 -0
- package/src/components/Rows/ThreeColSixStories/stories.js +73 -0
- package/src/components/Rows/ThreeColSixStories/three-col-six-stories.m.css +32 -0
- package/src/components/Rows/ThreeColTwelveStories/README.md +41 -0
- package/src/components/Rows/ThreeColTwelveStories/index.js +153 -0
- package/src/components/Rows/ThreeColTwelveStories/stories.js +51 -0
- package/src/components/Rows/ThreeColTwelveStories/three-col-twelve-stories.m.css +105 -0
- package/src/components/Rows/TwoColFourStory/README.md +33 -0
- package/src/components/Rows/TwoColFourStory/index.js +162 -0
- package/src/components/Rows/TwoColFourStory/stories.js +68 -0
- package/src/components/Rows/TwoColFourStory/two-col-four-story.m.css +66 -0
- package/src/components/Rows/TwoColFourStoryHighlight/README.md +35 -0
- package/src/components/Rows/TwoColFourStoryHighlight/index.js +138 -0
- package/src/components/Rows/TwoColFourStoryHighlight/stories.js +48 -0
- package/src/components/Rows/TwoColFourStoryHighlight/two-col-four-story-highlight.m.css +116 -0
- package/src/components/Rows/TwoColSevenStories/README.md +37 -0
- package/src/components/Rows/TwoColSevenStories/index.js +150 -0
- package/src/components/Rows/TwoColSevenStories/stories.js +100 -0
- package/src/components/Rows/TwoColSevenStories/two-col-seven-stories.m.css +182 -0
- package/src/components/Rows/TwoColSixStories/README.md +36 -0
- package/src/components/Rows/TwoColSixStories/index.js +140 -0
- package/src/components/Rows/TwoColSixStories/stories.js +67 -0
- package/src/components/Rows/TwoColSixStories/two-col-six-stories.m.css +174 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/README.md +34 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/index.js +193 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/stories.js +45 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/two-col-ten-stories-sidebar.m.css +64 -0
- package/src/components/Rows/TwoColThreeStory/README.md +40 -0
- package/src/components/Rows/TwoColThreeStory/index.js +155 -0
- package/src/components/Rows/TwoColThreeStory/stories.js +68 -0
- package/src/components/Rows/TwoColThreeStory/two-col-three-story.m.css +36 -0
- package/src/components/SharedContext.js +13 -0
- package/src/components/Svgs/Loading/loading.js +133 -0
- package/src/components/Svgs/Loading/loading.m.css +6 -0
- package/src/components/Svgs/SocialIcons/circular-color/copylink.js +22 -0
- package/src/components/Svgs/SocialIcons/circular-color/email.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/facebook.js +23 -0
- package/src/components/Svgs/SocialIcons/circular-color/instagram.js +24 -0
- package/src/components/Svgs/SocialIcons/circular-color/jio.js +30 -0
- package/src/components/Svgs/SocialIcons/circular-color/linkedin.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/pinterest.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/reddit.js +27 -0
- package/src/components/Svgs/SocialIcons/circular-color/telegram.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-color/tiktok.js +40 -0
- package/src/components/Svgs/SocialIcons/circular-color/twitter.js +22 -0
- package/src/components/Svgs/SocialIcons/circular-color/whatsapp.js +18 -0
- package/src/components/Svgs/SocialIcons/circular-color/youtube.js +16 -0
- package/src/components/Svgs/SocialIcons/circular-plain/copylink.js +19 -0
- package/src/components/Svgs/SocialIcons/circular-plain/email.js +19 -0
- package/src/components/Svgs/SocialIcons/circular-plain/facebook.js +29 -0
- package/src/components/Svgs/SocialIcons/circular-plain/instagram.js +21 -0
- package/src/components/Svgs/SocialIcons/circular-plain/linkedin.js +21 -0
- package/src/components/Svgs/SocialIcons/circular-plain/reddit.js +33 -0
- package/src/components/Svgs/SocialIcons/circular-plain/telegram.js +22 -0
- package/src/components/Svgs/SocialIcons/circular-plain/twitter.js +21 -0
- package/src/components/Svgs/SocialIcons/circular-plain/whatsapp.js +23 -0
- package/src/components/Svgs/SocialIcons/circular-plain/youtube.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/copylink.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/email.js +23 -0
- package/src/components/Svgs/SocialIcons/plain/facebook.js +21 -0
- package/src/components/Svgs/SocialIcons/plain/google-news.js +26 -0
- package/src/components/Svgs/SocialIcons/plain/instagram.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/linkedin.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/pinterest.js +19 -0
- package/src/components/Svgs/SocialIcons/plain/reddit.js +25 -0
- package/src/components/Svgs/SocialIcons/plain/twitter.js +17 -0
- package/src/components/Svgs/SocialIcons/plain/whatsapp.js +19 -0
- package/src/components/Svgs/SocialIcons/plain/youtube.js +17 -0
- package/src/components/Svgs/SocialIcons/square/copylink.js +19 -0
- package/src/components/Svgs/SocialIcons/square/email.js +13 -0
- package/src/components/Svgs/SocialIcons/square/facebook.js +20 -0
- package/src/components/Svgs/SocialIcons/square/instagram.js +17 -0
- package/src/components/Svgs/SocialIcons/square/linkedin.js +13 -0
- package/src/components/Svgs/SocialIcons/square/reddit.js +24 -0
- package/src/components/Svgs/SocialIcons/square/telegram.js +13 -0
- package/src/components/Svgs/SocialIcons/square/twitter.js +19 -0
- package/src/components/Svgs/SocialIcons/square/whatsapp.js +15 -0
- package/src/components/Svgs/SocialIcons/square/youtube.js +13 -0
- package/src/components/Svgs/TTS-Icons/AudioSpeakerIcon.js +14 -0
- package/src/components/Svgs/TTS-Icons/BackwardIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/ClosePlayerIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/ForwordIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/PauseIconSvg.js +13 -0
- package/src/components/Svgs/TTS-Icons/PlayIconSvg.js +15 -0
- package/src/components/Svgs/TTS-Icons/ReplayIcon.js +16 -0
- package/src/components/Svgs/back-arrow.js +22 -0
- package/src/components/Svgs/calender.js +20 -0
- package/src/components/Svgs/caret-right.svg +3 -0
- package/src/components/Svgs/clock-icon.js +17 -0
- package/src/components/Svgs/close-icon.js +15 -0
- package/src/components/Svgs/crown.js +31 -0
- package/src/components/Svgs/fallbackImage.js +42 -0
- package/src/components/Svgs/hyperlink.js +17 -0
- package/src/components/Svgs/key.js +33 -0
- package/src/components/Svgs/large-share-icon.js +64 -0
- package/src/components/Svgs/left-arrow.js +17 -0
- package/src/components/Svgs/liveicon.js +14 -0
- package/src/components/Svgs/location.js +19 -0
- package/src/components/Svgs/lock.js +31 -0
- package/src/components/Svgs/photo-icons.js +84 -0
- package/src/components/Svgs/right-arrow.js +17 -0
- package/src/components/Svgs/share-icon.js +66 -0
- package/src/components/Svgs/star.js +33 -0
- package/src/components/Svgs/user-fallback-icon.js +19 -0
- package/src/components/Svgs/video-icons.js +104 -0
- package/src/components/Svgs/visual-story-icons.js +77 -0
- package/src/components/Typography/README.md +7 -0
- package/src/components/Typography/index.js +47 -0
- package/src/components/Typography/stories.js +10 -0
- package/src/components/Typography/style.m.css +11 -0
- package/src/constants.js +2 -0
- package/src/entry-points.js +373 -0
- package/src/guide/stories.js +18 -0
- package/src/hydration-component/index.js +37 -0
- package/src/hydration-component/useNearScreen.js +56 -0
- package/src/index.js +99 -0
- package/src/utils/copy-link.js +37 -0
- package/src/utils/dateFnsLocales.js +9 -0
- package/src/utils/img-size-utils.js +102 -0
- package/src/utils/testing-utils.js +8 -0
- package/src/utils/utils.js +615 -0
- package/src/utils/utils.test.js +108 -0
- package/storybook/index.js +83 -0
- package/AlsoRead/styles.arrow.css +0 -1
- package/AlternateCollectionFilter/styles.arrow.css +0 -1
- package/AsideCollection/styles.arrow.css +0 -1
- package/AstrologyCollection/styles.arrow.css +0 -1
- package/Attachment/styles.arrow.css +0 -1
- package/Author/styles.arrow.css +0 -1
- package/AuthorIntroductionCard/styles.arrow.css +0 -1
- package/AuthorWithTime/styles.arrow.css +0 -1
- package/AuthorsList/styles.arrow.css +0 -1
- package/BigFact/styles.arrow.css +0 -1
- package/BlockQuote/styles.arrow.css +0 -1
- package/Blurb/styles.arrow.css +0 -1
- package/CollectionFilter/styles.arrow.css +0 -1
- package/CollectionName/styles.arrow.css +0 -1
- package/ElevenStories/styles.arrow.css +0 -1
- package/EventStoryTemplate/styles.arrow.css +0 -1
- package/FollowUs/styles.arrow.css +0 -1
- package/FourColFiveStories/styles.arrow.css +0 -1
- package/FourColGrid/styles.arrow.css +0 -1
- package/FourColPortraitStories/styles.arrow.css +0 -1
- package/FourColSixteenStories/styles.arrow.css +0 -1
- package/FourColTwelveStories/styles.arrow.css +0 -1
- package/FourStorySlider/styles.arrow.css +0 -1
- package/FourStorySliderPortrait/styles.arrow.css +0 -1
- package/FourTabbedBigStorySlider/styles.arrow.css +0 -1
- package/FullScreenSlider/styles.arrow.css +0 -1
- package/HalfScreenSlider/styles.arrow.css +0 -1
- package/Headline/styles.arrow.css +0 -1
- package/HeroImage/styles.arrow.css +0 -1
- package/Image/styles.arrow.css +0 -1
- package/ImageGallery/styles.arrow.css +0 -1
- package/ImageSlideshow/styles.arrow.css +0 -1
- package/IntroductionCard/styles.arrow.css +0 -1
- package/KeyEvents/styles.arrow.css +0 -1
- package/ListComponent/styles.arrow.css +0 -1
- package/ListicleStoryTemplate/styles.arrow.css +0 -1
- package/Listicles/styles.arrow.css +0 -1
- package/LiveBlogStoryTemplate/styles.arrow.css +0 -1
- package/LoadmoreButton/styles.arrow.css +0 -1
- package/MagazineEditions/styles.arrow.css +0 -1
- package/MagazineHeaderCard/styles.arrow.css +0 -1
- package/MagazineWidget/styles.arrow.css +0 -1
- package/OneColStoryList/styles.arrow.css +0 -1
- package/OpinionCollection/styles.arrow.css +0 -1
- package/PageIntroductionCard/styles.arrow.css +0 -1
- package/PhotoStoryTemplate/styles.arrow.css +0 -1
- package/PublishDetails/styles.arrow.css +0 -1
- package/QuestionAnswer/styles.arrow.css +0 -1
- package/Quote/styles.arrow.css +0 -1
- package/Reference/styles.arrow.css +0 -1
- package/ScrollSnap/styles.arrow.css +0 -1
- package/SectionTag/styles.arrow.css +0 -1
- package/SixColSixStories/styles.arrow.css +0 -1
- package/Snapshot/styles.arrow.css +0 -1
- package/SocialShareTemplate/styles.arrow.css +0 -1
- package/StoryCard/styles.arrow.css +0 -1
- package/StoryCollection/styles.arrow.css +0 -1
- package/StoryElement/styles.arrow.css +0 -1
- package/StoryElementCard/styles.arrow.css +0 -1
- package/StorycardContent/styles.arrow.css +0 -1
- package/Subheadline/styles.arrow.css +0 -1
- package/Summary/styles.arrow.css +0 -1
- package/Text/styles.arrow.css +0 -1
- package/TextStoryTemplate/styles.arrow.css +0 -1
- package/ThreeColFlexStories/styles.arrow.css +0 -1
- package/ThreeColFourteenStories/styles.arrow.css +0 -1
- package/ThreeColGrid/styles.arrow.css +0 -1
- package/ThreeColSevenStory/styles.arrow.css +0 -1
- package/ThreeColSixStories/styles.arrow.css +0 -1
- package/ThreeColTwelveStories/styles.arrow.css +0 -1
- package/TimeStamp/styles.arrow.css +0 -1
- package/TwoColFourStories/styles.arrow.css +0 -1
- package/TwoColFourStoryHighlight/styles.arrow.css +0 -1
- package/TwoColSevenStories/styles.arrow.css +0 -1
- package/TwoColSixStories/styles.arrow.css +0 -1
- package/TwoColTenStoriesSidebar/styles.arrow.css +0 -1
- package/TwoColThreeStories/styles.arrow.css +0 -1
- package/Video/styles.arrow.css +0 -1
- package/VideoStoryTemplate/styles.arrow.css +0 -1
- package/cjs/index.js +0 -1
- package/esm/index.js +0 -1
- /package/{app.scss → assets/stylesheets/app.scss} +0 -0
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/* root card container */
|
|
2
|
+
.summary {
|
|
3
|
+
border: 1px solid #fff;
|
|
4
|
+
border-radius: 10px;
|
|
5
|
+
padding: var(--arrow-spacing-s);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* heading */
|
|
9
|
+
.heading-row {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.heading-left {
|
|
16
|
+
display: flex;
|
|
17
|
+
align-items: center;
|
|
18
|
+
gap: var(--arrow-spacing-xs);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.heading-icon {
|
|
22
|
+
display: flex;
|
|
23
|
+
align-items: center;
|
|
24
|
+
flex-shrink: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.headline {
|
|
28
|
+
margin-bottom: 0;
|
|
29
|
+
font-size: var(--arrow-fs-xs);
|
|
30
|
+
font-weight: var(--arrow-fw-bold);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.subtitle {
|
|
34
|
+
font-size: var(--arrow-fs-xxs) !important;
|
|
35
|
+
margin-top: var(--arrow-spacing-xxs);
|
|
36
|
+
margin-bottom: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.subtitle.dark {
|
|
40
|
+
color: var(--arrow-c-mono4);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.subtitle.light {
|
|
44
|
+
color: var(--arrow-c-invert-mono4);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/* separator */
|
|
48
|
+
.separator {
|
|
49
|
+
border: none;
|
|
50
|
+
margin: var(--arrow-spacing-s) 0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.separator.dark {
|
|
54
|
+
border-top: 1px solid var(--arrow-c-mono7);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.separator.light {
|
|
58
|
+
border-top: 1px solid var(--arrow-c-invert-mono7);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/* content */
|
|
62
|
+
.content * {
|
|
63
|
+
font-size: var(--arrow-fs-xs) !important;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.content > * {
|
|
67
|
+
margin-bottom: 15px !important;
|
|
68
|
+
line-height: 1.5;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.content.light > * {
|
|
72
|
+
color: var(--arrow-c-light);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.content > ul {
|
|
76
|
+
list-style: initial;
|
|
77
|
+
padding: 0 var(--arrow-spacing-xl) 0 var(--arrow-spacing-xl);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.content > ol {
|
|
81
|
+
list-style: auto;
|
|
82
|
+
padding: 0 var(--arrow-spacing-xl) 0 var(--arrow-spacing-xl);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.content li {
|
|
86
|
+
margin-bottom: 15px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.content a {
|
|
90
|
+
color: var(--textElementHyperlinkColor);
|
|
91
|
+
border-bottom: 1px solid var(--textElementHyperlinkColor);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/* theme */
|
|
95
|
+
.dark {
|
|
96
|
+
color: var(--arrow-c-mono1);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.light {
|
|
100
|
+
color: var(--arrow-c-invert-mono1);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.light a {
|
|
104
|
+
color: var(--arrow-c-invert-mono1);
|
|
105
|
+
border-bottom: 1px solid var(--arrow-c-invert-mono1);
|
|
106
|
+
}
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
import React, { useState, useEffect, useRef } from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
|
+
import { useSelector } from "react-redux";
|
|
4
|
+
import { withElementWrapper } from "../withElementWrapper";
|
|
5
|
+
import get from "lodash/get";
|
|
6
|
+
import { getTextColor, updateContentLinks } from "../../../../utils/utils";
|
|
7
|
+
import { useStateValue } from "../../../SharedContext";
|
|
8
|
+
import "./ai-summary.m.css";
|
|
9
|
+
import { AI_ICONS } from "./ai-icons";
|
|
10
|
+
|
|
11
|
+
// Walk the HTML string revealing only `charCount` visible characters while
|
|
12
|
+
// keeping all tags intact so CSS rules apply consistently throughout the animation.
|
|
13
|
+
function revealHtml(html, charCount) {
|
|
14
|
+
let count = 0;
|
|
15
|
+
let result = "";
|
|
16
|
+
let inTag = false;
|
|
17
|
+
|
|
18
|
+
for (let i = 0; i < html.length; i++) {
|
|
19
|
+
const char = html[i];
|
|
20
|
+
if (char === "<") {
|
|
21
|
+
inTag = true;
|
|
22
|
+
result += char;
|
|
23
|
+
} else if (char === ">") {
|
|
24
|
+
inTag = false;
|
|
25
|
+
result += char;
|
|
26
|
+
} else if (inTag) {
|
|
27
|
+
result += char;
|
|
28
|
+
} else {
|
|
29
|
+
result += char;
|
|
30
|
+
count++;
|
|
31
|
+
if (count >= charCount) break;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return result;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const Chevron = ({ isExpanded }) => (
|
|
38
|
+
<svg
|
|
39
|
+
width="16"
|
|
40
|
+
height="16"
|
|
41
|
+
viewBox="0 0 16 16"
|
|
42
|
+
fill="none"
|
|
43
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
44
|
+
style={{
|
|
45
|
+
transform: isExpanded ? "rotate(180deg)" : "rotate(0deg)",
|
|
46
|
+
transition: "transform 0.2s ease",
|
|
47
|
+
flexShrink: 0
|
|
48
|
+
}}
|
|
49
|
+
aria-hidden="true">
|
|
50
|
+
<path d="M4 6L8 10L12 6" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" />
|
|
51
|
+
</svg>
|
|
52
|
+
);
|
|
53
|
+
|
|
54
|
+
const AISummaryBase = ({ element, opts = {}, css = {} }) => {
|
|
55
|
+
const isBotRequest = useSelector((state) => get(state, ["qt", "isBotRequest"], false));
|
|
56
|
+
const enableDarkMode = useSelector((state) => get(state, ["header", "isDarkModeEnabled"], false));
|
|
57
|
+
const { primaryColor = "#4860BC", darkPrimaryColor = "#4860BC" } = useSelector((state) =>
|
|
58
|
+
get(state, ["qt", "config", "pagebuilder-config", "general"], {})
|
|
59
|
+
);
|
|
60
|
+
const configData = useStateValue() || {};
|
|
61
|
+
const { isExternalLink = true, headline, iconType = "star", subtitle, expandOnStart = false } = opts;
|
|
62
|
+
const icon = AI_ICONS[iconType] || AI_ICONS.star;
|
|
63
|
+
|
|
64
|
+
// Bots start expanded (full content visible for SEO); readers start collapsed
|
|
65
|
+
const [isExpanded, setIsExpanded] = useState(isBotRequest || expandOnStart);
|
|
66
|
+
const [typedLength, setTypedLength] = useState(0);
|
|
67
|
+
const [typingDone, setTypingDone] = useState(() => isBotRequest);
|
|
68
|
+
const typingStarted = useRef(false);
|
|
69
|
+
|
|
70
|
+
const content = element.text;
|
|
71
|
+
const text = (isExternalLink && content && updateContentLinks(content)) || content || "";
|
|
72
|
+
const plainText = text.replace(/<[^>]*>/g, "");
|
|
73
|
+
|
|
74
|
+
// Reset typing state on collapse so re-expanding always starts fresh
|
|
75
|
+
useEffect(() => {
|
|
76
|
+
if (!isExpanded) {
|
|
77
|
+
typingStarted.current = false;
|
|
78
|
+
setTypedLength(0);
|
|
79
|
+
if (!isBotRequest) setTypingDone(false);
|
|
80
|
+
}
|
|
81
|
+
}, [isExpanded, isBotRequest]);
|
|
82
|
+
|
|
83
|
+
// Typing effect — only for non-bot requests, starts when the user expands
|
|
84
|
+
useEffect(() => {
|
|
85
|
+
if (!content || isBotRequest) {
|
|
86
|
+
setTypingDone(true);
|
|
87
|
+
return;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
if (!isExpanded || typingStarted.current) return;
|
|
91
|
+
typingStarted.current = true;
|
|
92
|
+
|
|
93
|
+
setTypedLength(0);
|
|
94
|
+
setTypingDone(false);
|
|
95
|
+
|
|
96
|
+
let i = 0;
|
|
97
|
+
const interval = setInterval(() => {
|
|
98
|
+
i++;
|
|
99
|
+
if (i >= plainText.length) {
|
|
100
|
+
setTypingDone(true);
|
|
101
|
+
clearInterval(interval);
|
|
102
|
+
} else {
|
|
103
|
+
setTypedLength(i);
|
|
104
|
+
}
|
|
105
|
+
}, 10);
|
|
106
|
+
|
|
107
|
+
return () => clearInterval(interval);
|
|
108
|
+
}, [content, isBotRequest, plainText, isExpanded]);
|
|
109
|
+
|
|
110
|
+
if (!content) return null;
|
|
111
|
+
|
|
112
|
+
const {
|
|
113
|
+
borderColor = primaryColor,
|
|
114
|
+
backgroundColor = "#FFF",
|
|
115
|
+
iconColor = primaryColor,
|
|
116
|
+
darkBorderColor = darkPrimaryColor,
|
|
117
|
+
darkBackgroundColor = "#FFF",
|
|
118
|
+
darkIconColor = darkPrimaryColor
|
|
119
|
+
} = css;
|
|
120
|
+
const activeBorderColor = enableDarkMode ? darkBorderColor : borderColor;
|
|
121
|
+
const activeBackgroundColor = enableDarkMode ? darkBackgroundColor : backgroundColor;
|
|
122
|
+
const activeIconColor = enableDarkMode ? darkIconColor : iconColor;
|
|
123
|
+
const textInvertColor = getTextColor(activeBackgroundColor) || configData.theme;
|
|
124
|
+
|
|
125
|
+
const toggle = () => setIsExpanded((prev) => !prev);
|
|
126
|
+
const interactiveProps = !isBotRequest
|
|
127
|
+
? {
|
|
128
|
+
onClick: toggle,
|
|
129
|
+
onKeyDown: (e) => {
|
|
130
|
+
if (e.key === "Enter" || e.key === " ") toggle();
|
|
131
|
+
},
|
|
132
|
+
role: "button",
|
|
133
|
+
tabIndex: 0,
|
|
134
|
+
"aria-expanded": isExpanded,
|
|
135
|
+
style: { cursor: "pointer" }
|
|
136
|
+
}
|
|
137
|
+
: {};
|
|
138
|
+
|
|
139
|
+
return (
|
|
140
|
+
<div
|
|
141
|
+
className="arr--summary-element"
|
|
142
|
+
styleName="summary"
|
|
143
|
+
data-test-id="summary"
|
|
144
|
+
style={{ borderColor: activeBorderColor, backgroundColor: activeBackgroundColor }}>
|
|
145
|
+
<div styleName={textInvertColor} data-test-id="summary-headline" {...interactiveProps}>
|
|
146
|
+
<div styleName="heading-row">
|
|
147
|
+
<div styleName="heading-left">
|
|
148
|
+
<span styleName="heading-icon" data-test-id="ai-summary-icon" style={{ color: activeIconColor }}>
|
|
149
|
+
{icon}
|
|
150
|
+
</span>
|
|
151
|
+
<div styleName={`headline ${textInvertColor}`}>{headline || "Quick Read"}</div>
|
|
152
|
+
</div>
|
|
153
|
+
{!isBotRequest && <Chevron isExpanded={isExpanded} />}
|
|
154
|
+
</div>
|
|
155
|
+
<p styleName={`subtitle ${textInvertColor}`}>{subtitle || "AI generated summary, newsroom reviewed"}</p>
|
|
156
|
+
</div>
|
|
157
|
+
{isExpanded && (
|
|
158
|
+
<>
|
|
159
|
+
<hr styleName={`separator ${textInvertColor}`} />
|
|
160
|
+
<div style={{ position: "relative" }}>
|
|
161
|
+
{/* Hidden full content reserves the final height from the first frame */}
|
|
162
|
+
<div
|
|
163
|
+
styleName={`content ${textInvertColor}`}
|
|
164
|
+
dangerouslySetInnerHTML={{ __html: text }}
|
|
165
|
+
style={!typingDone ? { visibility: "hidden" } : undefined}
|
|
166
|
+
/>
|
|
167
|
+
{/* Typing overlay — removed once animation completes */}
|
|
168
|
+
{!typingDone && (
|
|
169
|
+
<div
|
|
170
|
+
styleName={`content ${textInvertColor}`}
|
|
171
|
+
dangerouslySetInnerHTML={{ __html: revealHtml(text, typedLength) }}
|
|
172
|
+
style={{ position: "absolute", top: 0, left: 0, right: 0 }}
|
|
173
|
+
/>
|
|
174
|
+
)}
|
|
175
|
+
</div>
|
|
176
|
+
</>
|
|
177
|
+
)}
|
|
178
|
+
</div>
|
|
179
|
+
);
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
AISummaryBase.propTypes = {
|
|
183
|
+
element: PropTypes.shape({ text: PropTypes.string }),
|
|
184
|
+
opts: PropTypes.shape({
|
|
185
|
+
isExternalLink: PropTypes.bool,
|
|
186
|
+
headline: PropTypes.string,
|
|
187
|
+
iconType: PropTypes.oneOf(["star", "sparkle", "wand", "diamond"]),
|
|
188
|
+
subtitle: PropTypes.string,
|
|
189
|
+
expandOnStart: PropTypes.bool
|
|
190
|
+
}),
|
|
191
|
+
css: PropTypes.shape({
|
|
192
|
+
borderColor: PropTypes.string,
|
|
193
|
+
backgroundColor: PropTypes.string,
|
|
194
|
+
iconColor: PropTypes.string,
|
|
195
|
+
darkBorderColor: PropTypes.string,
|
|
196
|
+
darkBackgroundColor: PropTypes.string,
|
|
197
|
+
darkIconColor: PropTypes.string
|
|
198
|
+
})
|
|
199
|
+
};
|
|
200
|
+
|
|
201
|
+
Chevron.propTypes = {
|
|
202
|
+
isExpanded: PropTypes.bool
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
export { AISummaryBase };
|
|
206
|
+
export const AISummary = withElementWrapper(AISummaryBase);
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { withStore } from "../../../../../storybook";
|
|
3
|
+
import { generateStory, generateStoryElementData } from "../../../Fixture";
|
|
4
|
+
import { AISummary } from "./index";
|
|
5
|
+
import { color, text, select } from "@storybook/addon-knobs";
|
|
6
|
+
|
|
7
|
+
const element = generateStoryElementData("summary");
|
|
8
|
+
// Override published-at to a date after the Feb 2025 cutoff
|
|
9
|
+
const story = generateStory(undefined, { "published-at": new Date("2025-03-01").getTime() });
|
|
10
|
+
|
|
11
|
+
withStore("Atoms/Story Elements/AI Summary", {}, null).add("Default", () => (
|
|
12
|
+
<AISummary
|
|
13
|
+
element={element}
|
|
14
|
+
story={story}
|
|
15
|
+
opts={{
|
|
16
|
+
headline: text("Headline", "AI Summary"),
|
|
17
|
+
subtitle: text("Subtitle", "AI-generated overview for quick reading."),
|
|
18
|
+
iconType: select("Icon Type", ["star", "sparkle", "wand", "diamond"], "star"),
|
|
19
|
+
expandOnStart: true
|
|
20
|
+
}}
|
|
21
|
+
css={{
|
|
22
|
+
borderColor: color("Border Color", "#4860BC"),
|
|
23
|
+
backgroundColor: color("Background Color", "#f2f2f2"),
|
|
24
|
+
iconColor: color("Icon Color", "#4860BC")
|
|
25
|
+
}}
|
|
26
|
+
/>
|
|
27
|
+
));
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# AlsoRead
|
|
2
|
+
|
|
3
|
+
Component to display the also read element.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
#### AlsoRead story element with default template
|
|
8
|
+
|
|
9
|
+
```jsx
|
|
10
|
+
<AlsoRead story={story} element={element} template="default" />
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
#### AlsoRead story element with image right align template
|
|
14
|
+
|
|
15
|
+
```jsx
|
|
16
|
+
<AlsoRead story={story} element={element} template="imageRightAlign" />
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
#### AlsoRead story element with text left align template
|
|
20
|
+
|
|
21
|
+
```jsx
|
|
22
|
+
<AlsoRead element={element} template="textLeftAlign" />
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
#### AlsoRead story element with custom title
|
|
26
|
+
|
|
27
|
+
```jsx
|
|
28
|
+
const css = { title: "Headline" };
|
|
29
|
+
|
|
30
|
+
<AlsoRead story={story} element={element} template="textLeftAlign" css={css} />;
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
#### AlsoRead story element with text color
|
|
34
|
+
|
|
35
|
+
```jsx
|
|
36
|
+
const css = { textcolor: "#333333" };
|
|
37
|
+
|
|
38
|
+
<AlsoRead story={story} element={element} template="default" css={css} />;
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
#### Replace default also read element template with custom template passed using render
|
|
42
|
+
|
|
43
|
+
```jsx
|
|
44
|
+
const customTemplate = ({ element }) => <h3 dangerouslySetInnerHTML={{ __html: element.text }} />;
|
|
45
|
+
|
|
46
|
+
<AlsoRead element={element} render={customTemplate} />;
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
<!-- PROPS -->
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
@value viewports: "../../../../../assets/stylesheets/viewports.m.css";
|
|
2
|
+
@value mobile from viewports;
|
|
3
|
+
|
|
4
|
+
.card-image img {
|
|
5
|
+
position: absolute;
|
|
6
|
+
top: 0;
|
|
7
|
+
height: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.default-text {
|
|
11
|
+
font-family: var(--arrow-typeface-secondary);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.alsoread-textLeftAlign .default-text,
|
|
15
|
+
.alsoread-imageRightAlign .default-text {
|
|
16
|
+
font-size: var(--arrow-fs-xs);
|
|
17
|
+
font-weight: var(--arrow-fw-bold);
|
|
18
|
+
line-height: var(--arrow-lh-3);
|
|
19
|
+
@media (min-width: mobile) {
|
|
20
|
+
font-size: var(--arrow-fs-s);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.headline {
|
|
25
|
+
line-height: var(--arrow-lh-3);
|
|
26
|
+
font-weight: var(--arrow-fw-bold);
|
|
27
|
+
font-family: var(--arrow-typeface-primary);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.alsoread-default .headline {
|
|
31
|
+
padding-top: var(--arrow-spacing-xs);
|
|
32
|
+
font-size: var(--arrow-fs-s);
|
|
33
|
+
@media (min-width: mobile) {
|
|
34
|
+
padding-top: 0;
|
|
35
|
+
font-size: var(--arrow-fs-l);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.alsoread-textLeftAlign .headline {
|
|
40
|
+
margin-top: var(--arrow-spacing-xs);
|
|
41
|
+
font-size: var(--arrow-fs-m);
|
|
42
|
+
@media (min-width: mobile) {
|
|
43
|
+
font-size: var(--arrow-fs-l);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.alsoread-imageRightAlign .headline {
|
|
48
|
+
font-size: var(--arrow-fs-m);
|
|
49
|
+
margin-right: var(--arrow-spacing-m);
|
|
50
|
+
@media (min-width: mobile) {
|
|
51
|
+
font-size: var(--arrow-fs-l);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.card-image-wrapper {
|
|
56
|
+
position: relative;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.alsoread-default .card-image-wrapper {
|
|
60
|
+
@media (min-width: mobile) {
|
|
61
|
+
flex-basis: 30%;
|
|
62
|
+
margin-right: var(--arrow-spacing-m);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.card-image {
|
|
67
|
+
display: block;
|
|
68
|
+
position: relative;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.alsoread-imageRightAlign .card-image,
|
|
72
|
+
.alsoread-imageRightAlign .card-image-wrapper .image {
|
|
73
|
+
padding-top: 75%;
|
|
74
|
+
@media (min-width: mobile) {
|
|
75
|
+
padding-top: 56.25%;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.alsoread-default {
|
|
80
|
+
border: solid 1px var(--arrow-c-brand5);
|
|
81
|
+
display: block;
|
|
82
|
+
padding: var(--arrow-spacing-m);
|
|
83
|
+
@media (min-width: mobile) {
|
|
84
|
+
display: flex;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.alsoread-imageRightAlign .content-wrapper {
|
|
89
|
+
display: flex;
|
|
90
|
+
margin-top: var(--arrow-spacing-xs);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.alsoread-default .content-wrapper {
|
|
94
|
+
@media (min-width: mobile) {
|
|
95
|
+
flex-basis: 70%;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.alsoread-default .card-image,
|
|
100
|
+
.alsoread .card-image-wrapper .image,
|
|
101
|
+
.alsoread-default .card-image-wrapper .image {
|
|
102
|
+
padding-top: 56.25%;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.card-image-wrapper .image div {
|
|
106
|
+
background: var(--arrow-c-mono6);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.alsoread-imageRightAlign .card-image-wrapper .image :global(.arr--fallback-image),
|
|
110
|
+
.alsoread-imageRightAlign .card-image-wrapper .image,
|
|
111
|
+
.alsoread-imageRightAlign .card-image-wrapper .card-image {
|
|
112
|
+
width: 100px;
|
|
113
|
+
height: 75px;
|
|
114
|
+
@media (min-width: mobile) {
|
|
115
|
+
width: 160px;
|
|
116
|
+
height: 90px;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
html[dir="rtl"] {
|
|
120
|
+
.content-wrapper {
|
|
121
|
+
margin-right: var(--arrow-spacing-m);
|
|
122
|
+
}
|
|
123
|
+
.card-image-wrapper {
|
|
124
|
+
margin-right: 0;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.dark {
|
|
129
|
+
color: var(--arrow-c-mono1);
|
|
130
|
+
}
|
|
131
|
+
.light {
|
|
132
|
+
color: var(--arrow-c-invert-mono1);
|
|
133
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { shallow, mount } from "enzyme";
|
|
3
|
+
import { generateStoryElementData, generateStory, generateStore } from "../../../Fixture";
|
|
4
|
+
import { AlsoRead } from "./index";
|
|
5
|
+
|
|
6
|
+
import { Provider } from "react-redux";
|
|
7
|
+
import { Link } from "@quintype/components";
|
|
8
|
+
|
|
9
|
+
const element = generateStoryElementData("also-read");
|
|
10
|
+
const story = generateStory();
|
|
11
|
+
|
|
12
|
+
describe("Alsoread Story Element", () => {
|
|
13
|
+
it("Should render default template", () => {
|
|
14
|
+
const wrapper = mount(
|
|
15
|
+
<Provider store={generateStore}>
|
|
16
|
+
<AlsoRead story={story} element={element} template="default" />
|
|
17
|
+
</Provider>
|
|
18
|
+
);
|
|
19
|
+
expect(wrapper.find(Link).prop("className")).toMatch(/alsoread-default/);
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it("Should render image right align template", () => {
|
|
23
|
+
const wrapper = mount(
|
|
24
|
+
<Provider store={generateStore}>
|
|
25
|
+
<AlsoRead story={story} element={element} template="imageRightAlign" />
|
|
26
|
+
</Provider>
|
|
27
|
+
);
|
|
28
|
+
expect(wrapper.find(Link).prop("className")).toMatch(/alsoread-imageRightAlign/);
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
it("Should render text left align template", () => {
|
|
32
|
+
const wrapper = mount(
|
|
33
|
+
<Provider store={generateStore}>
|
|
34
|
+
<AlsoRead story={story} element={element} template="textLeftAlign" />
|
|
35
|
+
</Provider>
|
|
36
|
+
);
|
|
37
|
+
expect(wrapper.find(Link).prop("className")).toMatch(/alsoread-textLeftAlign/);
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
it("Should render default template with fallback image", () => {
|
|
41
|
+
const wrapper = shallow(
|
|
42
|
+
<Provider store={generateStore}>
|
|
43
|
+
<AlsoRead element={element} template="default" css={{ textColor: "#3333" }} />
|
|
44
|
+
</Provider>
|
|
45
|
+
);
|
|
46
|
+
expect(wrapper.html()).toBe(
|
|
47
|
+
'<a data-test-id="also-read" aria-label="also-read" class="arrow-component arr--also-read-element also-read-m_alsoread-default__3cYER "><div class="also-read-m_card-image-wrapper__3GFzu"><div class="arr--fallback-also-read also-read-m_image__2jdRP also-read-m_card-image__3CwAv"><div class="arr--fallback-image fallback-m_image__1GYCJ fallback-m_image-position__3KddP"><figure class="arr--fallback-svg fallback-m_fallback-svg__tK9fL"><svg width="40" height="30" viewBox="0 0 102 76" version="1.1"><g id="demo-home-copy" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(-377.000000, -314.000000)"><g id="Group-13" transform="translate(377.000000, 314.000000)"><path d="M43.2,49.7 L62.2,19.2 L87.2,59.4 L17,59.4 L32.8,39.4 L43.2,49.7 Z M29.9,28.6 C25.8683213,28.6 22.6,25.3316787 22.6,21.3 C22.6,17.2683213 25.8683213,14 29.9,14 C33.9316787,14 37.2,17.2683213 37.2,21.3 C37.2,25.3316787 33.9316787,28.6 29.9,28.6 Z" id="Combined-Shape" fill="#99B0CB" fill-rule="nonzero"></path><rect id="Rectangle-19" stroke="#99B0CB" stroke-width="3" x="1.5" y="1.5" width="99" height="73" rx="3"></rect></g></g></svg></figure></div></div></div><div class="also-read-m_content-wrapper__26AZX"><div style="color:#3333" class="also-read-m_headline__VzF-c also-read-m_dark__1pUib">How is the coronavirus impacting people with disabilities?</div></div></a>'
|
|
48
|
+
);
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
it("Should render default template with text color", () => {
|
|
52
|
+
const wrapper = shallow(
|
|
53
|
+
<Provider store={generateStore}>
|
|
54
|
+
<AlsoRead story={story} element={element} template="default" css={{ textColor: "#3333" }} />
|
|
55
|
+
</Provider>
|
|
56
|
+
);
|
|
57
|
+
expect(wrapper.html()).toBe(
|
|
58
|
+
'<a data-test-id="also-read" aria-label="also-read" class="arrow-component arr--also-read-element also-read-m_alsoread-default__3cYER " href="https://ace-web.qtstage.io/anything/coronavirus/how-is-the-coronavirus-impacting-people-with-disabilities"><div class="also-read-m_card-image-wrapper__3GFzu"><figure class="also-read-m_card-image__3CwAv"><img src="//thumbor-stg.assettype.com/ace%2F2020-04%2F9adec2ac-d37c-496f-abcc-98309a4bb356%2Ff90b71cdf10141ff9913b72bcfd29768_18.jpg?w=480&auto=format%2Ccompress" srcSet="//thumbor-stg.assettype.com/ace%2F2020-04%2F9adec2ac-d37c-496f-abcc-98309a4bb356%2Ff90b71cdf10141ff9913b72bcfd29768_18.jpg?w=250&auto=format%2Ccompress 250w,//thumbor-stg.assettype.com/ace%2F2020-04%2F9adec2ac-d37c-496f-abcc-98309a4bb356%2Ff90b71cdf10141ff9913b72bcfd29768_18.jpg?w=480&auto=format%2Ccompress 480w,//thumbor-stg.assettype.com/ace%2F2020-04%2F9adec2ac-d37c-496f-abcc-98309a4bb356%2Ff90b71cdf10141ff9913b72bcfd29768_18.jpg?w=640&auto=format%2Ccompress 640w" sizes="(max-width: 768px) 90vw, 20vw" alt="hero image caption" width="100%" height="100%" class="qt-image arr-image-placeholder "/></figure></div><div class="also-read-m_content-wrapper__26AZX"><div style="color:#3333" class="also-read-m_headline__VzF-c also-read-m_dark__1pUib">How is the coronavirus impacting people with disabilities?</div></div></a>'
|
|
59
|
+
);
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
it("Should render text left align template with custom title", () => {
|
|
63
|
+
const wrapper = shallow(
|
|
64
|
+
<Provider store={generateStore}>
|
|
65
|
+
<AlsoRead story={story} element={element} template="textLeftAlign" opts={{ title: "Also-Read" }} />
|
|
66
|
+
</Provider>
|
|
67
|
+
);
|
|
68
|
+
expect(wrapper.html()).toBe(
|
|
69
|
+
'<a data-test-id="also-read" aria-label="also-read" class="arrow-component arr--also-read-element also-read-m_alsoread-textLeftAlign__S0Dxe " href="https://ace-web.qtstage.io/anything/coronavirus/how-is-the-coronavirus-impacting-people-with-disabilities"><div class="also-read-m_default-text__hp2dp also-read-m_dark__1pUib">Also-Read</div><div class="also-read-m_content-wrapper__26AZX"><div class="also-read-m_headline__VzF-c also-read-m_dark__1pUib">How is the coronavirus impacting people with disabilities?</div></div></a>'
|
|
70
|
+
);
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
it("Should render custom template", () => {
|
|
74
|
+
// eslint-disable-next-line react/prop-types
|
|
75
|
+
const customTemplate = ({ element }) => <h3 dangerouslySetInnerHTML={{ __html: element.text }} />;
|
|
76
|
+
const wrapper = shallow(
|
|
77
|
+
<Provider store={generateStore}>
|
|
78
|
+
<AlsoRead element={element} render={customTemplate} />
|
|
79
|
+
</Provider>
|
|
80
|
+
);
|
|
81
|
+
expect(wrapper.html()).toBe("<h3>How is the coronavirus impacting people with disabilities?</h3>");
|
|
82
|
+
});
|
|
83
|
+
});
|