@quintype/arrow 3.0.0-spike-skeleton-layout.21 → 3.0.0
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 +42 -0
- package/.eslintrc.json +25 -0
- package/.prettierrc +6 -0
- package/.storybook/addons.js +5 -0
- package/.storybook/config.js +13 -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 +1362 -0
- package/README.md +10 -0
- package/__mocks__/fileMock.js +1 -0
- package/__mocks__/styleMock.js +1 -0
- package/{app.scss → assets/stylesheets/app.scss} +154 -1
- package/assets/stylesheets/mixins.scss +27 -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 +131 -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/Author/README.md +19 -0
- package/src/components/Atoms/Author/author.m.css +65 -0
- package/src/components/Atoms/Author/index.js +98 -0
- package/src/components/Atoms/Author/stories.js +23 -0
- package/src/components/Atoms/AuthorCard/README.md +47 -0
- package/src/components/Atoms/AuthorCard/author-card.m.css +174 -0
- package/src/components/Atoms/AuthorCard/author-card.test.js +72 -0
- package/src/components/Atoms/AuthorCard/index.js +115 -0
- package/src/components/Atoms/AuthorCard/stories.js +69 -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 +55 -0
- package/src/components/Atoms/AuthorImage/stories.js +20 -0
- package/src/components/Atoms/AuthorWithTimestamp/README.md +11 -0
- package/src/components/Atoms/AuthorWithTimestamp/author-with-timestamp.m.css +42 -0
- package/src/components/Atoms/AuthorWithTimestamp/index.js +79 -0
- package/src/components/Atoms/AuthorWithTimestamp/stories.js +21 -0
- package/src/components/Atoms/BulletPoint/README.md +9 -0
- package/src/components/Atoms/BulletPoint/bullet-point.m.css +14 -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 +94 -0
- package/src/components/Atoms/CollectionName/index.js +143 -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 +112 -0
- package/src/components/Atoms/FallbackImage/fallback.m.css +33 -0
- package/src/components/Atoms/FallbackImage/index.js +30 -0
- package/src/components/Atoms/Headline/README.md +7 -0
- package/src/components/Atoms/Headline/headline.m.css +26 -0
- package/src/components/Atoms/Headline/index.js +76 -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 +71 -0
- package/src/components/Atoms/HeroImage/index.js +165 -0
- package/src/components/Atoms/HeroImage/stories.js +22 -0
- package/src/components/Atoms/LoadMoreTarget/index.js +24 -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 +41 -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 +61 -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 +63 -0
- package/src/components/Atoms/PublishDetail/publish-details.m.css +47 -0
- package/src/components/Atoms/PublishDetail/publish-details.test.js +22 -0
- package/src/components/Atoms/PublishDetail/stories.js +21 -0
- package/src/components/Atoms/ReadTime/README.md +13 -0
- package/src/components/Atoms/ReadTime/index.js +44 -0
- package/src/components/Atoms/ReadTime/read-time.m.css +25 -0
- package/src/components/Atoms/ReadTime/read-time.test.js +18 -0
- package/src/components/Atoms/ReadTime/stories.js +19 -0
- package/src/components/Atoms/ScrollSnap/SliderArrow/index.js +57 -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 +136 -0
- package/src/components/Atoms/ScrollSnap/scroll-snap.m.css +27 -0
- package/src/components/Atoms/SectionTag/README.md +11 -0
- package/src/components/Atoms/SectionTag/index.js +61 -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 +653 -0
- package/src/components/Atoms/SocialSharePopup/index.js +61 -0
- package/src/components/Atoms/SocialSharePopup/social-share-popup.m.css +109 -0
- package/src/components/Atoms/SocialSharePopup/social-share-popup.test.js +93 -0
- package/src/components/Atoms/SocialSharePopup/stories.js +19 -0
- package/src/components/Atoms/StoryElements/AlsoRead/README.md +49 -0
- package/src/components/Atoms/StoryElements/AlsoRead/also-read.m.css +135 -0
- package/src/components/Atoms/StoryElements/AlsoRead/also-read.test.js +83 -0
- package/src/components/Atoms/StoryElements/AlsoRead/index.js +117 -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 +125 -0
- package/src/components/Atoms/StoryElements/Attachment/attachment.test.js +39 -0
- package/src/components/Atoms/StoryElements/Attachment/index.js +62 -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 +26 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/edge.js +26 -0
- package/src/components/Atoms/StoryElements/BlockQuote/Svg/icon.m.css +4 -0
- package/src/components/Atoms/StoryElements/BlockQuote/block-quote.m.css +161 -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 +55 -0
- package/src/components/Atoms/StoryElements/Blurb/blurb.test.js +46 -0
- package/src/components/Atoms/StoryElements/Blurb/index.js +53 -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 +17 -0
- package/src/components/Atoms/StoryElements/Image/image.test.js +20 -0
- package/src/components/Atoms/StoryElements/Image/index.js +57 -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 +49 -0
- package/src/components/Atoms/StoryElements/ImageSlideshow/index.js +63 -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 +134 -0
- package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.m.css +106 -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 +44 -0
- package/src/components/Atoms/StoryElements/Quote/quote.m.css +111 -0
- package/src/components/Atoms/StoryElements/Quote/quote.test.js +39 -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 +21 -0
- package/src/components/Atoms/StoryElements/StoryElement/stories.js +20 -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 +68 -0
- package/src/components/Atoms/StoryElements/Summary/stories.js +33 -0
- package/src/components/Atoms/StoryElements/Summary/summary.m.css +121 -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 +41 -0
- package/src/components/Atoms/StoryElements/Text/stories.js +32 -0
- package/src/components/Atoms/StoryElements/Text/text.m.css +48 -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 +23 -0
- package/src/components/Atoms/StoryElements/Video/stories.js +24 -0
- package/src/components/Atoms/StoryElements/Video/video.m.css +3 -0
- package/src/components/Atoms/StoryElements/Video/video.test.js +13 -0
- package/src/components/Atoms/StoryElements/imageGallery/README.md +18 -0
- package/src/components/Atoms/StoryElements/imageGallery/image-gallery.m.css +48 -0
- package/src/components/Atoms/StoryElements/imageGallery/image-gallery.test.js +19 -0
- package/src/components/Atoms/StoryElements/imageGallery/index.js +74 -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 +36 -0
- package/src/components/Atoms/StoryHeadline/story-headline.m.css +36 -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 +34 -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 +37 -0
- package/src/components/Atoms/TimeStamp/stories.js +9 -0
- package/src/components/Atoms/TimeStamp/timestamp.m.css +22 -0
- package/src/components/Fixture/config.json +2703 -0
- package/src/components/Fixture/dummy-collection.js +2787 -0
- package/src/components/Fixture/dummyStory.js +2148 -0
- package/src/components/Fixture/index.js +424 -0
- package/src/components/Fixture/slot-config.js +29 -0
- package/src/components/Molecules/FullScreenImages/fullscreenimages.scss +48 -0
- package/src/components/Molecules/FullScreenImages/index.js +86 -0
- package/src/components/Molecules/KeyEvents/README.md +21 -0
- package/src/components/Molecules/KeyEvents/index.js +109 -0
- package/src/components/Molecules/KeyEvents/key-events.m.css +89 -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/SliderHorizontalCard/README.md +14 -0
- package/src/components/Molecules/SliderHorizontalCard/index.js +45 -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 +738 -0
- package/src/components/Molecules/SocialShareTemplate/index.js +119 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-data.js +66 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-template.m.css +174 -0
- package/src/components/Molecules/SocialShareTemplate/social-share-template.test.js +116 -0
- package/src/components/Molecules/SocialShareTemplate/stories.js +40 -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 +173 -0
- package/src/components/Molecules/StoryCard/stories.js +223 -0
- package/src/components/Molecules/StoryCard/storycard.m.css +158 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/README.md +9 -0
- package/src/components/Molecules/StoryCardWithBulletPoint/index.js +32 -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 +358 -0
- package/src/components/Molecules/StoryElementCard/stories.js +27 -0
- package/src/components/Molecules/StoryElementCard/story-element-card.m.css +78 -0
- package/src/components/Molecules/StorycardContent/README.md +34 -0
- package/src/components/Molecules/StorycardContent/index.js +76 -0
- package/src/components/Molecules/StorycardContent/stories.js +39 -0
- package/src/components/Molecules/StorycardContent/storycardContent.m.css +21 -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 +103 -0
- package/src/components/Rows/AsideCollection/aside-collection.test.js +34 -0
- package/src/components/Rows/AsideCollection/index.js +175 -0
- package/src/components/Rows/AsideCollection/stories.js +52 -0
- package/src/components/Rows/AuthorIntroductionCard/README.md +43 -0
- package/src/components/Rows/AuthorIntroductionCard/author-intro.m.css +278 -0
- package/src/components/Rows/AuthorIntroductionCard/author-intro.test.js +106 -0
- package/src/components/Rows/AuthorIntroductionCard/index.js +120 -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 +50 -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 +232 -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 +332 -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 +56 -0
- package/src/components/Rows/FourColFiveStories/index.js +159 -0
- package/src/components/Rows/FourColFiveStories/stories.js +67 -0
- package/src/components/Rows/FourColGrid/README.md +38 -0
- package/src/components/Rows/FourColGrid/four-col.m.css +50 -0
- package/src/components/Rows/FourColGrid/index.js +137 -0
- package/src/components/Rows/FourColGrid/stories.js +65 -0
- package/src/components/Rows/FourColSixteenStories/README.md +35 -0
- package/src/components/Rows/FourColSixteenStories/four-col-sixteen-stories.m.css +104 -0
- package/src/components/Rows/FourColSixteenStories/index.js +103 -0
- package/src/components/Rows/FourColSixteenStories/stories.js +46 -0
- package/src/components/Rows/FourColTwelveStory/README.md +39 -0
- package/src/components/Rows/FourColTwelveStory/four-col-twelve-story.m.css +71 -0
- package/src/components/Rows/FourColTwelveStory/index.js +176 -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 +45 -0
- package/src/components/Rows/FourStorySlider/index.js +127 -0
- package/src/components/Rows/FourStorySlider/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 +221 -0
- package/src/components/Rows/FourTabbedBigStorySlider/index.js +161 -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 +110 -0
- package/src/components/Rows/FullScreenSlider/index.js +114 -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 +35 -0
- package/src/components/Rows/HalfScreenSlider/index.js +104 -0
- package/src/components/Rows/HalfScreenSlider/stories.js +115 -0
- package/src/components/Rows/ListComponent/README.md +48 -0
- package/src/components/Rows/ListComponent/index.js +150 -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/MagazineEditions/README.md +21 -0
- package/src/components/Rows/MagazineEditions/index.js +91 -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 +72 -0
- package/src/components/Rows/MagazineHeaderCard/magazine-cards.m.css +106 -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 +127 -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 +196 -0
- package/src/components/Rows/OneColStoryList/one-col-story-list.m.css +81 -0
- package/src/components/Rows/OneColStoryList/stories.js +61 -0
- package/src/components/Rows/OpinionCollection/README.md +34 -0
- package/src/components/Rows/OpinionCollection/index.js +124 -0
- package/src/components/Rows/OpinionCollection/opinion-collection.m.css +118 -0
- package/src/components/Rows/OpinionCollection/stories.js +48 -0
- package/src/components/Rows/SixColSixStories/README.md +37 -0
- package/src/components/Rows/SixColSixStories/index.js +134 -0
- package/src/components/Rows/SixColSixStories/six-col-six-stories.m.css +75 -0
- package/src/components/Rows/SixColSixStories/stories.js +73 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/README.md +19 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/__snapshots__/listicle-story.test.js.snap +837 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/index.js +287 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.m.css +229 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.test.js +47 -0
- package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/stories.js +117 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/README.md +25 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/index.js +51 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/live-blog.m.css +326 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/stories.js +120 -0
- package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/templates.js +376 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/index.js +246 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo-story.test.js +144 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo.m.css +175 -0
- package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/stories.js +123 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/README.md +49 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/index.js +69 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/stories.js +125 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/templates.js +272 -0
- package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.m.css +449 -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 +234 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/stories.js +204 -0
- package/src/components/Rows/StoryTemplates/VideoStoryTemplates/video-story.m.css +195 -0
- package/src/components/Rows/TagIntroductionCard/README.md +11 -0
- package/src/components/Rows/TagIntroductionCard/index.js +26 -0
- package/src/components/Rows/TagIntroductionCard/stories.js +21 -0
- package/src/components/Rows/TagIntroductionCard/tag-intro-card.module.css +30 -0
- package/src/components/Rows/ThreeColFlexStories/README.md +38 -0
- package/src/components/Rows/ThreeColFlexStories/index.js +180 -0
- package/src/components/Rows/ThreeColFlexStories/stories.js +73 -0
- package/src/components/Rows/ThreeColFlexStories/three-col-flex-stories.m.css +60 -0
- package/src/components/Rows/ThreeColFourteenStory/README.md +28 -0
- package/src/components/Rows/ThreeColFourteenStory/index.js +135 -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 +141 -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 +172 -0
- package/src/components/Rows/ThreeColSevenStory/stories.js +71 -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 +161 -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 +123 -0
- package/src/components/Rows/ThreeColTwelveStories/stories.js +51 -0
- package/src/components/Rows/ThreeColTwelveStories/three-col-twelve-stories.m.css +83 -0
- package/src/components/Rows/TwoColFourStory/README.md +33 -0
- package/src/components/Rows/TwoColFourStory/index.js +151 -0
- package/src/components/Rows/TwoColFourStory/stories.js +68 -0
- package/src/components/Rows/TwoColFourStory/two-col-four-story.m.css +56 -0
- package/src/components/Rows/TwoColFourStoryHighlight/README.md +35 -0
- package/src/components/Rows/TwoColFourStoryHighlight/index.js +122 -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/TwoColSixStories/README.md +36 -0
- package/src/components/Rows/TwoColSixStories/index.js +117 -0
- package/src/components/Rows/TwoColSixStories/stories.js +67 -0
- package/src/components/Rows/TwoColSixStories/two-col-six-stories.m.css +79 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/README.md +34 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/index.js +168 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/stories.js +45 -0
- package/src/components/Rows/TwoColTenStoriesSidebar/two-col-ten-stories-sidebar.m.css +52 -0
- package/src/components/Rows/TwoColThreeStory/README.md +36 -0
- package/src/components/Rows/TwoColThreeStory/index.js +137 -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 +5 -0
- package/src/components/Svgs/SocialIcons/facebook.js +15 -0
- package/src/components/Svgs/SocialIcons/instagram.js +24 -0
- package/src/components/Svgs/SocialIcons/linkedin.js +15 -0
- package/src/components/Svgs/SocialIcons/pinterest.js +12 -0
- package/src/components/Svgs/SocialIcons/twitter.js +15 -0
- package/src/components/Svgs/SocialIcons/whatsapp.js +17 -0
- package/src/components/Svgs/SocialIcons/youtube.js +17 -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/key.js +33 -0
- package/src/components/Svgs/left-arrow.js +17 -0
- package/src/components/Svgs/liveicon.js +13 -0
- package/src/components/Svgs/lock.js +31 -0
- package/src/components/Svgs/right-arrow.js +17 -0
- package/src/components/Svgs/share-icon.js +17 -0
- package/src/components/Svgs/star.js +28 -0
- package/src/components/Svgs/user-fallback-icon.js +19 -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/entry-points.js +337 -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 +85 -0
- package/src/utils/testing-utils.js +8 -0
- package/src/utils/utils.js +280 -0
- package/src/utils/utils.test.js +55 -0
- package/storybook/index.js +83 -0
- package/AlsoRead/styles.arrow.css +0 -1
- package/AsideCollection/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/AuthorPageIntroductionCard/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/FourColGrid/styles.arrow.css +0 -1
- package/FourColTwelveStories/styles.arrow.css +0 -1
- package/FourStorySlider/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/ListComponent/styles.arrow.css +0 -1
- package/ListicleStoryTemplate/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/PhotoStoryTemplate/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/SectionTag/styles.arrow.css +0 -1
- package/StoryCard/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/TagIntroductionCard/styles.arrow.css +0 -1
- package/Text/styles.arrow.css +0 -1
- package/TextStoryTemplate/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/TimeStamp/styles.arrow.css +0 -1
- package/TwoColFourStories/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/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1362 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
## [3.0.0](https://github.com/quintype/quintype-node-arrow/compare/v2.13.2...v3.0.0) (2021-11-30)
|
|
6
|
+
|
|
7
|
+
### [2.13.2](https://github.com/quintype/quintype-node-arrow/compare/v2.13.1...v2.13.2) (2021-11-30)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* revert four story potrait commit ([#834](https://github.com/quintype/quintype-node-arrow/issues/834)) ([69326aa](https://github.com/quintype/quintype-node-arrow/commit/69326aa19be2082fca20b2f83bb22e1867c80efb))
|
|
13
|
+
|
|
14
|
+
### [2.13.1](https://github.com/quintype/quintype-node-arrow/compare/v2.12.0...v2.13.1) (2021-11-28)
|
|
15
|
+
|
|
16
|
+
## [2.13.0](https://github.com/quintype/quintype-node-arrow/compare/v2.12.0...v2.13.0) (2021-11-26)
|
|
17
|
+
|
|
18
|
+
## [2.12.0](https://github.com/quintype/quintype-node-arrow/compare/v2.11.1...v2.12.0) (2021-11-25)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
* Alternate collection filter[Component] ([#823](https://github.com/quintype/quintype-node-arrow/issues/823)) ([8c52f33](https://github.com/quintype/quintype-node-arrow/commit/8c52f333f79d26e312a1179d98bbaabfa944dd1a))
|
|
24
|
+
|
|
25
|
+
### [2.11.1](https://github.com/quintype/quintype-node-arrow/compare/v2.11.0...v2.11.1) (2021-11-19)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* readtime color ([#822](https://github.com/quintype/quintype-node-arrow/issues/822)) ([be2c08c](https://github.com/quintype/quintype-node-arrow/commit/be2c08cc57e703f3103af20839dbbe2d2140add7))
|
|
31
|
+
|
|
32
|
+
## [2.11.0](https://github.com/quintype/quintype-node-arrow/compare/v2.9.12...v2.11.0) (2021-11-19)
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
### Features
|
|
36
|
+
|
|
37
|
+
* Four tabbed story slider [Component] ([#820](https://github.com/quintype/quintype-node-arrow/issues/820)) ([5da8e4e](https://github.com/quintype/quintype-node-arrow/commit/5da8e4e6b2adb2cc92cb3c348c66c53f28ba3c37))
|
|
38
|
+
* **Story:** support tags after paywall and inject an ad or widget ([#817](https://github.com/quintype/quintype-node-arrow/issues/817)) ([85513a2](https://github.com/quintype/quintype-node-arrow/commit/85513a2233cf51ca38d0384358ab91b4af650e40))
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Bug Fixes
|
|
42
|
+
|
|
43
|
+
* **External link:** support only for news-elsewhere template ([#819](https://github.com/quintype/quintype-node-arrow/issues/819)) ([11dae8f](https://github.com/quintype/quintype-node-arrow/commit/11dae8f143ac3967d6f4808ef670e116e621d25e))
|
|
44
|
+
|
|
45
|
+
## [2.10.0](https://github.com/quintype/quintype-node-arrow/compare/v2.9.12...v2.10.0) (2021-11-16)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Features
|
|
49
|
+
|
|
50
|
+
* **Story:** support tags after paywall and inject an ad or widget ([#817](https://github.com/quintype/quintype-node-arrow/issues/817)) ([85513a2](https://github.com/quintype/quintype-node-arrow/commit/85513a2233cf51ca38d0384358ab91b4af650e40))
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Bug Fixes
|
|
54
|
+
|
|
55
|
+
* **External link:** support only for news-elsewhere template ([#819](https://github.com/quintype/quintype-node-arrow/issues/819)) ([11dae8f](https://github.com/quintype/quintype-node-arrow/commit/11dae8f143ac3967d6f4808ef670e116e621d25e))
|
|
56
|
+
|
|
57
|
+
### [2.9.12](https://github.com/quintype/quintype-node-arrow/compare/v2.9.11...v2.9.12) (2021-10-21)
|
|
58
|
+
|
|
59
|
+
### [2.9.11](https://github.com/quintype/quintype-node-arrow/compare/v2.9.10...v2.9.11) (2021-10-18)
|
|
60
|
+
|
|
61
|
+
### [2.9.10](https://github.com/quintype/quintype-node-arrow/compare/v2.9.6...v2.9.10) (2021-10-05)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### Bug Fixes
|
|
65
|
+
|
|
66
|
+
* **perf:** Reduce Vendor home list ([#811](https://github.com/quintype/quintype-node-arrow/issues/811)) ([ad35f14](https://github.com/quintype/quintype-node-arrow/commit/ad35f142a5ea0b8e664600b11b62e7e8dd2d5eca))
|
|
67
|
+
* **social share:** encode story url to support vernacular slugs on twitter share ([#812](https://github.com/quintype/quintype-node-arrow/issues/812)) ([9edbeae](https://github.com/quintype/quintype-node-arrow/commit/9edbeae6c3c3858f1d438172be9430beb08a1a3b))
|
|
68
|
+
|
|
69
|
+
### [2.9.9](https://github.com/quintype/quintype-node-arrow/compare/v2.9.5...v2.9.9) (2021-09-29)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
### Bug Fixes
|
|
73
|
+
|
|
74
|
+
* **perf:** Reduce Vendor home list ([#811](https://github.com/quintype/quintype-node-arrow/issues/811)) ([ad35f14](https://github.com/quintype/quintype-node-arrow/commit/ad35f142a5ea0b8e664600b11b62e7e8dd2d5eca))
|
|
75
|
+
* remove semicolon from author card ([#810](https://github.com/quintype/quintype-node-arrow/issues/810)) ([5df5a54](https://github.com/quintype/quintype-node-arrow/commit/5df5a549168556221f9a16b2081292c30ef96530))
|
|
76
|
+
|
|
77
|
+
### [2.9.8](https://github.com/quintype/quintype-node-arrow/compare/v2.9.6...v2.9.8) (2021-09-29)
|
|
78
|
+
|
|
79
|
+
### [2.9.7](https://github.com/quintype/quintype-node-arrow/compare/v2.9.6...v2.9.7) (2021-09-29)
|
|
80
|
+
|
|
81
|
+
### [2.9.6](https://github.com/quintype/quintype-node-arrow/compare/v2.9.5...v2.9.6) (2021-09-28)
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
### Bug Fixes
|
|
85
|
+
|
|
86
|
+
* remove semicolon from author card ([#810](https://github.com/quintype/quintype-node-arrow/issues/810)) ([5df5a54](https://github.com/quintype/quintype-node-arrow/commit/5df5a549168556221f9a16b2081292c30ef96530))
|
|
87
|
+
|
|
88
|
+
### [2.9.5](https://github.com/quintype/quintype-node-arrow/compare/v2.9.4...v2.9.5) (2021-09-21)
|
|
89
|
+
|
|
90
|
+
### [2.9.4](https://github.com/quintype/quintype-node-arrow/compare/v2.9.3...v2.9.4) (2021-09-17)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
### Bug Fixes
|
|
94
|
+
|
|
95
|
+
* handle margin value ([#808](https://github.com/quintype/quintype-node-arrow/issues/808)) ([4766061](https://github.com/quintype/quintype-node-arrow/commit/4766061d0c64076e2576d849a04c6a61b35460eb))
|
|
96
|
+
|
|
97
|
+
### [2.9.3](https://github.com/quintype/quintype-node-arrow/compare/v2.9.2...v2.9.3) (2021-09-16)
|
|
98
|
+
|
|
99
|
+
### [2.9.2](https://github.com/quintype/quintype-node-arrow/compare/v2.9.1...v2.9.2) (2021-09-16)
|
|
100
|
+
|
|
101
|
+
### [2.9.1](https://github.com/quintype/quintype-node-arrow/compare/v2.9.0...v2.9.1) (2021-09-15)
|
|
102
|
+
|
|
103
|
+
## [2.9.0](https://github.com/quintype/quintype-node-arrow/compare/v2.8.1...v2.9.0) (2021-09-15)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
### Features
|
|
107
|
+
|
|
108
|
+
* Two Col Four Story Highlights ([#801](https://github.com/quintype/quintype-node-arrow/issues/801)) ([64a9832](https://github.com/quintype/quintype-node-arrow/commit/64a98321659ea9b2d00f5ee82dc9cbcd3a4a782a))
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Bug Fixes
|
|
112
|
+
|
|
113
|
+
* **test:** update test ([#804](https://github.com/quintype/quintype-node-arrow/issues/804)) ([0798fc8](https://github.com/quintype/quintype-node-arrow/commit/0798fc8871dca14a0cb7f063194bf40e0bc14069))
|
|
114
|
+
|
|
115
|
+
### [2.8.1](https://github.com/quintype/quintype-node-arrow/compare/v2.8.0...v2.8.1) (2021-09-09)
|
|
116
|
+
|
|
117
|
+
## [2.8.0](https://github.com/quintype/quintype-node-arrow/compare/v2.7.0...v2.8.0) (2021-09-08)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
### Features
|
|
121
|
+
|
|
122
|
+
* Four Column Sixteen Stories ([#787](https://github.com/quintype/quintype-node-arrow/issues/787)) ([ce5cb61](https://github.com/quintype/quintype-node-arrow/commit/ce5cb61c0843800e7a93c1e9d00f11ba96b0d206))
|
|
123
|
+
|
|
124
|
+
## [2.7.0](https://github.com/quintype/quintype-node-arrow/compare/v2.6.0...v2.7.0) (2021-09-07)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### Features
|
|
128
|
+
|
|
129
|
+
* add enclosing div ids for different story elements ([#730](https://github.com/quintype/quintype-node-arrow/issues/730)) ([ac1cb4b](https://github.com/quintype/quintype-node-arrow/commit/ac1cb4b038b3bfc4c94a73e191a7a36225d63f1c))
|
|
130
|
+
|
|
131
|
+
## [2.6.0](https://github.com/quintype/quintype-node-arrow/compare/v2.5.2...v2.6.0) (2021-09-07)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
### Features
|
|
135
|
+
|
|
136
|
+
* Opinion Collection ([#792](https://github.com/quintype/quintype-node-arrow/issues/792)) ([fed5c4c](https://github.com/quintype/quintype-node-arrow/commit/fed5c4cc2cf6c3dca3372cae0fe55596cc3ef9ef))
|
|
137
|
+
|
|
138
|
+
### [2.5.2](https://github.com/quintype/quintype-node-arrow/compare/v2.5.1...v2.5.2) (2021-08-31)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### Bug Fixes
|
|
142
|
+
|
|
143
|
+
* Caption Attribution alignment ([#796](https://github.com/quintype/quintype-node-arrow/issues/796)) ([b1e166a](https://github.com/quintype/quintype-node-arrow/commit/b1e166a3cb389ed5df95490c878388792092069e))
|
|
144
|
+
|
|
145
|
+
### [2.5.1](https://github.com/quintype/quintype-node-arrow/compare/v2.5.0...v2.5.1) (2021-08-27)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
### Bug Fixes
|
|
149
|
+
|
|
150
|
+
* **Magazine Widget, Magazine Cover Image:** update href ([#795](https://github.com/quintype/quintype-node-arrow/issues/795)) ([a3f8b28](https://github.com/quintype/quintype-node-arrow/commit/a3f8b281306dfd566d6146e6b1376eeaa09369a0))
|
|
151
|
+
* **Story Headline:** support rtl ([#794](https://github.com/quintype/quintype-node-arrow/issues/794)) ([8e9d61c](https://github.com/quintype/quintype-node-arrow/commit/8e9d61c299615559720e2cc904d78006203c6e3b))
|
|
152
|
+
|
|
153
|
+
## [2.5.0](https://github.com/quintype/quintype-node-arrow/compare/v2.4.1...v2.5.0) (2021-08-19)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
### Features
|
|
157
|
+
|
|
158
|
+
* Four Col Five Stories ([#785](https://github.com/quintype/quintype-node-arrow/issues/785)) ([63c12af](https://github.com/quintype/quintype-node-arrow/commit/63c12af8dee13a46b533e0093260a94b1ed106df))
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
### Bug Fixes
|
|
162
|
+
|
|
163
|
+
* **Rows:** spacing ([#764](https://github.com/quintype/quintype-node-arrow/issues/764)) ([47d3600](https://github.com/quintype/quintype-node-arrow/commit/47d360098f1b5d9824252bec1e0a2dde42cc6a81))
|
|
164
|
+
* rtl format for publish time ([#789](https://github.com/quintype/quintype-node-arrow/issues/789)) ([0f00207](https://github.com/quintype/quintype-node-arrow/commit/0f00207037cd38c884760699f482b17bf2e64906))
|
|
165
|
+
|
|
166
|
+
### [2.4.1](https://github.com/quintype/quintype-node-arrow/compare/v2.4.0...v2.4.1) (2021-08-12)
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
### Bug Fixes
|
|
170
|
+
|
|
171
|
+
* **jsembed-image:** Remove width 100% from jsembed images ([#783](https://github.com/quintype/quintype-node-arrow/issues/783)) ([0231c8b](https://github.com/quintype/quintype-node-arrow/commit/0231c8b8b38fe7dc138ebf8e47cac119f7329c8d))
|
|
172
|
+
|
|
173
|
+
## [2.4.0](https://github.com/quintype/quintype-node-arrow/compare/v2.3.1...v2.4.0) (2021-08-11)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
### Features
|
|
177
|
+
|
|
178
|
+
* Two col six stories row ([#782](https://github.com/quintype/quintype-node-arrow/issues/782)) ([a23c250](https://github.com/quintype/quintype-node-arrow/commit/a23c2507c41acb52b9cb7fa8a55337b22a1fb01e))
|
|
179
|
+
|
|
180
|
+
### [2.3.1](https://github.com/quintype/quintype-node-arrow/compare/v2.3.1-spike-skeleton-layout.0...v2.3.1) (2021-08-09)
|
|
181
|
+
|
|
182
|
+
## [2.3.0](https://github.com/quintype/quintype-node-arrow/compare/v2.2.2...v2.3.0) (2021-08-06)
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
### Bug Fixes
|
|
186
|
+
|
|
187
|
+
* **Related Stories:** check slug includes undefined ([#757](https://github.com/quintype/quintype-node-arrow/issues/757)) ([c717daf](https://github.com/quintype/quintype-node-arrow/commit/c717daf0606f96e742b8f0105449751c93c146c3))
|
|
188
|
+
|
|
189
|
+
### [2.2.2](https://github.com/quintype/quintype-node-arrow/compare/v2.2.1...v2.2.2) (2021-08-04)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
### Bug Fixes
|
|
193
|
+
|
|
194
|
+
* **Caption Attribution:** support rich text ([#761](https://github.com/quintype/quintype-node-arrow/issues/761)) ([8a1479c](https://github.com/quintype/quintype-node-arrow/commit/8a1479cee7734469c98a50ac9982ba520c48424d))
|
|
195
|
+
|
|
196
|
+
### [2.2.1](https://github.com/quintype/quintype-node-arrow/compare/v2.2.0...v2.2.1) (2021-08-04)
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
### Bug Fixes
|
|
200
|
+
|
|
201
|
+
* Magazine layouts ([#763](https://github.com/quintype/quintype-node-arrow/issues/763)) ([c953ee4](https://github.com/quintype/quintype-node-arrow/commit/c953ee4fa6b94c4770ff96a87f9ec7dea6bfd5e7))
|
|
202
|
+
|
|
203
|
+
## [2.2.0](https://github.com/quintype/quintype-node-arrow/compare/v2.1.3...v2.2.0) (2021-08-03)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
### Features
|
|
207
|
+
|
|
208
|
+
* **Custom label:** support publish time in row components ([#780](https://github.com/quintype/quintype-node-arrow/issues/780)) ([8e8c5e5](https://github.com/quintype/quintype-node-arrow/commit/8e8c5e5f6aea28749b313ed7201f07235624317e))
|
|
209
|
+
|
|
210
|
+
### [2.1.3](https://github.com/quintype/quintype-node-arrow/compare/v2.1.2...v2.1.3) (2021-07-30)
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
### Bug Fixes
|
|
214
|
+
|
|
215
|
+
* magazine routes ([#779](https://github.com/quintype/quintype-node-arrow/issues/779)) ([2676c44](https://github.com/quintype/quintype-node-arrow/commit/2676c44c7306584953575ad6a8e682bd94c58b0d))
|
|
216
|
+
|
|
217
|
+
### [2.1.2](https://github.com/quintype/quintype-node-arrow/compare/v2.1.1...v2.1.2) (2021-07-30)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### Bug Fixes
|
|
221
|
+
|
|
222
|
+
* **collection-filter:** read more collection slug ([#760](https://github.com/quintype/quintype-node-arrow/issues/760)) ([3f9067e](https://github.com/quintype/quintype-node-arrow/commit/3f9067e4d3799e09e8f85ef1165f9eac329a4c1e))
|
|
223
|
+
|
|
224
|
+
### [2.1.1](https://github.com/quintype/quintype-node-arrow/compare/v2.1.0...v2.1.1) (2021-07-29)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
### Bug Fixes
|
|
228
|
+
|
|
229
|
+
* Magazine landing page layouts ([#747](https://github.com/quintype/quintype-node-arrow/issues/747)) ([a23fee4](https://github.com/quintype/quintype-node-arrow/commit/a23fee4d9ddb8f98703a4e88b0c0e8a9cdb97f0f))
|
|
230
|
+
|
|
231
|
+
## [2.1.0](https://github.com/quintype/quintype-node-arrow/compare/v2.0.1...v2.1.0) (2021-07-29)
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
### Features
|
|
235
|
+
|
|
236
|
+
* **Components:** Add data test ids ([#774](https://github.com/quintype/quintype-node-arrow/issues/774)) ([224e6af](https://github.com/quintype/quintype-node-arrow/commit/224e6af9be7194a5858e296848877f3f267e8642))
|
|
237
|
+
* **Rows:** add data-test-id's ([#759](https://github.com/quintype/quintype-node-arrow/issues/759)) ([991278c](https://github.com/quintype/quintype-node-arrow/commit/991278cab5e7056019c61eac2e61c5431815a591))
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
### Bug Fixes
|
|
241
|
+
|
|
242
|
+
* add sync script ([#762](https://github.com/quintype/quintype-node-arrow/issues/762)) ([eaeed7e](https://github.com/quintype/quintype-node-arrow/commit/eaeed7eb8557049a34f99b1ec15d40a4bb033d36))
|
|
243
|
+
* **collection-filter:** read more collection slug ([fc8c1ad](https://github.com/quintype/quintype-node-arrow/commit/fc8c1adce30f3a24e7829dd7fb45f02109ebea09))
|
|
244
|
+
* story cards config ([5ed4c3b](https://github.com/quintype/quintype-node-arrow/commit/5ed4c3b7c5ca7434a1ede7831a78f186ca72f7c9))
|
|
245
|
+
|
|
246
|
+
### [2.0.1](https://github.com/quintype/quintype-node-arrow/compare/v2.0.0...v2.0.1) (2021-07-14)
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
### Bug Fixes
|
|
250
|
+
|
|
251
|
+
* **collection-filter:** pass respective collection to load more button ([#736](https://github.com/quintype/quintype-node-arrow/issues/736)) ([c808aa9](https://github.com/quintype/quintype-node-arrow/commit/c808aa9644ed4b7843f8702e63d044b33b5f1f1e))
|
|
252
|
+
|
|
253
|
+
## [2.0.0](https://github.com/quintype/quintype-node-arrow/compare/v0.1.20...v2.0.0) (2021-07-08)
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
### ⚠ BREAKING CHANGES
|
|
257
|
+
|
|
258
|
+
* change bundling logic | API change
|
|
259
|
+
|
|
260
|
+
* fix: rollup config
|
|
261
|
+
|
|
262
|
+
* fix: add publish script
|
|
263
|
+
|
|
264
|
+
* docs: add inline comments, update readme
|
|
265
|
+
|
|
266
|
+
* fix: remove ahead sync-to script
|
|
267
|
+
|
|
268
|
+
* chore(release): 0.3.51-bundling.0
|
|
269
|
+
|
|
270
|
+
* fix: change version to v1
|
|
271
|
+
|
|
272
|
+
* chore(release): 1.0.0-bundling.1
|
|
273
|
+
|
|
274
|
+
* fix: separating es and cjs
|
|
275
|
+
|
|
276
|
+
* chore(release): 1.0.0-bundling.2
|
|
277
|
+
|
|
278
|
+
* fix: rollup config
|
|
279
|
+
|
|
280
|
+
* chore(release): 1.0.0-bundling.3
|
|
281
|
+
|
|
282
|
+
* fix: change dir structure again
|
|
283
|
+
|
|
284
|
+
* chore(release): 1.0.0-bundling.4
|
|
285
|
+
|
|
286
|
+
* fix: disable ES module generation since malibu cant handle it :(
|
|
287
|
+
|
|
288
|
+
* remove 'module' from package.json
|
|
289
|
+
|
|
290
|
+
* fix: rollup config
|
|
291
|
+
|
|
292
|
+
* chore(release): 1.0.0-bundling.5
|
|
293
|
+
|
|
294
|
+
* fix: main and module paths in package.json
|
|
295
|
+
|
|
296
|
+
* chore(release): 1.0.0-bundling.6
|
|
297
|
+
|
|
298
|
+
* docs: add comments
|
|
299
|
+
|
|
300
|
+
* perf: use lodash camelcase and kebabcase submodules
|
|
301
|
+
|
|
302
|
+
* fix: pr change - more verbose var names
|
|
303
|
+
|
|
304
|
+
Co-authored-by: Amogh Sahasrabhojanee <amogh@quintype.com>
|
|
305
|
+
|
|
306
|
+
### Features
|
|
307
|
+
|
|
308
|
+
* **Also read element:** Add as an atom ([#246](https://github.com/quintype/quintype-node-arrow/issues/246)) ([0acf73d](https://github.com/quintype/quintype-node-arrow/commit/0acf73d9c2396f2595040e2fe7f995ad5f4d53c0))
|
|
309
|
+
* **Aside Collection, Hero Image:** support sticky functionality and alternative image from the story ([#660](https://github.com/quintype/quintype-node-arrow/issues/660)) ([923ea76](https://github.com/quintype/quintype-node-arrow/commit/923ea7681b985fe891adab8694312b2b1957ada2))
|
|
310
|
+
* **Aside Collection:** support last child to be sticky ([#681](https://github.com/quintype/quintype-node-arrow/issues/681)) ([da7c26f](https://github.com/quintype/quintype-node-arrow/commit/da7c26f24369ce7f4196eca87df654827517fdb3))
|
|
311
|
+
* **Author list Component:** support the without border option and update styles in existing template ([#473](https://github.com/quintype/quintype-node-arrow/issues/473)) ([db8cb0c](https://github.com/quintype/quintype-node-arrow/commit/db8cb0cfa2637ed701a86c27a883a7fc8b423ed5))
|
|
312
|
+
* **AuthorImage:** Support multiple author templates. ([5052192](https://github.com/quintype/quintype-node-arrow/commit/50521923f70ed41ee5640ab87c0137236618aa64))
|
|
313
|
+
* **Authors List:** support as row ([#397](https://github.com/quintype/quintype-node-arrow/issues/397)) ([4c2498b](https://github.com/quintype/quintype-node-arrow/commit/4c2498ba60345c2db08677667eb960f3628a8488))
|
|
314
|
+
* **BigFact:** Story element BigFact as an atom. ([6f4e318](https://github.com/quintype/quintype-node-arrow/commit/6f4e3182580ea271439362e7e5e65dd19e289dac))
|
|
315
|
+
* **Block quote element:** Add as an atom ([#286](https://github.com/quintype/quintype-node-arrow/issues/286)) ([b23e4ca](https://github.com/quintype/quintype-node-arrow/commit/b23e4caf4e6e77b782896e2206a9453fe6302413))
|
|
316
|
+
* **Blurb Element:** Add as an atom ([#249](https://github.com/quintype/quintype-node-arrow/issues/249)) ([94a0d0f](https://github.com/quintype/quintype-node-arrow/commit/94a0d0f8267b81caf3b4c37c2f1e5c860a1c724c))
|
|
317
|
+
* Default Live Blog template. ([7d6a0ee](https://github.com/quintype/quintype-node-arrow/commit/7d6a0ee4e8eedd4ed2702e83a540848da763922a))
|
|
318
|
+
* Demarcation for premium stories ([0cdcd30](https://github.com/quintype/quintype-node-arrow/commit/0cdcd30cd7953602d032fb6fba0db8f373bd4ac7))
|
|
319
|
+
* **ELM:** Implement Extended Loadmore ([05517f0](https://github.com/quintype/quintype-node-arrow/commit/05517f0b1fe7200afa266ba053e539fde0db08d4))
|
|
320
|
+
* **four-col-12-stories:** Add other news content position ([#205](https://github.com/quintype/quintype-node-arrow/issues/205)) ([61c90ac](https://github.com/quintype/quintype-node-arrow/commit/61c90ace8ef98b36b6b1d010bf47509449d3e9bc))
|
|
321
|
+
* **Headline priority, Headline overlay priority:** support text story template ([#460](https://github.com/quintype/quintype-node-arrow/issues/460)) ([1aeb59c](https://github.com/quintype/quintype-node-arrow/commit/1aeb59c0eb744bcefdb0f36cbf29653153a62fa6))
|
|
322
|
+
* Horizontal story collection. ([c1e5210](https://github.com/quintype/quintype-node-arrow/commit/c1e5210437357c4fb9a778cfd7b26a3391f0acb8))
|
|
323
|
+
* **Image gallery:** implemented image gallery story Element ([#323](https://github.com/quintype/quintype-node-arrow/issues/323)) ([f448abc](https://github.com/quintype/quintype-node-arrow/commit/f448abccbe4a221a8ccc86c81e38f9e97df972ea))
|
|
324
|
+
* Image slideshow element ([fc4203a](https://github.com/quintype/quintype-node-arrow/commit/fc4203a8d6f3ccd203dec77ce2decd0ce3599752))
|
|
325
|
+
* Key Events template. ([b5656ed](https://github.com/quintype/quintype-node-arrow/commit/b5656ed9791c6a08d71067fad421155f4341eee0))
|
|
326
|
+
* **List comp:** created a list component. ([20388df](https://github.com/quintype/quintype-node-arrow/commit/20388df99cf62cae099187e139877a0f67ed6967))
|
|
327
|
+
* **Listicle Story:** add unit test for section-tag ([#551](https://github.com/quintype/quintype-node-arrow/issues/551)) ([b189ff3](https://github.com/quintype/quintype-node-arrow/commit/b189ff3beefb0c6d4a7022592a3e66bfcb3ce064))
|
|
328
|
+
* Live Blog templates ([d805d8a](https://github.com/quintype/quintype-node-arrow/commit/d805d8ac0c9d00d2698f168d59c0328a727b62e4))
|
|
329
|
+
* **loadmore:** Add loadmore target to rows ([d1318b2](https://github.com/quintype/quintype-node-arrow/commit/d1318b2664af3f3dd13e07788420bbadbcaa5ece))
|
|
330
|
+
* **loadmore:** Add target loadmore to rows :zap: ([82e8080](https://github.com/quintype/quintype-node-arrow/commit/82e80803ed0cb3fabd4c84fb7cc035ed46a1689e))
|
|
331
|
+
* **loadmore:** Export loadmore ([903410c](https://github.com/quintype/quintype-node-arrow/commit/903410c10dea07943adef520cea1a1eafaef018c))
|
|
332
|
+
* **LoadMore:** Implement extended loadmore :zap: ([b73544c](https://github.com/quintype/quintype-node-arrow/commit/b73544ceb9732050b159ed30645c6cf9d702ce99))
|
|
333
|
+
* **localization:** support for published on and updated on ([#724](https://github.com/quintype/quintype-node-arrow/issues/724)) ([c6876a0](https://github.com/quintype/quintype-node-arrow/commit/c6876a02ae4d1e83b96a6d3b612114257b041a0c))
|
|
334
|
+
* **magazines:** navigate prop for CollectionName ([#705](https://github.com/quintype/quintype-node-arrow/issues/705)) ([f3cbf0a](https://github.com/quintype/quintype-node-arrow/commit/f3cbf0af85de92193d1ab8b534e1a08406a94378))
|
|
335
|
+
* Minimize published CSS ([#707](https://github.com/quintype/quintype-node-arrow/issues/707)) ([f2e1944](https://github.com/quintype/quintype-node-arrow/commit/f2e1944bb5c722712c8940b130a29cf396aec11d))
|
|
336
|
+
* **Photo story templates:** added photo story templates ([#467](https://github.com/quintype/quintype-node-arrow/issues/467)) ([383f1da](https://github.com/quintype/quintype-node-arrow/commit/383f1da3c5ed7f830ed695f47b6cc079f23c97e0))
|
|
337
|
+
* **promotional message:** support in text element ([#653](https://github.com/quintype/quintype-node-arrow/issues/653)) ([c0fd0b3](https://github.com/quintype/quintype-node-arrow/commit/c0fd0b30e2903197b887a0369d6a50ae9a55f768))
|
|
338
|
+
* **Publish time:** added atom for publish time ([#332](https://github.com/quintype/quintype-node-arrow/issues/332)) ([fde9a2f](https://github.com/quintype/quintype-node-arrow/commit/fde9a2f38e1c794af409de4b66c0602739813fee))
|
|
339
|
+
* **Q&A, Question and Answer element:** add as an atom ([#330](https://github.com/quintype/quintype-node-arrow/issues/330)) ([c311e5c](https://github.com/quintype/quintype-node-arrow/commit/c311e5cd27f94219dc501ced32379debf677c52a))
|
|
340
|
+
* **Quote Element:** Add as an atom ([#235](https://github.com/quintype/quintype-node-arrow/issues/235)) ([fbc7e92](https://github.com/quintype/quintype-node-arrow/commit/fbc7e92aa1897078360f241c787b7a873d898523))
|
|
341
|
+
* Reference element. ([fc90642](https://github.com/quintype/quintype-node-arrow/commit/fc906428d924876cf669f9cf90d6a31000d6eb67))
|
|
342
|
+
* rtl for listing pages ([9d48e35](https://github.com/quintype/quintype-node-arrow/commit/9d48e357387a07b7b794ca74b45a793f42c61ca9))
|
|
343
|
+
* SectionTag: Apply text color based on the effective bg ([189bb40](https://github.com/quintype/quintype-node-arrow/commit/189bb40b9006b41425150589aa79bea260250b4d))
|
|
344
|
+
* show fallback image ([#402](https://github.com/quintype/quintype-node-arrow/issues/402)) ([9bf5d94](https://github.com/quintype/quintype-node-arrow/commit/9bf5d9436e62bada7419b635d1be79fbe812a223))
|
|
345
|
+
* **Social Share, Grids:** support vertical share, icon styles for social share and update grids in story templates ([#518](https://github.com/quintype/quintype-node-arrow/issues/518)) ([dce6957](https://github.com/quintype/quintype-node-arrow/commit/dce695709ed40987423c850bc86ffb66f24a28bd))
|
|
346
|
+
* **Social share:** social share component ([#298](https://github.com/quintype/quintype-node-arrow/issues/298)) ([0d8ff97](https://github.com/quintype/quintype-node-arrow/commit/0d8ff97286ccf027791fe7edb49d3714b2c3e96e))
|
|
347
|
+
* **Story Page:** RTL support for story elements and story templates ([#591](https://github.com/quintype/quintype-node-arrow/issues/591)) ([7bbca3f](https://github.com/quintype/quintype-node-arrow/commit/7bbca3f0a7839782767f9959b8ab38a3636914ad))
|
|
348
|
+
* Story Tags. ([d627855](https://github.com/quintype/quintype-node-arrow/commit/d6278557fdea750494f8bbbe9b133d51acfe8eac))
|
|
349
|
+
* **Summary:** implement Summary element ([#306](https://github.com/quintype/quintype-node-arrow/issues/306)) ([db1fa70](https://github.com/quintype/quintype-node-arrow/commit/db1fa70e0275e403231893c60ef8c6136237dd05))
|
|
350
|
+
* support rtl for TwoColFourStories component ([7f1e5fb](https://github.com/quintype/quintype-node-arrow/commit/7f1e5fb7ec166fa60e9beed429b7c678dbd9bb41))
|
|
351
|
+
* support slots in story elements ([#563](https://github.com/quintype/quintype-node-arrow/issues/563)) ([5d72f02](https://github.com/quintype/quintype-node-arrow/commit/5d72f02d58a42518e0126d8864c1decb58688d83))
|
|
352
|
+
* support slots in story elements ([#607](https://github.com/quintype/quintype-node-arrow/issues/607)) ([451554e](https://github.com/quintype/quintype-node-arrow/commit/451554e1068ce917a0a2f6e5fbf4f99bf97dbd92)), closes [#563](https://github.com/quintype/quintype-node-arrow/issues/563) [#606](https://github.com/quintype/quintype-node-arrow/issues/606)
|
|
353
|
+
* **text story template, caption-attribution:** support in arrow ([#442](https://github.com/quintype/quintype-node-arrow/issues/442)) ([f4c835e](https://github.com/quintype/quintype-node-arrow/commit/f4c835e35e24be14d0c705a95ccdc6abe50b2706))
|
|
354
|
+
* To create a row for Magazine editions. ([9d5e641](https://github.com/quintype/quintype-node-arrow/commit/9d5e6418b641cc3fbc73bf7f4d3892bd31e2eb0a))
|
|
355
|
+
* **Video:** Story templates for video. ([a4a72ab](https://github.com/quintype/quintype-node-arrow/commit/a4a72ab1d724c5c8f358468816f24c1d86bfaf01))
|
|
356
|
+
* **Video:** Video & StoryElement as atoms. ([816adb2](https://github.com/quintype/quintype-node-arrow/commit/816adb2f93dc0273dbc5ce4f06a72c4e5e188c51))
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
### Bug Fixes
|
|
360
|
+
|
|
361
|
+
* load more on hydration ([4445e6c](https://github.com/quintype/quintype-node-arrow/commit/4445e6c5ec8a4c0b94d81645c85bc2ef6a6be9a9))
|
|
362
|
+
* **11 Stories, Collection Filter:** update section border and UI ([#378](https://github.com/quintype/quintype-node-arrow/issues/378)) ([b10caff](https://github.com/quintype/quintype-node-arrow/commit/b10caff28bd0322cbddb22b43e12b0631354706f))
|
|
363
|
+
* **11 stories:** few design corrections ([#208](https://github.com/quintype/quintype-node-arrow/issues/208)) ([e6def48](https://github.com/quintype/quintype-node-arrow/commit/e6def48e789092acd2a021e57735a9072f106985))
|
|
364
|
+
* **3 col 6 story:** story array ([#251](https://github.com/quintype/quintype-node-arrow/issues/251)) ([92727a0](https://github.com/quintype/quintype-node-arrow/commit/92727a027651607f231dc391c5b4181a453fafe0))
|
|
365
|
+
* Ad slots config in aside collection ([81c7d53](https://github.com/quintype/quintype-node-arrow/commit/81c7d539f6438799bd9bef7b277d305d58489d0e))
|
|
366
|
+
* Add classname ([e4f242c](https://github.com/quintype/quintype-node-arrow/commit/e4f242cff272bc7a08e5829d5343f38c83983cfe))
|
|
367
|
+
* add npm v6 in engines ([48c9c9a](https://github.com/quintype/quintype-node-arrow/commit/48c9c9ad76dbab1eeed51fa65841d3ce15efd771))
|
|
368
|
+
* add readme to dist ([459f159](https://github.com/quintype/quintype-node-arrow/commit/459f159ee680672b469f182834af634909efdebc))
|
|
369
|
+
* Add styles for hero image. ([9c3f66f](https://github.com/quintype/quintype-node-arrow/commit/9c3f66f9d24c114475ada5a0eaf09982d196274b))
|
|
370
|
+
* add sync script ([#720](https://github.com/quintype/quintype-node-arrow/issues/720)) ([9ed8f45](https://github.com/quintype/quintype-node-arrow/commit/9ed8f4524ab963d0ca2bf24c0eabc1f06f327e0e))
|
|
371
|
+
* Adjust positioning for sticky story elements ([#748](https://github.com/quintype/quintype-node-arrow/issues/748)) ([0ed0879](https://github.com/quintype/quintype-node-arrow/commit/0ed0879b222100dacf8e6f35f9b70e188a3a3916))
|
|
372
|
+
* **Aside Collection:** place in rows ([#334](https://github.com/quintype/quintype-node-arrow/issues/334)) ([8e84fef](https://github.com/quintype/quintype-node-arrow/commit/8e84fef1b5b7553faa54a79ab618277c0b38bd39))
|
|
373
|
+
* Attachment element styles ([4c09e26](https://github.com/quintype/quintype-node-arrow/commit/4c09e2670a826eb2d562e0611416880f6780ce0a))
|
|
374
|
+
* author card issues ([3476898](https://github.com/quintype/quintype-node-arrow/commit/347689857349d0f90de4b43008a40ca4070b06b2))
|
|
375
|
+
* **Author Component, 4 Story Slider:** update styles ([#559](https://github.com/quintype/quintype-node-arrow/issues/559)) ([c05a491](https://github.com/quintype/quintype-node-arrow/commit/c05a491cc8b8221d8272cfdd85a480c672453ea7))
|
|
376
|
+
* Author image condition ([84920f6](https://github.com/quintype/quintype-node-arrow/commit/84920f6c6e45231a98d58aa1376a71e62ed5d363))
|
|
377
|
+
* author image position ([2afb2bd](https://github.com/quintype/quintype-node-arrow/commit/2afb2bdcf4bc8111e7496758e7b65c6359c3b0c8))
|
|
378
|
+
* **author image:** author image style ([#383](https://github.com/quintype/quintype-node-arrow/issues/383)) ([76fa062](https://github.com/quintype/quintype-node-arrow/commit/76fa062e33ebf269d186ebb51bc9693271a1f7f4))
|
|
379
|
+
* author listing page ([b08d27c](https://github.com/quintype/quintype-node-arrow/commit/b08d27c7b2a3ab1bbd678ecb60e3ae9bd9e69b41))
|
|
380
|
+
* **Author-Intro-Card:** update the condition ([#469](https://github.com/quintype/quintype-node-arrow/issues/469)) ([b7716b8](https://github.com/quintype/quintype-node-arrow/commit/b7716b85552d2d8d34e71565aaca3653bdaaceb0))
|
|
381
|
+
* Avoid truncation for story subheadline on story pages ([adf4381](https://github.com/quintype/quintype-node-arrow/commit/adf43815c41aba916003ebdd538585d91edda7e1))
|
|
382
|
+
* BarandBench bugs ([6247b8a](https://github.com/quintype/quintype-node-arrow/commit/6247b8a7b3e1d1e4f99bd45c2d35ee52a969e465))
|
|
383
|
+
* **Big fact:** spacing ([#358](https://github.com/quintype/quintype-node-arrow/issues/358)) ([ace0d37](https://github.com/quintype/quintype-node-arrow/commit/ace0d3763fff10765cbadcd9ed620df97d2035af))
|
|
384
|
+
* **big-fact:** update spacing ([#360](https://github.com/quintype/quintype-node-arrow/issues/360)) ([86ed0fc](https://github.com/quintype/quintype-node-arrow/commit/86ed0fc8746173a5010b6f52b82da227e92935b7))
|
|
385
|
+
* Bug fixes for video templates ([2ab59bb](https://github.com/quintype/quintype-node-arrow/commit/2ab59bbea61d9dc3126684c1e67aa36a18d88f28))
|
|
386
|
+
* collection items count issue ([9048496](https://github.com/quintype/quintype-node-arrow/commit/9048496841a2b4b3b6c0f9c68fd4745d146fcf58))
|
|
387
|
+
* collection items count issue ([1a4238d](https://github.com/quintype/quintype-node-arrow/commit/1a4238d283ab234604fed3bdcf959e7cc2bf519f))
|
|
388
|
+
* collection items count issue ([c06e746](https://github.com/quintype/quintype-node-arrow/commit/c06e746af2510c4bfb4835646763e1a6578d6964))
|
|
389
|
+
* **color issue:** Mono color ([#370](https://github.com/quintype/quintype-node-arrow/issues/370)) ([ceb8d8b](https://github.com/quintype/quintype-node-arrow/commit/ceb8d8b0698eaa86727aee76660f2e93805eb5fb))
|
|
390
|
+
* **default template:** replace default Template ([#517](https://github.com/quintype/quintype-node-arrow/issues/517)) ([c14ce42](https://github.com/quintype/quintype-node-arrow/commit/c14ce4227343b6b60df280d5f157fa4f07f473d4))
|
|
391
|
+
* Don't render CollectionName component if there is no collection name to display ([#714](https://github.com/quintype/quintype-node-arrow/issues/714)) ([7b7b59d](https://github.com/quintype/quintype-node-arrow/commit/7b7b59d09823d3df3520f969f3166cba34613a56))
|
|
392
|
+
* dummy commit to check tag creation ([743c34a](https://github.com/quintype/quintype-node-arrow/commit/743c34a955d3ad1030c0425f8c6a20c2e1425c0d))
|
|
393
|
+
* dummy commit to set correct tag ([0e40321](https://github.com/quintype/quintype-node-arrow/commit/0e40321022d028625be351ab622718c9d5d3fac4))
|
|
394
|
+
* **Full Bleed Image:** spacing in mobile ([#583](https://github.com/quintype/quintype-node-arrow/issues/583)) ([95740ae](https://github.com/quintype/quintype-node-arrow/commit/95740aeeed7d8b30008e7fd17ab092020875759e))
|
|
395
|
+
* get npm version in sync with tag ([c3681a7](https://github.com/quintype/quintype-node-arrow/commit/c3681a71ec67d7f6e3eaf0de3ae28db0a99da727))
|
|
396
|
+
* glide slider when rtl ([f2b60f4](https://github.com/quintype/quintype-node-arrow/commit/f2b60f449a1a7122db7a8732320c7fca6a31c6ce))
|
|
397
|
+
* Global CSS syntax for story templates ([#727](https://github.com/quintype/quintype-node-arrow/issues/727)) ([720fd79](https://github.com/quintype/quintype-node-arrow/commit/720fd7971d39084a6b0c0751c419cc78c9d6daf7))
|
|
398
|
+
* **Hero-image, 11 stories:** support story alternatives in hero-image and alternate image in 11 stories ([#669](https://github.com/quintype/quintype-node-arrow/issues/669)) ([43ac353](https://github.com/quintype/quintype-node-arrow/commit/43ac3531d366690bd03b114eb6f877aff4c64436))
|
|
399
|
+
* **Hero-image:** clean code ([#677](https://github.com/quintype/quintype-node-arrow/issues/677)) ([eaeff51](https://github.com/quintype/quintype-node-arrow/commit/eaeff512e0d6aab4047aef8e64c225b4c8bca77d))
|
|
400
|
+
* Hide/Show time stamp when the author is disabled. ([f285916](https://github.com/quintype/quintype-node-arrow/commit/f285916ea1711030936c78faafad92fa236b5447))
|
|
401
|
+
* **Image gallery:** add padding ([#443](https://github.com/quintype/quintype-node-arrow/issues/443)) ([21da4a2](https://github.com/quintype/quintype-node-arrow/commit/21da4a298bd6e2967e38ea640edb49d503557c43))
|
|
402
|
+
* image lightbox width proportion ([#732](https://github.com/quintype/quintype-node-arrow/issues/732)) ([1a6bc0f](https://github.com/quintype/quintype-node-arrow/commit/1a6bc0fc2775bc22b979deae07924a939fa8c044))
|
|
403
|
+
* Intialize config ([eb6029e](https://github.com/quintype/quintype-node-arrow/commit/eb6029ec020e11fb89997f4cc56b5750350cce06))
|
|
404
|
+
* knob not coming ([8ee8c51](https://github.com/quintype/quintype-node-arrow/commit/8ee8c51f115d76adb810da5225169e04ad4fe9fa))
|
|
405
|
+
* Load more with hydration ([234c6d3](https://github.com/quintype/quintype-node-arrow/commit/234c6d3111eb4beb403ae770ff74fa53af502174))
|
|
406
|
+
* **loadmore:** Extended loadmore ([d2beaad](https://github.com/quintype/quintype-node-arrow/commit/d2beaaddf131e3ce38984b68fc4d990051aa86cc))
|
|
407
|
+
* Magazines issues ([843a567](https://github.com/quintype/quintype-node-arrow/commit/843a56768b0bb2f8dccb8a5e30e657b21ee4529b))
|
|
408
|
+
* Map reference styles. ([2e7b6dc](https://github.com/quintype/quintype-node-arrow/commit/2e7b6dcff17610b82d60b9218934a7f4cbcdd509))
|
|
409
|
+
* multiple author images issue ([7b7739b](https://github.com/quintype/quintype-node-arrow/commit/7b7739bf92b5762ae92cf4806027a2bb201570ae))
|
|
410
|
+
* npm publish was failing. ([#305](https://github.com/quintype/quintype-node-arrow/issues/305)) ([1030196](https://github.com/quintype/quintype-node-arrow/commit/10301969ab8bdd3fafc20b749357898d5316447c))
|
|
411
|
+
* Override collection name styles in 11 stories. ([29c069a](https://github.com/quintype/quintype-node-arrow/commit/29c069ae28ab4cb939f0f323849142989cf87e0a))
|
|
412
|
+
* Pass fallback. ([f4c06f5](https://github.com/quintype/quintype-node-arrow/commit/f4c06f5186265945a882aba86ca3f684d3b32ee1))
|
|
413
|
+
* Pass mountAt ([b7fba85](https://github.com/quintype/quintype-node-arrow/commit/b7fba8569fb45503d9b952c2de0e1617ec0c3088))
|
|
414
|
+
* pass params to ResponsiveImage and wrap default fallback image ([#404](https://github.com/quintype/quintype-node-arrow/issues/404)) ([3eb1d17](https://github.com/quintype/quintype-node-arrow/commit/3eb1d177310bb485434f7bb0439ca13748bbce6e))
|
|
415
|
+
* publish ([498929f](https://github.com/quintype/quintype-node-arrow/commit/498929fab36681b8c7659d04b53e6efe7b15fb34))
|
|
416
|
+
* Publish detail styles ([cc4a0c9](https://github.com/quintype/quintype-node-arrow/commit/cc4a0c91784ff0ae7c6ffb97aaee1d8df20eba45))
|
|
417
|
+
* **Question & Answer, Text:** override styles ([#342](https://github.com/quintype/quintype-node-arrow/issues/342)) ([e29f791](https://github.com/quintype/quintype-node-arrow/commit/e29f7912896e95f6e0ceeea411d559f7988f42ee))
|
|
418
|
+
* Refactor aside collection ([66d995f](https://github.com/quintype/quintype-node-arrow/commit/66d995fe3f5e25162e6930a2d20cd2d0b08a7d67))
|
|
419
|
+
* remove fs/promises while bundling; use shell scripts | can run on < node v13 without problems ([81b0ca3](https://github.com/quintype/quintype-node-arrow/commit/81b0ca3fd2b66c0727598d0e2f8b3d2c49d6021e))
|
|
420
|
+
* **Row components:** remove subheadline from mobile view ([#463](https://github.com/quintype/quintype-node-arrow/issues/463)) ([2fc31ea](https://github.com/quintype/quintype-node-arrow/commit/2fc31eabd46cad211d0ef296894df168800fbe6f))
|
|
421
|
+
* **Rows:** remove the margin/padding top to maintain uniform spacing ([#529](https://github.com/quintype/quintype-node-arrow/issues/529)) ([9353388](https://github.com/quintype/quintype-node-arrow/commit/93533885e8febd499fd4f6d68946b22950d1c834))
|
|
422
|
+
* SectionTag: Get bg color from row context ([b802229](https://github.com/quintype/quintype-node-arrow/commit/b8022297b39664ee404c76dff4bd0023d70cbe6e))
|
|
423
|
+
* Set default props to false ([e89e2c8](https://github.com/quintype/quintype-node-arrow/commit/e89e2c88c1e3427b48982709334501a7233a2250))
|
|
424
|
+
* Simplify code. ([bc9b31b](https://github.com/quintype/quintype-node-arrow/commit/bc9b31b64dab93993dba71c73310c1df4584d46e))
|
|
425
|
+
* social share tablet styles ([cec5185](https://github.com/quintype/quintype-node-arrow/commit/cec5185cd83bf08378d9dffd5d6b246384f2843b))
|
|
426
|
+
* spacing of author timestamp with dash ([a687f40](https://github.com/quintype/quintype-node-arrow/commit/a687f40b1163034efe1ad1697a5fc4b9d4b9fa8a))
|
|
427
|
+
* **sticky-aside:** add a prop to support the sticky aside ([#671](https://github.com/quintype/quintype-node-arrow/issues/671)) ([0c864ef](https://github.com/quintype/quintype-node-arrow/commit/0c864ef3511d72cdd7081fc35f041aaec0f79bae))
|
|
428
|
+
* **story headline :** added atom for story element ([#531](https://github.com/quintype/quintype-node-arrow/issues/531)) ([277b54f](https://github.com/quintype/quintype-node-arrow/commit/277b54fa2bfca79909f20b50b0518df4f93c9c86))
|
|
429
|
+
* **story page:** add prop for rendering fallback image ([#524](https://github.com/quintype/quintype-node-arrow/issues/524)) ([7ed7924](https://github.com/quintype/quintype-node-arrow/commit/7ed79249ba638058f073f094b6b839901c7aedb8))
|
|
430
|
+
* **Story Url:** Update to Reference-Url when the Story-Template is News Elsewhere ([#427](https://github.com/quintype/quintype-node-arrow/issues/427)) ([425234a](https://github.com/quintype/quintype-node-arrow/commit/425234a081251ba4e89021f6afd8c8268c74ad6d))
|
|
431
|
+
* **Story-Elements:** make use of color brand-1 ([#319](https://github.com/quintype/quintype-node-arrow/issues/319)) ([6e81651](https://github.com/quintype/quintype-node-arrow/commit/6e81651fe4d711ce227970f4188702de2b723baa))
|
|
432
|
+
* **Summary Element:** border color ([#344](https://github.com/quintype/quintype-node-arrow/issues/344)) ([8974c8f](https://github.com/quintype/quintype-node-arrow/commit/8974c8faa40c2027c764bdee4a01947c496085f6))
|
|
433
|
+
* **Summary:** override styles ([#341](https://github.com/quintype/quintype-node-arrow/issues/341)) ([211b819](https://github.com/quintype/quintype-node-arrow/commit/211b819978d1b05675f5a3c4bfdef59f818c2cd7))
|
|
434
|
+
* **text story:** sync variables names with other story pages ([#515](https://github.com/quintype/quintype-node-arrow/issues/515)) ([e6fb4ea](https://github.com/quintype/quintype-node-arrow/commit/e6fb4ea90b8d36704346f525d2adba256e0ddacc))
|
|
435
|
+
* Time styles ([819a928](https://github.com/quintype/quintype-node-arrow/commit/819a9285815e555194bdcec89394b3159fad9d35))
|
|
436
|
+
* Typo in classname. ([9c41827](https://github.com/quintype/quintype-node-arrow/commit/9c41827da736afd54eaea7513fc28e9400a5944a))
|
|
437
|
+
* **Unit test:** update failed tests w.r.t data-test-id ([#638](https://github.com/quintype/quintype-node-arrow/issues/638)) ([5c2c341](https://github.com/quintype/quintype-node-arrow/commit/5c2c34101e24a0079c60e8025560df01e0f19d72))
|
|
438
|
+
* Update colors for story elements. ([#394](https://github.com/quintype/quintype-node-arrow/issues/394)) ([32ff71d](https://github.com/quintype/quintype-node-arrow/commit/32ff71d945a2b51bf88d44fd084c1cef1cfb7089))
|
|
439
|
+
* Update styles for collection title and section tag. ([b190305](https://github.com/quintype/quintype-node-arrow/commit/b19030579e23cf0d7f7865c4fff2b763c8100dd1))
|
|
440
|
+
* Update styles for section and collection name. ([9975be6](https://github.com/quintype/quintype-node-arrow/commit/9975be622511bd96bc6c0dec821c7ef4a40b5d9e))
|
|
441
|
+
* Update supported styles for collection name and section tag. ([707c72e](https://github.com/quintype/quintype-node-arrow/commit/707c72e700bd4b534bdc10671af2e16a9caa49ee))
|
|
442
|
+
* **update:** Button settings and support color change for text element ([f21a331](https://github.com/quintype/quintype-node-arrow/commit/f21a3312b2afc45581439ccd9ac158c5815e7d52))
|
|
443
|
+
* Updated ELM to accept component wrapper and pass config ([#710](https://github.com/quintype/quintype-node-arrow/issues/710)) ([d16e11f](https://github.com/quintype/quintype-node-arrow/commit/d16e11f4b3362a52912fe5ebd084127da94eec5c))
|
|
444
|
+
* use node 13 since node-sass breaks for node 14 ([f74c910](https://github.com/quintype/quintype-node-arrow/commit/f74c910dc2c42658861710924bd3d9cc04e3e5e2))
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
* Bundling (#659) ([8e629d4](https://github.com/quintype/quintype-node-arrow/commit/8e629d4130c3e0dffeb6d28781f835ab8af07fe7)), closes [#659](https://github.com/quintype/quintype-node-arrow/issues/659)
|
|
448
|
+
|
|
449
|
+
### [1.4.4](https://github.com/quintype/quintype-node-arrow/compare/v1.4.3...v1.4.4) (2021-07-08)
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
### Bug Fixes
|
|
453
|
+
|
|
454
|
+
* Adjust positioning for sticky story elements ([#748](https://github.com/quintype/quintype-node-arrow/issues/748)) ([0ed0879](https://github.com/quintype/quintype-node-arrow/commit/0ed0879b222100dacf8e6f35f9b70e188a3a3916))
|
|
455
|
+
|
|
456
|
+
### [1.4.3](https://github.com/quintype/quintype-node-arrow/compare/v1.4.2...v1.4.3) (2021-06-22)
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
### Bug Fixes
|
|
460
|
+
|
|
461
|
+
* image lightbox width proportion ([#732](https://github.com/quintype/quintype-node-arrow/issues/732)) ([1a6bc0f](https://github.com/quintype/quintype-node-arrow/commit/1a6bc0fc2775bc22b979deae07924a939fa8c044))
|
|
462
|
+
|
|
463
|
+
### [1.4.2](https://github.com/quintype/quintype-node-arrow/compare/v1.4.1...v1.4.2) (2021-06-09)
|
|
464
|
+
|
|
465
|
+
### [1.4.1](https://github.com/quintype/quintype-node-arrow/compare/v1.4.0...v1.4.1) (2021-06-09)
|
|
466
|
+
|
|
467
|
+
## [1.4.0](https://github.com/quintype/quintype-node-arrow/compare/v1.3.5...v1.4.0) (2021-06-09)
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
### Features
|
|
471
|
+
|
|
472
|
+
* **localization:** support for published on and updated on ([#724](https://github.com/quintype/quintype-node-arrow/issues/724)) ([c6876a0](https://github.com/quintype/quintype-node-arrow/commit/c6876a02ae4d1e83b96a6d3b612114257b041a0c))
|
|
473
|
+
|
|
474
|
+
### [1.3.5](https://github.com/quintype/quintype-node-arrow/compare/v1.3.4...v1.3.5) (2021-06-02)
|
|
475
|
+
|
|
476
|
+
### [1.3.4](https://github.com/quintype/quintype-node-arrow/compare/v1.3.3...v1.3.4) (2021-06-02)
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
### Bug Fixes
|
|
480
|
+
|
|
481
|
+
* Global CSS syntax for story templates ([#727](https://github.com/quintype/quintype-node-arrow/issues/727)) ([720fd79](https://github.com/quintype/quintype-node-arrow/commit/720fd7971d39084a6b0c0751c419cc78c9d6daf7))
|
|
482
|
+
|
|
483
|
+
### [1.3.3](https://github.com/quintype/quintype-node-arrow/compare/v1.3.2...v1.3.3) (2021-05-25)
|
|
484
|
+
|
|
485
|
+
### [1.3.2](https://github.com/quintype/quintype-node-arrow/compare/v1.3.1...v1.3.2) (2021-05-25)
|
|
486
|
+
|
|
487
|
+
### [1.3.1](https://github.com/quintype/quintype-node-arrow/compare/v1.3.0...v1.3.1) (2021-05-20)
|
|
488
|
+
|
|
489
|
+
## [1.3.0](https://github.com/quintype/quintype-node-arrow/compare/v1.2.1...v1.3.0) (2021-05-17)
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
### Features
|
|
493
|
+
|
|
494
|
+
* Demarcation for premium stories ([0cdcd30](https://github.com/quintype/quintype-node-arrow/commit/0cdcd30cd7953602d032fb6fba0db8f373bd4ac7))
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
### Bug Fixes
|
|
498
|
+
|
|
499
|
+
* **Hero-image, 11 stories:** support story alternatives in hero-image and alternate image in 11 stories ([#669](https://github.com/quintype/quintype-node-arrow/issues/669)) ([43ac353](https://github.com/quintype/quintype-node-arrow/commit/43ac3531d366690bd03b114eb6f877aff4c64436))
|
|
500
|
+
* add sync script ([#720](https://github.com/quintype/quintype-node-arrow/issues/720)) ([9ed8f45](https://github.com/quintype/quintype-node-arrow/commit/9ed8f4524ab963d0ca2bf24c0eabc1f06f327e0e))
|
|
501
|
+
|
|
502
|
+
### [1.2.1](https://github.com/quintype/quintype-node-arrow/compare/v1.2.0...v1.2.1) (2021-05-07)
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
### Bug Fixes
|
|
506
|
+
|
|
507
|
+
* Don't render CollectionName component if there is no collection name to display ([#714](https://github.com/quintype/quintype-node-arrow/issues/714)) ([7b7b59d](https://github.com/quintype/quintype-node-arrow/commit/7b7b59d09823d3df3520f969f3166cba34613a56))
|
|
508
|
+
* Updated ELM to accept component wrapper and pass config ([#710](https://github.com/quintype/quintype-node-arrow/issues/710)) ([d16e11f](https://github.com/quintype/quintype-node-arrow/commit/d16e11f4b3362a52912fe5ebd084127da94eec5c))
|
|
509
|
+
|
|
510
|
+
## [1.2.0](https://github.com/quintype/quintype-node-arrow/compare/v1.1.0...v1.2.0) (2021-04-30)
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
### Features
|
|
514
|
+
|
|
515
|
+
* Minimize published CSS ([#707](https://github.com/quintype/quintype-node-arrow/issues/707)) ([f2e1944](https://github.com/quintype/quintype-node-arrow/commit/f2e1944bb5c722712c8940b130a29cf396aec11d))
|
|
516
|
+
* **magazines:** navigate prop for CollectionName ([#705](https://github.com/quintype/quintype-node-arrow/issues/705)) ([f3cbf0a](https://github.com/quintype/quintype-node-arrow/commit/f3cbf0af85de92193d1ab8b534e1a08406a94378))
|
|
517
|
+
|
|
518
|
+
## [1.1.0](https://github.com/quintype/quintype-node-arrow/compare/v1.0.7...v1.1.0) (2021-04-23)
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
### Features
|
|
522
|
+
|
|
523
|
+
* **Aside Collection:** support last child to be sticky ([#681](https://github.com/quintype/quintype-node-arrow/issues/681)) ([da7c26f](https://github.com/quintype/quintype-node-arrow/commit/da7c26f24369ce7f4196eca87df654827517fdb3))
|
|
524
|
+
* **ELM:** Implement Extended Loadmore ([05517f0](https://github.com/quintype/quintype-node-arrow/commit/05517f0b1fe7200afa266ba053e539fde0db08d4))
|
|
525
|
+
* **loadmore:** Add loadmore target to rows ([d1318b2](https://github.com/quintype/quintype-node-arrow/commit/d1318b2664af3f3dd13e07788420bbadbcaa5ece))
|
|
526
|
+
* **loadmore:** Add target loadmore to rows :zap: ([82e8080](https://github.com/quintype/quintype-node-arrow/commit/82e80803ed0cb3fabd4c84fb7cc035ed46a1689e))
|
|
527
|
+
* **loadmore:** Export loadmore ([903410c](https://github.com/quintype/quintype-node-arrow/commit/903410c10dea07943adef520cea1a1eafaef018c))
|
|
528
|
+
* **LoadMore:** Implement extended loadmore :zap: ([b73544c](https://github.com/quintype/quintype-node-arrow/commit/b73544ceb9732050b159ed30645c6cf9d702ce99))
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
### Bug Fixes
|
|
532
|
+
|
|
533
|
+
* **Hero-image:** clean code ([#677](https://github.com/quintype/quintype-node-arrow/issues/677)) ([eaeff51](https://github.com/quintype/quintype-node-arrow/commit/eaeff512e0d6aab4047aef8e64c225b4c8bca77d))
|
|
534
|
+
* **loadmore:** Extended loadmore ([d2beaad](https://github.com/quintype/quintype-node-arrow/commit/d2beaaddf131e3ce38984b68fc4d990051aa86cc))
|
|
535
|
+
* **sticky-aside:** add a prop to support the sticky aside ([#671](https://github.com/quintype/quintype-node-arrow/issues/671)) ([0c864ef](https://github.com/quintype/quintype-node-arrow/commit/0c864ef3511d72cdd7081fc35f041aaec0f79bae))
|
|
536
|
+
|
|
537
|
+
### [1.0.7](https://github.com/quintype/quintype-node-arrow/compare/v1.0.6...v1.0.7) (2021-02-23)
|
|
538
|
+
|
|
539
|
+
### [1.0.6](https://github.com/quintype/quintype-node-arrow/compare/v1.0.5...v1.0.6) (2021-02-23)
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
### Bug Fixes
|
|
543
|
+
|
|
544
|
+
* add readme to dist ([459f159](https://github.com/quintype/quintype-node-arrow/commit/459f159ee680672b469f182834af634909efdebc))
|
|
545
|
+
|
|
546
|
+
### [1.0.5](https://github.com/quintype/quintype-node-arrow/compare/v1.0.4...v1.0.5) (2021-02-23)
|
|
547
|
+
|
|
548
|
+
### [1.0.4](https://github.com/quintype/quintype-node-arrow/compare/v1.0.2...v1.0.4) (2021-02-22)
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
### Bug Fixes
|
|
552
|
+
|
|
553
|
+
* get npm version in sync with tag ([c3681a7](https://github.com/quintype/quintype-node-arrow/commit/c3681a71ec67d7f6e3eaf0de3ae28db0a99da727))
|
|
554
|
+
* publish ([498929f](https://github.com/quintype/quintype-node-arrow/commit/498929fab36681b8c7659d04b53e6efe7b15fb34))
|
|
555
|
+
|
|
556
|
+
### [1.0.3](https://github.com/quintype/quintype-node-arrow/compare/v1.0.2...v1.0.3) (2021-02-22)
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
### Bug Fixes
|
|
560
|
+
|
|
561
|
+
* get npm version in sync with tag ([c3681a7](https://github.com/quintype/quintype-node-arrow/commit/c3681a71ec67d7f6e3eaf0de3ae28db0a99da727))
|
|
562
|
+
|
|
563
|
+
### [1.0.2](https://github.com/quintype/quintype-node-arrow/compare/v1.0.1...v1.0.2) (2021-02-22)
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
### Bug Fixes
|
|
567
|
+
|
|
568
|
+
* dummy commit to set correct tag ([0e40321](https://github.com/quintype/quintype-node-arrow/commit/0e40321022d028625be351ab622718c9d5d3fac4))
|
|
569
|
+
|
|
570
|
+
### [1.0.1](https://github.com/quintype/quintype-node-arrow/compare/v1.0.0...v1.0.1) (2021-02-22)
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
### Bug Fixes
|
|
574
|
+
|
|
575
|
+
* dummy commit to check tag creation ([743c34a](https://github.com/quintype/quintype-node-arrow/commit/743c34a955d3ad1030c0425f8c6a20c2e1425c0d))
|
|
576
|
+
|
|
577
|
+
## [1.0.0](https://github.com/quintype/quintype-node-arrow/compare/v0.3.50...v1.0.0) (2021-02-22)
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
### ⚠ BREAKING CHANGES
|
|
581
|
+
|
|
582
|
+
* change bundling logic | API change
|
|
583
|
+
|
|
584
|
+
* fix: rollup config
|
|
585
|
+
|
|
586
|
+
* fix: add publish script
|
|
587
|
+
|
|
588
|
+
* docs: add inline comments, update readme
|
|
589
|
+
|
|
590
|
+
* fix: remove ahead sync-to script
|
|
591
|
+
|
|
592
|
+
* chore(release): 0.3.51-bundling.0
|
|
593
|
+
|
|
594
|
+
* fix: change version to v1
|
|
595
|
+
|
|
596
|
+
* chore(release): 1.0.0-bundling.1
|
|
597
|
+
|
|
598
|
+
* fix: separating es and cjs
|
|
599
|
+
|
|
600
|
+
* chore(release): 1.0.0-bundling.2
|
|
601
|
+
|
|
602
|
+
* fix: rollup config
|
|
603
|
+
|
|
604
|
+
* chore(release): 1.0.0-bundling.3
|
|
605
|
+
|
|
606
|
+
* fix: change dir structure again
|
|
607
|
+
|
|
608
|
+
* chore(release): 1.0.0-bundling.4
|
|
609
|
+
|
|
610
|
+
* fix: disable ES module generation since malibu cant handle it :(
|
|
611
|
+
|
|
612
|
+
* remove 'module' from package.json
|
|
613
|
+
|
|
614
|
+
* fix: rollup config
|
|
615
|
+
|
|
616
|
+
* chore(release): 1.0.0-bundling.5
|
|
617
|
+
|
|
618
|
+
* fix: main and module paths in package.json
|
|
619
|
+
|
|
620
|
+
* chore(release): 1.0.0-bundling.6
|
|
621
|
+
|
|
622
|
+
* docs: add comments
|
|
623
|
+
|
|
624
|
+
* perf: use lodash camelcase and kebabcase submodules
|
|
625
|
+
|
|
626
|
+
* fix: pr change - more verbose var names
|
|
627
|
+
|
|
628
|
+
Co-authored-by: Amogh Sahasrabhojanee <amogh@quintype.com>
|
|
629
|
+
|
|
630
|
+
### Features
|
|
631
|
+
|
|
632
|
+
* **Aside Collection, Hero Image:** support sticky functionality and alternative image from the story ([#660](https://github.com/quintype/quintype-node-arrow/issues/660)) ([923ea76](https://github.com/quintype/quintype-node-arrow/commit/923ea7681b985fe891adab8694312b2b1957ada2))
|
|
633
|
+
* **promotional message:** support in text element ([#653](https://github.com/quintype/quintype-node-arrow/issues/653)) ([c0fd0b3](https://github.com/quintype/quintype-node-arrow/commit/c0fd0b30e2903197b887a0369d6a50ae9a55f768))
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
### Bug Fixes
|
|
637
|
+
|
|
638
|
+
* add npm v6 in engines ([48c9c9a](https://github.com/quintype/quintype-node-arrow/commit/48c9c9ad76dbab1eeed51fa65841d3ce15efd771))
|
|
639
|
+
* Attachment element styles ([4c09e26](https://github.com/quintype/quintype-node-arrow/commit/4c09e2670a826eb2d562e0611416880f6780ce0a))
|
|
640
|
+
* Pass mountAt ([b7fba85](https://github.com/quintype/quintype-node-arrow/commit/b7fba8569fb45503d9b952c2de0e1617ec0c3088))
|
|
641
|
+
* Publish detail styles ([cc4a0c9](https://github.com/quintype/quintype-node-arrow/commit/cc4a0c91784ff0ae7c6ffb97aaee1d8df20eba45))
|
|
642
|
+
* remove fs/promises while bundling; use shell scripts | can run on < node v13 without problems ([81b0ca3](https://github.com/quintype/quintype-node-arrow/commit/81b0ca3fd2b66c0727598d0e2f8b3d2c49d6021e))
|
|
643
|
+
* Simplify code. ([bc9b31b](https://github.com/quintype/quintype-node-arrow/commit/bc9b31b64dab93993dba71c73310c1df4584d46e))
|
|
644
|
+
* social share tablet styles ([cec5185](https://github.com/quintype/quintype-node-arrow/commit/cec5185cd83bf08378d9dffd5d6b246384f2843b))
|
|
645
|
+
* Time styles ([819a928](https://github.com/quintype/quintype-node-arrow/commit/819a9285815e555194bdcec89394b3159fad9d35))
|
|
646
|
+
* use node 13 since node-sass breaks for node 14 ([f74c910](https://github.com/quintype/quintype-node-arrow/commit/f74c910dc2c42658861710924bd3d9cc04e3e5e2))
|
|
647
|
+
* **Unit test:** update failed tests w.r.t data-test-id ([#638](https://github.com/quintype/quintype-node-arrow/issues/638)) ([5c2c341](https://github.com/quintype/quintype-node-arrow/commit/5c2c34101e24a0079c60e8025560df01e0f19d72))
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
* Bundling (#659) ([8e629d4](https://github.com/quintype/quintype-node-arrow/commit/8e629d4130c3e0dffeb6d28781f835ab8af07fe7)), closes [#659](https://github.com/quintype/quintype-node-arrow/issues/659)
|
|
651
|
+
|
|
652
|
+
### [0.3.50](https://github.com/quintype/quintype-node-arrow/compare/v0.3.49...v0.3.50) (2021-01-04)
|
|
653
|
+
|
|
654
|
+
### [0.3.49](https://github.com/quintype/quintype-node-arrow/compare/v0.3.48...v0.3.49) (2021-01-04)
|
|
655
|
+
|
|
656
|
+
### [0.3.48](https://github.com/quintype/quintype-node-arrow/compare/v0.3.47...v0.3.48) (2020-12-17)
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
### Features
|
|
660
|
+
|
|
661
|
+
* support slots in story elements ([#607](https://github.com/quintype/quintype-node-arrow/issues/607)) ([451554e](https://github.com/quintype/quintype-node-arrow/commit/451554e1068ce917a0a2f6e5fbf4f99bf97dbd92)), closes [#563](https://github.com/quintype/quintype-node-arrow/issues/563) [#606](https://github.com/quintype/quintype-node-arrow/issues/606)
|
|
662
|
+
* **Story Page:** RTL support for story elements and story templates ([#591](https://github.com/quintype/quintype-node-arrow/issues/591)) ([7bbca3f](https://github.com/quintype/quintype-node-arrow/commit/7bbca3f0a7839782767f9959b8ab38a3636914ad))
|
|
663
|
+
|
|
664
|
+
### [0.3.47](https://github.com/quintype/quintype-node-arrow/compare/v0.3.46...v0.3.47) (2020-12-15)
|
|
665
|
+
|
|
666
|
+
### [0.3.46-rtl-listing-pages.0](https://github.com/quintype/quintype-node-arrow/compare/v0.3.45...v0.3.46-rtl-listing-pages.0) (2020-12-15)
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
### Features
|
|
670
|
+
|
|
671
|
+
* rtl for listing pages ([9d48e35](https://github.com/quintype/quintype-node-arrow/commit/9d48e357387a07b7b794ca74b45a793f42c61ca9))
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
### Bug Fixes
|
|
675
|
+
|
|
676
|
+
* spacing of author timestamp with dash ([a687f40](https://github.com/quintype/quintype-node-arrow/commit/a687f40b1163034efe1ad1697a5fc4b9d4b9fa8a))
|
|
677
|
+
|
|
678
|
+
### [0.3.46](https://github.com/quintype/quintype-node-arrow/compare/v0.3.45...v0.3.46) (2020-12-15)
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
### Bug Fixes
|
|
682
|
+
|
|
683
|
+
* author card issues ([3476898](https://github.com/quintype/quintype-node-arrow/commit/347689857349d0f90de4b43008a40ca4070b06b2))
|
|
684
|
+
* multiple author images issue ([7b7739b](https://github.com/quintype/quintype-node-arrow/commit/7b7739bf92b5762ae92cf4806027a2bb201570ae))
|
|
685
|
+
|
|
686
|
+
### [0.3.45-rtl-support-authorlisting.0](https://github.com/quintype/quintype-node-arrow/compare/v0.3.45-rtl-support.3...v0.3.45-rtl-support-authorlisting.0) (2020-12-08)
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
### Bug Fixes
|
|
690
|
+
|
|
691
|
+
* author listing page ([b08d27c](https://github.com/quintype/quintype-node-arrow/commit/b08d27c7b2a3ab1bbd678ecb60e3ae9bd9e69b41))
|
|
692
|
+
|
|
693
|
+
### [0.3.45](https://github.com/quintype/quintype-node-arrow/compare/v0.3.45-rtl-support.3...v0.3.45) (2020-12-14)
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
### Features
|
|
697
|
+
|
|
698
|
+
* Image slideshow element ([fc4203a](https://github.com/quintype/quintype-node-arrow/commit/fc4203a8d6f3ccd203dec77ce2decd0ce3599752))
|
|
699
|
+
* support slots in story elements ([#563](https://github.com/quintype/quintype-node-arrow/issues/563)) ([5d72f02](https://github.com/quintype/quintype-node-arrow/commit/5d72f02d58a42518e0126d8864c1decb58688d83))
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
### Bug Fixes
|
|
703
|
+
|
|
704
|
+
* load more on hydration ([4445e6c](https://github.com/quintype/quintype-node-arrow/commit/4445e6c5ec8a4c0b94d81645c85bc2ef6a6be9a9))
|
|
705
|
+
* Author image condition ([84920f6](https://github.com/quintype/quintype-node-arrow/commit/84920f6c6e45231a98d58aa1376a71e62ed5d363))
|
|
706
|
+
* author image position ([2afb2bd](https://github.com/quintype/quintype-node-arrow/commit/2afb2bdcf4bc8111e7496758e7b65c6359c3b0c8))
|
|
707
|
+
* collection items count issue ([9048496](https://github.com/quintype/quintype-node-arrow/commit/9048496841a2b4b3b6c0f9c68fd4745d146fcf58))
|
|
708
|
+
* collection items count issue ([1a4238d](https://github.com/quintype/quintype-node-arrow/commit/1a4238d283ab234604fed3bdcf959e7cc2bf519f))
|
|
709
|
+
* collection items count issue ([c06e746](https://github.com/quintype/quintype-node-arrow/commit/c06e746af2510c4bfb4835646763e1a6578d6964))
|
|
710
|
+
* glide slider when rtl ([f2b60f4](https://github.com/quintype/quintype-node-arrow/commit/f2b60f449a1a7122db7a8732320c7fca6a31c6ce))
|
|
711
|
+
* Intialize config ([eb6029e](https://github.com/quintype/quintype-node-arrow/commit/eb6029ec020e11fb89997f4cc56b5750350cce06))
|
|
712
|
+
* **Full Bleed Image:** spacing in mobile ([#583](https://github.com/quintype/quintype-node-arrow/issues/583)) ([95740ae](https://github.com/quintype/quintype-node-arrow/commit/95740aeeed7d8b30008e7fd17ab092020875759e))
|
|
713
|
+
|
|
714
|
+
### [0.3.44](https://github.com/quintype/quintype-node-arrow/compare/v0.3.43...v0.3.44) (2020-11-03)
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
### Features
|
|
718
|
+
|
|
719
|
+
* Live Blog templates ([d805d8a](https://github.com/quintype/quintype-node-arrow/commit/d805d8ac0c9d00d2698f168d59c0328a727b62e4))
|
|
720
|
+
* **Listicle Story:** add unit test for section-tag ([#551](https://github.com/quintype/quintype-node-arrow/issues/551)) ([b189ff3](https://github.com/quintype/quintype-node-arrow/commit/b189ff3beefb0c6d4a7022592a3e66bfcb3ce064))
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
### Bug Fixes
|
|
724
|
+
|
|
725
|
+
* **default template:** replace default Template ([#517](https://github.com/quintype/quintype-node-arrow/issues/517)) ([c14ce42](https://github.com/quintype/quintype-node-arrow/commit/c14ce4227343b6b60df280d5f157fa4f07f473d4))
|
|
726
|
+
* Ad slots config in aside collection ([81c7d53](https://github.com/quintype/quintype-node-arrow/commit/81c7d539f6438799bd9bef7b277d305d58489d0e))
|
|
727
|
+
* **Rows:** remove the margin/padding top to maintain uniform spacing ([#529](https://github.com/quintype/quintype-node-arrow/issues/529)) ([9353388](https://github.com/quintype/quintype-node-arrow/commit/93533885e8febd499fd4f6d68946b22950d1c834))
|
|
728
|
+
* **story headline :** added atom for story element ([#531](https://github.com/quintype/quintype-node-arrow/issues/531)) ([277b54f](https://github.com/quintype/quintype-node-arrow/commit/277b54fa2bfca79909f20b50b0518df4f93c9c86))
|
|
729
|
+
* **story page:** add prop for rendering fallback image ([#524](https://github.com/quintype/quintype-node-arrow/issues/524)) ([7ed7924](https://github.com/quintype/quintype-node-arrow/commit/7ed79249ba638058f073f094b6b839901c7aedb8))
|
|
730
|
+
* Load more with hydration ([234c6d3](https://github.com/quintype/quintype-node-arrow/commit/234c6d3111eb4beb403ae770ff74fa53af502174))
|
|
731
|
+
|
|
732
|
+
### [0.3.43](https://github.com/quintype/quintype-node-arrow/compare/v0.3.42...v0.3.43) (2020-10-07)
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
### Features
|
|
736
|
+
|
|
737
|
+
* Default Live Blog template. ([7d6a0ee](https://github.com/quintype/quintype-node-arrow/commit/7d6a0ee4e8eedd4ed2702e83a540848da763922a))
|
|
738
|
+
* Key Events template. ([b5656ed](https://github.com/quintype/quintype-node-arrow/commit/b5656ed9791c6a08d71067fad421155f4341eee0))
|
|
739
|
+
* **Photo story templates:** added photo story templates ([#467](https://github.com/quintype/quintype-node-arrow/issues/467)) ([383f1da](https://github.com/quintype/quintype-node-arrow/commit/383f1da3c5ed7f830ed695f47b6cc079f23c97e0))
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
### Bug Fixes
|
|
743
|
+
|
|
744
|
+
* **text story:** sync variables names with other story pages ([#515](https://github.com/quintype/quintype-node-arrow/issues/515)) ([e6fb4ea](https://github.com/quintype/quintype-node-arrow/commit/e6fb4ea90b8d36704346f525d2adba256e0ddacc))
|
|
745
|
+
* Magazines issues ([843a567](https://github.com/quintype/quintype-node-arrow/commit/843a56768b0bb2f8dccb8a5e30e657b21ee4529b))
|
|
746
|
+
|
|
747
|
+
### [0.3.42](https://github.com/quintype/quintype-node-arrow/compare/v0.3.41...v0.3.42) (2020-09-18)
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
### Features
|
|
751
|
+
|
|
752
|
+
* **Author list Component:** support the without border option and update styles in existing template ([#473](https://github.com/quintype/quintype-node-arrow/issues/473)) ([db8cb0c](https://github.com/quintype/quintype-node-arrow/commit/db8cb0cfa2637ed701a86c27a883a7fc8b423ed5))
|
|
753
|
+
* To create a row for Magazine editions. ([9d5e641](https://github.com/quintype/quintype-node-arrow/commit/9d5e6418b641cc3fbc73bf7f4d3892bd31e2eb0a))
|
|
754
|
+
* **Headline priority, Headline overlay priority:** support text story template ([#460](https://github.com/quintype/quintype-node-arrow/issues/460)) ([1aeb59c](https://github.com/quintype/quintype-node-arrow/commit/1aeb59c0eb744bcefdb0f36cbf29653153a62fa6))
|
|
755
|
+
* Reference element. ([fc90642](https://github.com/quintype/quintype-node-arrow/commit/fc906428d924876cf669f9cf90d6a31000d6eb67))
|
|
756
|
+
* **text story template, caption-attribution:** support in arrow ([#442](https://github.com/quintype/quintype-node-arrow/issues/442)) ([f4c835e](https://github.com/quintype/quintype-node-arrow/commit/f4c835e35e24be14d0c705a95ccdc6abe50b2706))
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
### Bug Fixes
|
|
760
|
+
|
|
761
|
+
* **Author-Intro-Card:** update the condition ([#469](https://github.com/quintype/quintype-node-arrow/issues/469)) ([b7716b8](https://github.com/quintype/quintype-node-arrow/commit/b7716b85552d2d8d34e71565aaca3653bdaaceb0))
|
|
762
|
+
* Map reference styles. ([2e7b6dc](https://github.com/quintype/quintype-node-arrow/commit/2e7b6dcff17610b82d60b9218934a7f4cbcdd509))
|
|
763
|
+
* **Row components:** remove subheadline from mobile view ([#463](https://github.com/quintype/quintype-node-arrow/issues/463)) ([2fc31ea](https://github.com/quintype/quintype-node-arrow/commit/2fc31eabd46cad211d0ef296894df168800fbe6f))
|
|
764
|
+
|
|
765
|
+
### [0.3.41](https://github.com/quintype/quintype-node-arrow/compare/v0.3.40...v0.3.41) (2020-08-25)
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
### Bug Fixes
|
|
769
|
+
|
|
770
|
+
* **Image gallery:** add padding ([#443](https://github.com/quintype/quintype-node-arrow/issues/443)) ([21da4a2](https://github.com/quintype/quintype-node-arrow/commit/21da4a298bd6e2967e38ea640edb49d503557c43))
|
|
771
|
+
|
|
772
|
+
### [0.3.40](https://github.com/quintype/quintype-node-arrow/compare/v0.3.39...v0.3.40) (2020-08-21)
|
|
773
|
+
|
|
774
|
+
### [0.3.39](https://github.com/quintype/quintype-node-arrow/compare/v0.3.38...v0.3.39) (2020-08-19)
|
|
775
|
+
|
|
776
|
+
|
|
777
|
+
### Bug Fixes
|
|
778
|
+
|
|
779
|
+
* Bug fixes for video templates ([2ab59bb](https://github.com/quintype/quintype-node-arrow/commit/2ab59bbea61d9dc3126684c1e67aa36a18d88f28))
|
|
780
|
+
|
|
781
|
+
### [0.3.38](https://github.com/quintype/quintype-node-arrow/compare/v0.3.37...v0.3.38) (2020-08-19)
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
### Bug Fixes
|
|
785
|
+
|
|
786
|
+
* **Story Url:** Update to Reference-Url when the Story-Template is News Elsewhere ([#427](https://github.com/quintype/quintype-node-arrow/issues/427)) ([425234a](https://github.com/quintype/quintype-node-arrow/commit/425234a081251ba4e89021f6afd8c8268c74ad6d))
|
|
787
|
+
|
|
788
|
+
### [0.3.37](https://github.com/quintype/quintype-node-arrow/compare/v0.3.36...v0.3.37) (2020-08-12)
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
### Features
|
|
792
|
+
|
|
793
|
+
* **Authors List:** support as row ([#397](https://github.com/quintype/quintype-node-arrow/issues/397)) ([4c2498b](https://github.com/quintype/quintype-node-arrow/commit/4c2498ba60345c2db08677667eb960f3628a8488))
|
|
794
|
+
|
|
795
|
+
### [0.3.36](https://github.com/quintype/quintype-node-arrow/compare/v0.3.35...v0.3.36) (2020-08-12)
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
### Bug Fixes
|
|
799
|
+
|
|
800
|
+
* Hide/Show time stamp when the author is disabled. ([f285916](https://github.com/quintype/quintype-node-arrow/commit/f285916ea1711030936c78faafad92fa236b5447))
|
|
801
|
+
* Pass fallback. ([f4c06f5](https://github.com/quintype/quintype-node-arrow/commit/f4c06f5186265945a882aba86ca3f684d3b32ee1))
|
|
802
|
+
|
|
803
|
+
### [0.3.35](https://github.com/quintype/quintype-node-arrow/compare/v0.3.35-issue-658.0...v0.3.35) (2020-08-10)
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
### Bug Fixes
|
|
807
|
+
|
|
808
|
+
* **update:** Button settings and support color change for text element ([f21a331](https://github.com/quintype/quintype-node-arrow/commit/f21a3312b2afc45581439ccd9ac158c5815e7d52))
|
|
809
|
+
|
|
810
|
+
### [0.3.34](https://github.com/quintype/quintype-node-arrow/compare/v0.3.29...v0.3.34) (2020-08-06)
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
### Features
|
|
814
|
+
|
|
815
|
+
* show fallback image ([#402](https://github.com/quintype/quintype-node-arrow/issues/402)) ([9bf5d94](https://github.com/quintype/quintype-node-arrow/commit/9bf5d9436e62bada7419b635d1be79fbe812a223))
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
### Bug Fixes
|
|
819
|
+
|
|
820
|
+
* Override collection name styles in 11 stories. ([29c069a](https://github.com/quintype/quintype-node-arrow/commit/29c069ae28ab4cb939f0f323849142989cf87e0a))
|
|
821
|
+
* pass params to ResponsiveImage and wrap default fallback image ([#404](https://github.com/quintype/quintype-node-arrow/issues/404)) ([3eb1d17](https://github.com/quintype/quintype-node-arrow/commit/3eb1d177310bb485434f7bb0439ca13748bbce6e))
|
|
822
|
+
* Refactor aside collection ([66d995f](https://github.com/quintype/quintype-node-arrow/commit/66d995fe3f5e25162e6930a2d20cd2d0b08a7d67))
|
|
823
|
+
* Update colors for story elements. ([#394](https://github.com/quintype/quintype-node-arrow/issues/394)) ([32ff71d](https://github.com/quintype/quintype-node-arrow/commit/32ff71d945a2b51bf88d44fd084c1cef1cfb7089))
|
|
824
|
+
|
|
825
|
+
### [0.3.33](https://github.com/quintype/quintype-node-arrow/compare/v0.3.32...v0.3.33) (2020-07-29)
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
### Bug Fixes
|
|
829
|
+
|
|
830
|
+
* pass params to ResponsiveImage and wrap default fallback image ([#404](https://github.com/quintype/quintype-node-arrow/issues/404)) ([3eb1d17](https://github.com/quintype/quintype-node-arrow/commit/3eb1d177310bb485434f7bb0439ca13748bbce6e))
|
|
831
|
+
|
|
832
|
+
### [0.3.32](https://github.com/quintype/quintype-node-arrow/compare/v0.3.31...v0.3.32) (2020-07-29)
|
|
833
|
+
|
|
834
|
+
### [0.3.31-issue-398.0](https://github.com/quintype/quintype-node-arrow/compare/v0.3.31-issue-382.1...v0.3.31-issue-398.0) (2020-07-28)
|
|
835
|
+
|
|
836
|
+
### [0.3.31](https://github.com/quintype/quintype-node-arrow/compare/v0.3.31-issue-382.1...v0.3.31) (2020-07-29)
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
### Features
|
|
840
|
+
|
|
841
|
+
* show fallback image ([#402](https://github.com/quintype/quintype-node-arrow/issues/402)) ([9bf5d94](https://github.com/quintype/quintype-node-arrow/commit/9bf5d9436e62bada7419b635d1be79fbe812a223))
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
### Bug Fixes
|
|
845
|
+
|
|
846
|
+
* Update colors for story elements. ([#394](https://github.com/quintype/quintype-node-arrow/issues/394)) ([32ff71d](https://github.com/quintype/quintype-node-arrow/commit/32ff71d945a2b51bf88d44fd084c1cef1cfb7089))
|
|
847
|
+
|
|
848
|
+
### [0.3.30](https://github.com/quintype/quintype-node-arrow/compare/v0.3.29...v0.3.30) (2020-07-21)
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
### Bug Fixes
|
|
852
|
+
|
|
853
|
+
* Override collection name styles in 11 stories. ([29c069a](https://github.com/quintype/quintype-node-arrow/commit/29c069ae28ab4cb939f0f323849142989cf87e0a))
|
|
854
|
+
|
|
855
|
+
### [0.3.29](https://github.com/quintype/quintype-node-arrow/compare/v0.3.25...v0.3.29) (2020-07-17)
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
### Bug Fixes
|
|
859
|
+
|
|
860
|
+
* Update styles for collection title and section tag. ([b190305](https://github.com/quintype/quintype-node-arrow/commit/b19030579e23cf0d7f7865c4fff2b763c8100dd1))
|
|
861
|
+
* Update styles for section and collection name. ([9975be6](https://github.com/quintype/quintype-node-arrow/commit/9975be622511bd96bc6c0dec821c7ef4a40b5d9e))
|
|
862
|
+
|
|
863
|
+
### [0.3.28](https://github.com/quintype/quintype-node-arrow/compare/v0.3.27...v0.3.28) (2020-07-17)
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
### Bug Fixes
|
|
867
|
+
|
|
868
|
+
* Update styles for collection title and section tag. ([b190305](https://github.com/quintype/quintype-node-arrow/commit/b19030579e23cf0d7f7865c4fff2b763c8100dd1))
|
|
869
|
+
|
|
870
|
+
### [0.3.27](https://github.com/quintype/quintype-node-arrow/compare/v0.3.26...v0.3.27) (2020-07-16)
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
### Bug Fixes
|
|
874
|
+
|
|
875
|
+
* Update styles for section and collection name. ([9975be6](https://github.com/quintype/quintype-node-arrow/commit/9975be622511bd96bc6c0dec821c7ef4a40b5d9e))
|
|
876
|
+
|
|
877
|
+
### [0.3.26](https://github.com/quintype/quintype-node-arrow/compare/v0.3.25...v0.3.26) (2020-07-16)
|
|
878
|
+
|
|
879
|
+
### [0.3.25](https://github.com/quintype/quintype-node-arrow/compare/v0.3.17...v0.3.25) (2020-07-15)
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
### Features
|
|
883
|
+
|
|
884
|
+
* Horizontal story collection. ([c1e5210](https://github.com/quintype/quintype-node-arrow/commit/c1e5210437357c4fb9a778cfd7b26a3391f0acb8))
|
|
885
|
+
* **List comp:** created a list component. ([20388df](https://github.com/quintype/quintype-node-arrow/commit/20388df99cf62cae099187e139877a0f67ed6967))
|
|
886
|
+
* Story Tags. ([d627855](https://github.com/quintype/quintype-node-arrow/commit/d6278557fdea750494f8bbbe9b133d51acfe8eac))
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
### Bug Fixes
|
|
890
|
+
|
|
891
|
+
* **author image:** author image style ([#383](https://github.com/quintype/quintype-node-arrow/issues/383)) ([76fa062](https://github.com/quintype/quintype-node-arrow/commit/76fa062e33ebf269d186ebb51bc9693271a1f7f4))
|
|
892
|
+
* Update supported styles for collection name and section tag. ([707c72e](https://github.com/quintype/quintype-node-arrow/commit/707c72e700bd4b534bdc10671af2e16a9caa49ee))
|
|
893
|
+
* **11 Stories, Collection Filter:** update section border and UI ([#378](https://github.com/quintype/quintype-node-arrow/issues/378)) ([b10caff](https://github.com/quintype/quintype-node-arrow/commit/b10caff28bd0322cbddb22b43e12b0631354706f))
|
|
894
|
+
* **Big fact:** spacing ([#358](https://github.com/quintype/quintype-node-arrow/issues/358)) ([ace0d37](https://github.com/quintype/quintype-node-arrow/commit/ace0d3763fff10765cbadcd9ed620df97d2035af))
|
|
895
|
+
* **big-fact:** update spacing ([#360](https://github.com/quintype/quintype-node-arrow/issues/360)) ([86ed0fc](https://github.com/quintype/quintype-node-arrow/commit/86ed0fc8746173a5010b6f52b82da227e92935b7))
|
|
896
|
+
* **color issue:** Mono color ([#370](https://github.com/quintype/quintype-node-arrow/issues/370)) ([ceb8d8b](https://github.com/quintype/quintype-node-arrow/commit/ceb8d8b0698eaa86727aee76660f2e93805eb5fb))
|
|
897
|
+
|
|
898
|
+
### [0.3.24](https://github.com/quintype/quintype-node-arrow/compare/v0.3.23...v0.3.24) (2020-07-15)
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
### Features
|
|
902
|
+
|
|
903
|
+
* Horizontal story collection. ([c1e5210](https://github.com/quintype/quintype-node-arrow/commit/c1e5210437357c4fb9a778cfd7b26a3391f0acb8))
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
### Bug Fixes
|
|
907
|
+
|
|
908
|
+
* Update supported styles for collection name and section tag. ([707c72e](https://github.com/quintype/quintype-node-arrow/commit/707c72e700bd4b534bdc10671af2e16a9caa49ee))
|
|
909
|
+
|
|
910
|
+
### [0.3.23](https://github.com/quintype/quintype-node-arrow/compare/v0.3.22...v0.3.23) (2020-07-13)
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
### Bug Fixes
|
|
914
|
+
|
|
915
|
+
* **11 Stories, Collection Filter:** update section border and UI ([#378](https://github.com/quintype/quintype-node-arrow/issues/378)) ([b10caff](https://github.com/quintype/quintype-node-arrow/commit/b10caff28bd0322cbddb22b43e12b0631354706f))
|
|
916
|
+
|
|
917
|
+
### [0.3.22](https://github.com/quintype/quintype-node-arrow/compare/v0.3.21...v0.3.22) (2020-07-09)
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
### Features
|
|
921
|
+
|
|
922
|
+
* **List comp:** created a list component. ([20388df](https://github.com/quintype/quintype-node-arrow/commit/20388df99cf62cae099187e139877a0f67ed6967))
|
|
923
|
+
* Story Tags. ([d627855](https://github.com/quintype/quintype-node-arrow/commit/d6278557fdea750494f8bbbe9b133d51acfe8eac))
|
|
924
|
+
|
|
925
|
+
### [0.3.21](https://github.com/quintype/quintype-node-arrow/compare/v0.3.20...v0.3.21) (2020-07-09)
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
### Bug Fixes
|
|
929
|
+
|
|
930
|
+
* **color issue:** Mono color ([#370](https://github.com/quintype/quintype-node-arrow/issues/370)) ([ceb8d8b](https://github.com/quintype/quintype-node-arrow/commit/ceb8d8b0698eaa86727aee76660f2e93805eb5fb))
|
|
931
|
+
|
|
932
|
+
### [0.3.20](https://github.com/quintype/quintype-node-arrow/compare/v0.3.19...v0.3.20) (2020-06-22)
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
### Bug Fixes
|
|
936
|
+
|
|
937
|
+
* **big-fact:** update spacing ([#360](https://github.com/quintype/quintype-node-arrow/issues/360)) ([86ed0fc](https://github.com/quintype/quintype-node-arrow/commit/86ed0fc8746173a5010b6f52b82da227e92935b7))
|
|
938
|
+
|
|
939
|
+
### [0.3.19](https://github.com/quintype/quintype-node-arrow/compare/v0.3.18...v0.3.19) (2020-06-22)
|
|
940
|
+
|
|
941
|
+
|
|
942
|
+
### Bug Fixes
|
|
943
|
+
|
|
944
|
+
* **Big fact:** spacing ([#358](https://github.com/quintype/quintype-node-arrow/issues/358)) ([ace0d37](https://github.com/quintype/quintype-node-arrow/commit/ace0d3763fff10765cbadcd9ed620df97d2035af))
|
|
945
|
+
|
|
946
|
+
### [0.3.18](https://github.com/quintype/quintype-node-arrow/compare/v0.3.17...v0.3.18) (2020-06-19)
|
|
947
|
+
|
|
948
|
+
### [0.3.17](https://github.com/quintype/quintype-node-arrow/compare/v0.3.16...v0.3.17) (2020-06-11)
|
|
949
|
+
|
|
950
|
+
### [0.3.16](https://github.com/quintype/quintype-node-arrow/compare/v0.3.15...v0.3.16) (2020-06-11)
|
|
951
|
+
|
|
952
|
+
### [0.3.15](https://github.com/quintype/quintype-node-arrow/compare/v0.3.13...v0.3.15) (2020-06-11)
|
|
953
|
+
|
|
954
|
+
### [0.3.14](https://github.com/quintype/quintype-node-arrow/compare/v0.3.13...v0.3.14) (2020-06-11)
|
|
955
|
+
|
|
956
|
+
### [0.3.13](https://github.com/quintype/quintype-node-arrow/compare/v0.3.12...v0.3.13) (2020-06-02)
|
|
957
|
+
|
|
958
|
+
|
|
959
|
+
### Bug Fixes
|
|
960
|
+
|
|
961
|
+
* **Summary Element:** border color ([#344](https://github.com/quintype/quintype-node-arrow/issues/344)) ([8974c8f](https://github.com/quintype/quintype-node-arrow/commit/8974c8faa40c2027c764bdee4a01947c496085f6))
|
|
962
|
+
|
|
963
|
+
### [0.3.12](https://github.com/quintype/quintype-node-arrow/compare/v0.3.11...v0.3.12) (2020-06-01)
|
|
964
|
+
|
|
965
|
+
|
|
966
|
+
### Features
|
|
967
|
+
|
|
968
|
+
* **BigFact:** Story element BigFact as an atom. ([6f4e318](https://github.com/quintype/quintype-node-arrow/commit/6f4e3182580ea271439362e7e5e65dd19e289dac))
|
|
969
|
+
* **Image gallery:** implemented image gallery story Element ([#323](https://github.com/quintype/quintype-node-arrow/issues/323)) ([f448abc](https://github.com/quintype/quintype-node-arrow/commit/f448abccbe4a221a8ccc86c81e38f9e97df972ea))
|
|
970
|
+
* **Publish time:** added atom for publish time ([#332](https://github.com/quintype/quintype-node-arrow/issues/332)) ([fde9a2f](https://github.com/quintype/quintype-node-arrow/commit/fde9a2f38e1c794af409de4b66c0602739813fee))
|
|
971
|
+
* **Q&A, Question and Answer element:** add as an atom ([#330](https://github.com/quintype/quintype-node-arrow/issues/330)) ([c311e5c](https://github.com/quintype/quintype-node-arrow/commit/c311e5cd27f94219dc501ced32379debf677c52a))
|
|
972
|
+
* **Video:** Story templates for video. ([a4a72ab](https://github.com/quintype/quintype-node-arrow/commit/a4a72ab1d724c5c8f358468816f24c1d86bfaf01))
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
### Bug Fixes
|
|
976
|
+
|
|
977
|
+
* **Aside Collection:** place in rows ([#334](https://github.com/quintype/quintype-node-arrow/issues/334)) ([8e84fef](https://github.com/quintype/quintype-node-arrow/commit/8e84fef1b5b7553faa54a79ab618277c0b38bd39))
|
|
978
|
+
* **Question & Answer, Text:** override styles ([#342](https://github.com/quintype/quintype-node-arrow/issues/342)) ([e29f791](https://github.com/quintype/quintype-node-arrow/commit/e29f7912896e95f6e0ceeea411d559f7988f42ee))
|
|
979
|
+
* **Story-Elements:** make use of color brand-1 ([#319](https://github.com/quintype/quintype-node-arrow/issues/319)) ([6e81651](https://github.com/quintype/quintype-node-arrow/commit/6e81651fe4d711ce227970f4188702de2b723baa))
|
|
980
|
+
* **Summary:** override styles ([#341](https://github.com/quintype/quintype-node-arrow/issues/341)) ([211b819](https://github.com/quintype/quintype-node-arrow/commit/211b819978d1b05675f5a3c4bfdef59f818c2cd7))
|
|
981
|
+
|
|
982
|
+
### [0.3.11](https://github.com/quintype/quintype-node-arrow/compare/v0.3.8...v0.3.11) (2020-06-01)
|
|
983
|
+
|
|
984
|
+
|
|
985
|
+
- **BigFact:** Story element BigFact as an atom. ([6f4e318](https://github.com/quintype/quintype-node-arrow/commit/6f4e3182580ea271439362e7e5e65dd19e289dac))
|
|
986
|
+
- **Image gallery:** implemented image gallery story Element ([#323](https://github.com/quintype/quintype-node-arrow/issues/323)) ([f448abc](https://github.com/quintype/quintype-node-arrow/commit/f448abccbe4a221a8ccc86c81e38f9e97df972ea))
|
|
987
|
+
- **Publish time:** added atom for publish time ([#332](https://github.com/quintype/quintype-node-arrow/issues/332)) ([fde9a2f](https://github.com/quintype/quintype-node-arrow/commit/fde9a2f38e1c794af409de4b66c0602739813fee))
|
|
988
|
+
- **Q&A, Question and Answer element:** add as an atom ([#330](https://github.com/quintype/quintype-node-arrow/issues/330)) ([c311e5c](https://github.com/quintype/quintype-node-arrow/commit/c311e5cd27f94219dc501ced32379debf677c52a))
|
|
989
|
+
- **Video:** Story templates for video. ([a4a72ab](https://github.com/quintype/quintype-node-arrow/commit/a4a72ab1d724c5c8f358468816f24c1d86bfaf01))
|
|
990
|
+
|
|
991
|
+
### Bug Fixes
|
|
992
|
+
|
|
993
|
+
- **Aside Collection:** place in rows ([#334](https://github.com/quintype/quintype-node-arrow/issues/334)) ([8e84fef](https://github.com/quintype/quintype-node-arrow/commit/8e84fef1b5b7553faa54a79ab618277c0b38bd39))
|
|
994
|
+
- **Question & Answer, Text:** override styles ([#342](https://github.com/quintype/quintype-node-arrow/issues/342)) ([e29f791](https://github.com/quintype/quintype-node-arrow/commit/e29f7912896e95f6e0ceeea411d559f7988f42ee))
|
|
995
|
+
- **Story-Elements:** make use of color brand-1 ([#319](https://github.com/quintype/quintype-node-arrow/issues/319)) ([6e81651](https://github.com/quintype/quintype-node-arrow/commit/6e81651fe4d711ce227970f4188702de2b723baa))
|
|
996
|
+
- **Summary:** override styles ([#341](https://github.com/quintype/quintype-node-arrow/issues/341)) ([211b819](https://github.com/quintype/quintype-node-arrow/commit/211b819978d1b05675f5a3c4bfdef59f818c2cd7))
|
|
997
|
+
|
|
998
|
+
### [0.3.11](https://github.com/quintype/quintype-node-arrow/compare/v0.3.8...v0.3.11) (2020-06-01)
|
|
999
|
+
|
|
1000
|
+
### Bug Fixes
|
|
1001
|
+
|
|
1002
|
+
- **Question & Answer, Text:** override styles ([#342](https://github.com/quintype/quintype-node-arrow/issues/342)) ([e29f791](https://github.com/quintype/quintype-node-arrow/commit/e29f7912896e95f6e0ceeea411d559f7988f42ee))
|
|
1003
|
+
- **Summary:** override styles ([#341](https://github.com/quintype/quintype-node-arrow/issues/341)) ([211b819](https://github.com/quintype/quintype-node-arrow/commit/211b819978d1b05675f5a3c4bfdef59f818c2cd7))
|
|
1004
|
+
|
|
1005
|
+
### [0.3.9](https://github.com/quintype/quintype-node-arrow/compare/v0.3.8...v0.3.9) (2020-06-01)
|
|
1006
|
+
|
|
1007
|
+
### Bug Fixes
|
|
1008
|
+
|
|
1009
|
+
- **Question & Answer, Text:** override styles ([#342](https://github.com/quintype/quintype-node-arrow/issues/342)) ([e29f791](https://github.com/quintype/quintype-node-arrow/commit/e29f7912896e95f6e0ceeea411d559f7988f42ee))
|
|
1010
|
+
- **Summary:** override styles ([#341](https://github.com/quintype/quintype-node-arrow/issues/341)) ([211b819](https://github.com/quintype/quintype-node-arrow/commit/211b819978d1b05675f5a3c4bfdef59f818c2cd7))
|
|
1011
|
+
|
|
1012
|
+
### [0.3.8](https://github.com/quintype/quintype-node-arrow/compare/v0.3.7...v0.3.8) (2020-05-28)
|
|
1013
|
+
|
|
1014
|
+
### [0.3.7](https://github.com/quintype/quintype-node-arrow/compare/v0.3.6...v0.3.7) (2020-05-28)
|
|
1015
|
+
|
|
1016
|
+
### Bug Fixes
|
|
1017
|
+
|
|
1018
|
+
- **Aside Collection:** place in rows ([#334](https://github.com/quintype/quintype-node-arrow/issues/334)) ([8e84fef](https://github.com/quintype/quintype-node-arrow/commit/8e84fef1b5b7553faa54a79ab618277c0b38bd39))
|
|
1019
|
+
|
|
1020
|
+
### [0.3.6](https://github.com/quintype/quintype-node-arrow/compare/v0.3.5...v0.3.6) (2020-05-28)
|
|
1021
|
+
|
|
1022
|
+
### Features
|
|
1023
|
+
|
|
1024
|
+
- **BigFact:** Story element BigFact as an atom. ([6f4e318](https://github.com/quintype/quintype-node-arrow/commit/6f4e3182580ea271439362e7e5e65dd19e289dac))
|
|
1025
|
+
- **Image gallery:** implemented image gallery story Element ([#323](https://github.com/quintype/quintype-node-arrow/issues/323)) ([f448abc](https://github.com/quintype/quintype-node-arrow/commit/f448abccbe4a221a8ccc86c81e38f9e97df972ea))
|
|
1026
|
+
- **Publish time:** added atom for publish time ([#332](https://github.com/quintype/quintype-node-arrow/issues/332)) ([fde9a2f](https://github.com/quintype/quintype-node-arrow/commit/fde9a2f38e1c794af409de4b66c0602739813fee))
|
|
1027
|
+
- **Q&A, Question and Answer element:** add as an atom ([#330](https://github.com/quintype/quintype-node-arrow/issues/330)) ([c311e5c](https://github.com/quintype/quintype-node-arrow/commit/c311e5cd27f94219dc501ced32379debf677c52a))
|
|
1028
|
+
- **Video:** Story templates for video. ([a4a72ab](https://github.com/quintype/quintype-node-arrow/commit/a4a72ab1d724c5c8f358468816f24c1d86bfaf01))
|
|
1029
|
+
|
|
1030
|
+
### [0.3.5](https://github.com/quintype/quintype-node-arrow/compare/v0.3.4...v0.3.5) (2020-05-18)
|
|
1031
|
+
|
|
1032
|
+
### Bug Fixes
|
|
1033
|
+
|
|
1034
|
+
- **Story-Elements:** make use of color brand-1 ([#319](https://github.com/quintype/quintype-node-arrow/issues/319)) ([6e81651](https://github.com/quintype/quintype-node-arrow/commit/6e81651fe4d711ce227970f4188702de2b723baa))
|
|
1035
|
+
|
|
1036
|
+
### [0.3.4](https://github.com/quintype/quintype-node-arrow/compare/v0.3.3...v0.3.4) (2020-05-15)
|
|
1037
|
+
|
|
1038
|
+
### [0.3.3](https://github.com/quintype/quintype-node-arrow/compare/v0.3.2...v0.3.3) (2020-05-15)
|
|
1039
|
+
|
|
1040
|
+
### Features
|
|
1041
|
+
|
|
1042
|
+
- **Summary:** implement Summary element ([#306](https://github.com/quintype/quintype-node-arrow/issues/306)) ([db1fa70](https://github.com/quintype/quintype-node-arrow/commit/db1fa70e0275e403231893c60ef8c6136237dd05))
|
|
1043
|
+
|
|
1044
|
+
### [0.3.2](https://github.com/quintype/quintype-node-arrow/compare/v0.2.1...v0.3.2) (2020-05-15)
|
|
1045
|
+
|
|
1046
|
+
### Features
|
|
1047
|
+
|
|
1048
|
+
- **Also read element:** Add as an atom ([#246](https://github.com/quintype/quintype-node-arrow/issues/246)) ([0acf73d](https://github.com/quintype/quintype-node-arrow/commit/0acf73d9c2396f2595040e2fe7f995ad5f4d53c0))
|
|
1049
|
+
- **AuthorImage:** Support multiple author templates. ([5052192](https://github.com/quintype/quintype-node-arrow/commit/50521923f70ed41ee5640ab87c0137236618aa64))
|
|
1050
|
+
- **Block quote element:** Add as an atom ([#286](https://github.com/quintype/quintype-node-arrow/issues/286)) ([b23e4ca](https://github.com/quintype/quintype-node-arrow/commit/b23e4caf4e6e77b782896e2206a9453fe6302413))
|
|
1051
|
+
- **Video:** Video & StoryElement as atoms. ([816adb2](https://github.com/quintype/quintype-node-arrow/commit/816adb2f93dc0273dbc5ce4f06a72c4e5e188c51))
|
|
1052
|
+
|
|
1053
|
+
### Bug Fixes
|
|
1054
|
+
|
|
1055
|
+
- npm publish was failing. ([#305](https://github.com/quintype/quintype-node-arrow/issues/305)) ([1030196](https://github.com/quintype/quintype-node-arrow/commit/10301969ab8bdd3fafc20b749357898d5316447c))
|
|
1056
|
+
|
|
1057
|
+
### [0.3.1](https://github.com/quintype/quintype-node-arrow/compare/v0.2.4...v0.3.1) (2020-05-13)
|
|
1058
|
+
|
|
1059
|
+
### Bug Fixes
|
|
1060
|
+
|
|
1061
|
+
- npm publish was failing. ([#305](https://github.com/quintype/quintype-node-arrow/issues/305)) ([1030196](https://github.com/quintype/quintype-node-arrow/commit/10301969ab8bdd3fafc20b749357898d5316447c))
|
|
1062
|
+
|
|
1063
|
+
### [0.2.4](https://github.com/quintype/quintype-node-arrow/compare/v0.2.3...v0.2.4) (2020-05-11)
|
|
1064
|
+
|
|
1065
|
+
### [0.2.2](https://github.com/quintype/quintype-node-arrow/compare/v0.2.1...v0.2.2) (2020-05-11)
|
|
1066
|
+
|
|
1067
|
+
### Features
|
|
1068
|
+
|
|
1069
|
+
- **Also read element:** Add as an atom ([#246](https://github.com/quintype/quintype-node-arrow/issues/246)) ([0acf73d](https://github.com/quintype/quintype-node-arrow/commit/0acf73d9c2396f2595040e2fe7f995ad5f4d53c0))
|
|
1070
|
+
- **AuthorImage:** Support multiple author templates. ([5052192](https://github.com/quintype/quintype-node-arrow/commit/50521923f70ed41ee5640ab87c0137236618aa64))
|
|
1071
|
+
- **Block quote element:** Add as an atom ([#286](https://github.com/quintype/quintype-node-arrow/issues/286)) ([b23e4ca](https://github.com/quintype/quintype-node-arrow/commit/b23e4caf4e6e77b782896e2206a9453fe6302413))
|
|
1072
|
+
|
|
1073
|
+
# <<<<<<< HEAD
|
|
1074
|
+
|
|
1075
|
+
### [0.2.2](https://github.com/quintype/quintype-node-arrow/compare/v0.2.1...v0.2.2) (2020-05-11)
|
|
1076
|
+
|
|
1077
|
+
> > > > > > > 8af8c6ef7866888762b95760574f871a2e43d1c8
|
|
1078
|
+
|
|
1079
|
+
### [0.2.1](https://github.com/quintype/quintype-node-arrow/compare/v0.2.0...v0.2.1) (2020-05-08)
|
|
1080
|
+
|
|
1081
|
+
### [0.1.30](https://github.com/quintype/quintype-node-arrow/compare/v0.1.33...v0.1.30) (2020-05-08)
|
|
1082
|
+
|
|
1083
|
+
### Features
|
|
1084
|
+
|
|
1085
|
+
- **Social share:** social share component ([#298](https://github.com/quintype/quintype-node-arrow/issues/298)) ([0d8ff97](https://github.com/quintype/quintype-node-arrow/commit/0d8ff97286ccf027791fe7edb49d3714b2c3e96e))
|
|
1086
|
+
|
|
1087
|
+
### [0.1.33](https://github.com/quintype/quintype-node-arrow/compare/v0.1.32...v0.1.33) (2020-05-07)
|
|
1088
|
+
|
|
1089
|
+
### [0.1.30](https://github.com/quintype/quintype-node-arrow/compare/v0.1.31...v0.1.30) (2020-05-07)
|
|
1090
|
+
|
|
1091
|
+
### Features
|
|
1092
|
+
|
|
1093
|
+
- **Blurb Element:** Add as an atom ([#249](https://github.com/quintype/quintype-node-arrow/issues/249)) ([94a0d0f](https://github.com/quintype/quintype-node-arrow/commit/94a0d0f8267b81caf3b4c37c2f1e5c860a1c724c))
|
|
1094
|
+
- **Quote Element:** Add as an atom ([#235](https://github.com/quintype/quintype-node-arrow/issues/235)) ([fbc7e92](https://github.com/quintype/quintype-node-arrow/commit/fbc7e92aa1897078360f241c787b7a873d898523))
|
|
1095
|
+
|
|
1096
|
+
### [0.1.29](https://github.com/quintype/quintype-node-arrow/compare/v0.1.31...v0.1.29) (2020-05-07)
|
|
1097
|
+
|
|
1098
|
+
### Features
|
|
1099
|
+
|
|
1100
|
+
- **Blurb Element:** Add as an atom ([#249](https://github.com/quintype/quintype-node-arrow/issues/249)) ([94a0d0f](https://github.com/quintype/quintype-node-arrow/commit/94a0d0f8267b81caf3b4c37c2f1e5c860a1c724c))
|
|
1101
|
+
|
|
1102
|
+
### [0.1.31](https://github.com/quintype/quintype-node-arrow/compare/v0.1.31-text-element-updates.0...v0.1.31) (2020-04-22)
|
|
1103
|
+
|
|
1104
|
+
### [0.1.30](https://github.com/quintype/quintype-node-arrow/compare/v0.1.29...v0.1.30) (2020-04-21)
|
|
1105
|
+
|
|
1106
|
+
### [0.1.29](https://github.com/quintype/quintype-node-arrow/compare/v0.1.28...v0.1.29) (2020-04-21)
|
|
1107
|
+
|
|
1108
|
+
### [0.1.28](https://github.com/quintype/quintype-node-arrow/compare/v0.1.22...v0.1.28) (2020-04-09)
|
|
1109
|
+
|
|
1110
|
+
### Features
|
|
1111
|
+
|
|
1112
|
+
- SectionTag: Apply text color based on the effective bg ([189bb40](https://github.com/quintype/quintype-node-arrow/commit/189bb40b9006b41425150589aa79bea260250b4d))
|
|
1113
|
+
|
|
1114
|
+
### Bug Fixes
|
|
1115
|
+
|
|
1116
|
+
- knob not coming ([8ee8c51](https://github.com/quintype/quintype-node-arrow/commit/8ee8c51f115d76adb810da5225169e04ad4fe9fa))
|
|
1117
|
+
- SectionTag: Get bg color from row context ([b802229](https://github.com/quintype/quintype-node-arrow/commit/b8022297b39664ee404c76dff4bd0023d70cbe6e))
|
|
1118
|
+
- **3 col 6 story:** story array ([#251](https://github.com/quintype/quintype-node-arrow/issues/251)) ([92727a0](https://github.com/quintype/quintype-node-arrow/commit/92727a027651607f231dc391c5b4181a453fafe0))
|
|
1119
|
+
|
|
1120
|
+
### [0.1.27](https://github.com/quintype/quintype-node-arrow/compare/v0.1.27-sectionTagBg.0...v0.1.27) (2020-04-03)
|
|
1121
|
+
|
|
1122
|
+
### [0.1.26](https://github.com/quintype/quintype-node-arrow/compare/v0.1.25...v0.1.26) (2020-04-02)
|
|
1123
|
+
|
|
1124
|
+
### Features
|
|
1125
|
+
|
|
1126
|
+
- SectionTag: Apply text color based on the effective bg ([189bb40](https://github.com/quintype/quintype-node-arrow/commit/189bb40b9006b41425150589aa79bea260250b4d))
|
|
1127
|
+
|
|
1128
|
+
### Bug Fixes
|
|
1129
|
+
|
|
1130
|
+
- knob not coming ([8ee8c51](https://github.com/quintype/quintype-node-arrow/commit/8ee8c51f115d76adb810da5225169e04ad4fe9fa))
|
|
1131
|
+
|
|
1132
|
+
### [0.1.25](https://github.com/quintype/quintype-node-arrow/compare/v0.1.24...v0.1.25) (2020-03-20)
|
|
1133
|
+
|
|
1134
|
+
### [0.1.24](https://github.com/quintype/quintype-node-arrow/compare/v0.1.23...v0.1.24) (2020-03-20)
|
|
1135
|
+
|
|
1136
|
+
### [0.1.23](https://github.com/quintype/quintype-node-arrow/compare/v0.1.22...v0.1.23) (2020-03-03)
|
|
1137
|
+
|
|
1138
|
+
### [0.1.22](https://github.com/quintype/quintype-node-arrow/compare/v0.1.21...v0.1.22) (2020-02-25)
|
|
1139
|
+
|
|
1140
|
+
### Features
|
|
1141
|
+
|
|
1142
|
+
- **four-col-12-stories:** Add other news content position ([#205](https://github.com/quintype/quintype-node-arrow/issues/205)) ([61c90ac](https://github.com/quintype/quintype-node-arrow/commit/61c90ace8ef98b36b6b1d010bf47509449d3e9bc))
|
|
1143
|
+
|
|
1144
|
+
### [0.1.21](https://github.com/quintype/quintype-node-arrow/compare/v0.1.20...v0.1.21) (2020-02-25)
|
|
1145
|
+
|
|
1146
|
+
### Bug Fixes
|
|
1147
|
+
|
|
1148
|
+
- **11 stories:** few design corrections ([#208](https://github.com/quintype/quintype-node-arrow/issues/208)) ([e6def48](https://github.com/quintype/quintype-node-arrow/commit/e6def48e789092acd2a021e57735a9072f106985))
|
|
1149
|
+
|
|
1150
|
+
### [0.1.20](https://github.com/quintype/quintype-node-arrow/compare/v0.1.19...v0.1.20) (2020-02-21)
|
|
1151
|
+
|
|
1152
|
+
### [0.1.19](https://github.com/quintype/quintype-node-arrow/compare/v0.1.18...v0.1.19) (2020-02-19)
|
|
1153
|
+
|
|
1154
|
+
### [0.1.18](https://github.com/quintype/quintype-node-arrow/compare/v0.1.17...v0.1.18) (2020-02-18)
|
|
1155
|
+
|
|
1156
|
+
### Bug Fixes
|
|
1157
|
+
|
|
1158
|
+
- **url:** update url slug ([#201](https://github.com/quintype/quintype-node-arrow/issues/201)) ([10f98d3](https://github.com/quintype/quintype-node-arrow/commit/10f98d33984a71affed54a94254c2f4090407391))
|
|
1159
|
+
|
|
1160
|
+
### [0.1.17](https://github.com/quintype/quintype-node-arrow/compare/v0.1.16...v0.1.17) (2020-02-17)
|
|
1161
|
+
|
|
1162
|
+
### [0.1.16](https://github.com/quintype/quintype-node-arrow/compare/v0.1.15...v0.1.16) (2020-02-14)
|
|
1163
|
+
|
|
1164
|
+
### [0.1.15](https://github.com/quintype/quintype-node-arrow/compare/v0.1.14...v0.1.15) (2020-02-13)
|
|
1165
|
+
|
|
1166
|
+
### Features
|
|
1167
|
+
|
|
1168
|
+
- Add Four Column twelve stories ([#171](https://github.com/quintype/quintype-node-arrow/issues/171)) ([99e71e0](https://github.com/quintype/quintype-node-arrow/commit/99e71e07ebf1b6dad449885be51eb4e67ca8161d))
|
|
1169
|
+
|
|
1170
|
+
### [0.1.14](https://github.com/quintype/quintype-node-arrow/compare/v0.1.13...v0.1.14) (2020-02-12)
|
|
1171
|
+
|
|
1172
|
+
### Bug Fixes
|
|
1173
|
+
|
|
1174
|
+
- **slider Navigation styles:** update slider navigation styles ([#178](https://github.com/quintype/quintype-node-arrow/issues/178)) ([8f99f86](https://github.com/quintype/quintype-node-arrow/commit/8f99f86efef9445fa71b9db7ae32d72dbb4fbeab))
|
|
1175
|
+
|
|
1176
|
+
### [0.1.13](https://github.com/quintype/quintype-node-arrow/compare/v0.1.10...v0.1.13) (2020-02-12)
|
|
1177
|
+
|
|
1178
|
+
### Features
|
|
1179
|
+
|
|
1180
|
+
- **Collection filter collection data:** data ([#173](https://github.com/quintype/quintype-node-arrow/issues/173)) ([2610f94](https://github.com/quintype/quintype-node-arrow/commit/2610f94a58673edc0031fa3d2a5705aeaa3f2f7f))
|
|
1181
|
+
- **Sub directory:** fix for ahead ([#184](https://github.com/quintype/quintype-node-arrow/issues/184)) ([e07a619](https://github.com/quintype/quintype-node-arrow/commit/e07a6192235ee7fd1f309851ec1d18de3d134448))
|
|
1182
|
+
|
|
1183
|
+
### Bug Fixes
|
|
1184
|
+
|
|
1185
|
+
- use section-url instead of section-slug ([d8b9964](https://github.com/quintype/quintype-node-arrow/commit/d8b9964f06b5dd5444836bd549c6aac00e076358))
|
|
1186
|
+
|
|
1187
|
+
### [0.1.12](https://github.com/quintype/quintype-node-arrow/compare/v0.1.11-use-section-url.1...v0.1.12) (2020-02-06)
|
|
1188
|
+
|
|
1189
|
+
### Features
|
|
1190
|
+
|
|
1191
|
+
- **Collection filter collection data:** data ([#173](https://github.com/quintype/quintype-node-arrow/issues/173)) ([2610f94](https://github.com/quintype/quintype-node-arrow/commit/2610f94a58673edc0031fa3d2a5705aeaa3f2f7f))
|
|
1192
|
+
|
|
1193
|
+
### [0.1.11](https://github.com/quintype/quintype-node-arrow/compare/v0.1.11-use-section-url.1...v0.1.11) (2020-02-06)
|
|
1194
|
+
|
|
1195
|
+
### Features
|
|
1196
|
+
|
|
1197
|
+
- **Collection filter collection data:** data ([#173](https://github.com/quintype/quintype-node-arrow/issues/173)) ([2610f94](https://github.com/quintype/quintype-node-arrow/commit/2610f94a58673edc0031fa3d2a5705aeaa3f2f7f))
|
|
1198
|
+
|
|
1199
|
+
### [0.1.10](https://github.com/quintype/quintype-node-arrow/compare/v0.1.9...v0.1.10) (2020-02-03)
|
|
1200
|
+
|
|
1201
|
+
### [0.1.9](https://github.com/quintype/quintype-node-arrow/compare/v0.1.8...v0.1.9) (2020-02-03)
|
|
1202
|
+
|
|
1203
|
+
### Bug Fixes
|
|
1204
|
+
|
|
1205
|
+
- Ad slot height ([3d3620b](https://github.com/quintype/quintype-node-arrow/commit/3d3620bc6702d83075986eec631e3c11e63ee955))
|
|
1206
|
+
|
|
1207
|
+
### [0.1.8](https://github.com/quintype/quintype-node-arrow/compare/v0.1.7...v0.1.8) (2020-01-24)
|
|
1208
|
+
|
|
1209
|
+
### Features
|
|
1210
|
+
|
|
1211
|
+
- **support collection template :** support collection template with full border bottom ([#158](https://github.com/quintype/quintype-node-arrow/issues/158)) ([9831326](https://github.com/quintype/quintype-node-arrow/commit/983132600dd73b700d4e2460d5596ef255f1b947))
|
|
1212
|
+
|
|
1213
|
+
### [0.1.7](https://github.com/quintype/quintype-node-arrow/compare/v0.1.6...v0.1.7) (2020-01-23)
|
|
1214
|
+
|
|
1215
|
+
### Features
|
|
1216
|
+
|
|
1217
|
+
- **fallback hero image:** added support for fallback-image when hero image is not present ([#136](https://github.com/quintype/quintype-node-arrow/issues/136)) ([70c894c](https://github.com/quintype/quintype-node-arrow/commit/70c894c5704c1a0d11fdc4730d6d67c20a0a7be9))
|
|
1218
|
+
- **ThreeColFourteenStory:** New Row Component ([#125](https://github.com/quintype/quintype-node-arrow/issues/125)) ([125653a](https://github.com/quintype/quintype-node-arrow/commit/125653a4f45136900f5b69f99cd9e5fcebea34a9))
|
|
1219
|
+
|
|
1220
|
+
### Bug Fixes
|
|
1221
|
+
|
|
1222
|
+
- **slot:** update three col six story slot render ([#138](https://github.com/quintype/quintype-node-arrow/issues/138)) ([b654c70](https://github.com/quintype/quintype-node-arrow/commit/b654c70030ee339140cb039e1249bc23d943bb77))
|
|
1223
|
+
- **Timestamp and style:** two col four story style and time stamp ([#160](https://github.com/quintype/quintype-node-arrow/issues/160)) ([a8583c6](https://github.com/quintype/quintype-node-arrow/commit/a8583c63ab920bf7f7d5d3ac869eae8cc8244e40))
|
|
1224
|
+
- **Typography:** font size update for few components ([#147](https://github.com/quintype/quintype-node-arrow/issues/147)) ([a40215e](https://github.com/quintype/quintype-node-arrow/commit/a40215e6bfe2b3e9fcf5e39f24b3ced7ded39ec3))
|
|
1225
|
+
|
|
1226
|
+
### [0.1.6](https://github.com/quintype/quintype-node-arrow/compare/v0.1.5...v0.1.6) (2020-01-02)
|
|
1227
|
+
|
|
1228
|
+
### Bug Fixes
|
|
1229
|
+
|
|
1230
|
+
- **fallback:** story.id call fail fix ([#120](https://github.com/quintype/quintype-node-arrow/issues/120)) ([6431350](https://github.com/quintype/quintype-node-arrow/commit/6431350a6f404c91ffd09be267744107620992ea))
|
|
1231
|
+
|
|
1232
|
+
### [0.1.5](https://github.com/quintype/quintype-node-arrow/compare/v0.1.4...v0.1.5) (2020-01-02)
|
|
1233
|
+
|
|
1234
|
+
### Bug Fixes
|
|
1235
|
+
|
|
1236
|
+
- **row:** One col story list remove fallback value ([#111](https://github.com/quintype/quintype-node-arrow/issues/111)) ([907005b](https://github.com/quintype/quintype-node-arrow/commit/907005bb7936642049ee377e2d52a9d8ee7ed660))
|
|
1237
|
+
- **spacing:** Update margin for rows ([#116](https://github.com/quintype/quintype-node-arrow/issues/116)) ([f80e359](https://github.com/quintype/quintype-node-arrow/commit/f80e359f3b7bd0c43f070e3b310303ed32bdad28))
|
|
1238
|
+
- Console errors & warnings ([#114](https://github.com/quintype/quintype-node-arrow/issues/114)) ([cd5d20e](https://github.com/quintype/quintype-node-arrow/commit/cd5d20e18a2aec80dad5d865a9aebd4e18855c41))
|
|
1239
|
+
|
|
1240
|
+
### [0.1.4](https://github.com/quintype/quintype-node-arrow/compare/v0.1.3...v0.1.4) (2019-12-27)
|
|
1241
|
+
|
|
1242
|
+
### Bug Fixes
|
|
1243
|
+
|
|
1244
|
+
- **Separator:** 2Col4Story's misaligned separator ([9bd2565](https://github.com/quintype/quintype-node-arrow/commit/9bd2565f053ead681da83badbaa71156b8d11b45))
|
|
1245
|
+
- Component fixes ([#107](https://github.com/quintype/quintype-node-arrow/issues/107)) ([dff52c8](https://github.com/quintype/quintype-node-arrow/commit/dff52c88adbb7c0adfb3643eb891c3b5d345aafd))
|
|
1246
|
+
- FourColGrid storySlot fix ([38baebf](https://github.com/quintype/quintype-node-arrow/commit/38baebff9d2c9ceeaab2aee42d6285e5ef05c7e9))
|
|
1247
|
+
|
|
1248
|
+
### [0.1.3](https://github.com/quintype/quintype-node-arrow/compare/v0.1.2...v0.1.3) (2019-12-13)
|
|
1249
|
+
|
|
1250
|
+
### [0.1.2](https://github.com/quintype/quintype-node-arrow/compare/v0.0.16...v0.1.2) (2019-12-12)
|
|
1251
|
+
|
|
1252
|
+
### Features
|
|
1253
|
+
|
|
1254
|
+
- **Section Tag:** Adding section tag thru context🏷 ([#92](https://github.com/quintype/quintype-node-arrow/issues/92)) ([21f500f](https://github.com/quintype/quintype-node-arrow/commit/21f500fed4d9929b85c78fefd538caf896022e4a))
|
|
1255
|
+
|
|
1256
|
+
### Bug Fixes
|
|
1257
|
+
|
|
1258
|
+
- Accidental lodash/get imports altered ([c496673](https://github.com/quintype/quintype-node-arrow/commit/c4966731ca6a19352e035d83a67858fd477728d9))
|
|
1259
|
+
|
|
1260
|
+
### [0.1.1](https://github.com/quintype/quintype-node-arrow/compare/v0.0.16...v0.1.1) (2019-12-11)
|
|
1261
|
+
|
|
1262
|
+
### Features
|
|
1263
|
+
|
|
1264
|
+
- **Section Tag:** Adding section tag thru context🏷 ([#92](https://github.com/quintype/quintype-node-arrow/issues/92)) ([21f500f](https://github.com/quintype/quintype-node-arrow/commit/21f500fed4d9929b85c78fefd538caf896022e4a))
|
|
1265
|
+
|
|
1266
|
+
### Bug Fixes
|
|
1267
|
+
|
|
1268
|
+
- Accidental lodash/get imports altered ([c496673](https://github.com/quintype/quintype-node-arrow/commit/c4966731ca6a19352e035d83a67858fd477728d9))
|
|
1269
|
+
|
|
1270
|
+
### [0.0.16](https://github.com/quintype/quintype-node-arrow/compare/v0.0.15...v0.0.16) (2019-12-09)
|
|
1271
|
+
|
|
1272
|
+
### [0.0.15](https://github.com/quintype/quintype-node-arrow/compare/v0.0.12...v0.0.15) (2019-12-09)
|
|
1273
|
+
|
|
1274
|
+
### Features
|
|
1275
|
+
|
|
1276
|
+
- Export Atoms ([#89](https://github.com/quintype/quintype-node-arrow/issues/89)) ([3a6a478](https://github.com/quintype/quintype-node-arrow/commit/3a6a478aa87bf63cfc57ccfc3d7d9a9a827eaef4))
|
|
1277
|
+
|
|
1278
|
+
### Bug Fixes
|
|
1279
|
+
|
|
1280
|
+
- Update package-lock ([e05f3d6](https://github.com/quintype/quintype-node-arrow/commit/e05f3d66bdfcd0ec6ae26029d97bab119d3c79f9))
|
|
1281
|
+
|
|
1282
|
+
### [0.0.14](https://github.com/quintype/quintype-node-arrow/compare/v0.0.13...v0.0.14) (2019-12-06)
|
|
1283
|
+
|
|
1284
|
+
### Features
|
|
1285
|
+
|
|
1286
|
+
- Export Atoms ([#89](https://github.com/quintype/quintype-node-arrow/issues/89)) ([3a6a478](https://github.com/quintype/quintype-node-arrow/commit/3a6a478aa87bf63cfc57ccfc3d7d9a9a827eaef4))
|
|
1287
|
+
|
|
1288
|
+
### Bug Fixes
|
|
1289
|
+
|
|
1290
|
+
- Update package-lock ([e05f3d6](https://github.com/quintype/quintype-node-arrow/commit/e05f3d66bdfcd0ec6ae26029d97bab119d3c79f9))
|
|
1291
|
+
|
|
1292
|
+
### [0.0.13](https://github.com/quintype/quintype-node-arrow/compare/v0.0.11...v0.0.13) (2019-11-28)
|
|
1293
|
+
|
|
1294
|
+
### [0.0.12](https://github.com/quintype/quintype-node-arrow/compare/v0.0.10...v0.0.12) (2019-11-28)
|
|
1295
|
+
|
|
1296
|
+
### Features
|
|
1297
|
+
|
|
1298
|
+
- **Font typography:** Mapped headline font based design ([#79](https://github.com/quintype/quintype-node-arrow/issues/79)) ([c7088fa](https://github.com/quintype/quintype-node-arrow/commit/c7088fa44a4473caedcb4dc9ef493f2e616dbdbb))
|
|
1299
|
+
- **Font typography:** Mapped headline font based design ([#79](https://github.com/quintype/quintype-node-arrow/issues/79)) ([c7088fa](https://github.com/quintype/quintype-node-arrow/commit/c7088fa44a4473caedcb4dc9ef493f2e616dbdbb))
|
|
1300
|
+
|
|
1301
|
+
### [0.0.11](https://github.com/quintype/quintype-node-arrow/compare/v0.0.10...v0.0.11) (2019-11-28)
|
|
1302
|
+
|
|
1303
|
+
### Features
|
|
1304
|
+
|
|
1305
|
+
- **Font typography:** Mapped headline font based design ([#79](https://github.com/quintype/quintype-node-arrow/issues/79)) ([c7088fa](https://github.com/quintype/quintype-node-arrow/commit/c7088fa44a4473caedcb4dc9ef493f2e616dbdbb))
|
|
1306
|
+
|
|
1307
|
+
### [0.0.10](https://github.com/quintype/quintype-node-arrow/compare/v0.0.9...v0.0.10) (2019-11-20)
|
|
1308
|
+
|
|
1309
|
+
### [0.0.9](https://github.com/quintype/quintype-node-arrow/compare/v0.0.8...v0.0.9) (2019-11-20)
|
|
1310
|
+
|
|
1311
|
+
### Features
|
|
1312
|
+
|
|
1313
|
+
- **11 story:** support child collection ([#72](https://github.com/quintype/quintype-node-arrow/issues/72)) ([5ac701a](https://github.com/quintype/quintype-node-arrow/commit/5ac701a6a9b7bb56b0d60a2ff1f4a24fb4624b63))
|
|
1314
|
+
- **full screen slider:** added glide ([2569909](https://github.com/quintype/quintype-node-arrow/commit/2569909e1e22e85a4917aadd9ad63e5a87967e59))
|
|
1315
|
+
- **Glide:** glide implementation with half screen slider ([#47](https://github.com/quintype/quintype-node-arrow/issues/47)) ([2b7240e](https://github.com/quintype/quintype-node-arrow/commit/2b7240e7185393c24fcc59114f2352daf6cc7ac0))
|
|
1316
|
+
- **row:** configure context ([7dc80e7](https://github.com/quintype/quintype-node-arrow/commit/7dc80e766232f792bb07d512cbaa90cb5db801b2))
|
|
1317
|
+
- **row:** full screen classes ([#66](https://github.com/quintype/quintype-node-arrow/issues/66)) ([bcbbdf7](https://github.com/quintype/quintype-node-arrow/commit/bcbbdf7eadda662b06a5e67fd8e581295b35ce85))
|
|
1318
|
+
- **row:** full screen slider ([92ebb9b](https://github.com/quintype/quintype-node-arrow/commit/92ebb9b22eb1ac1094293fcf7280101da7224e76))
|
|
1319
|
+
- **row:** Full screen slider ([#68](https://github.com/quintype/quintype-node-arrow/issues/68)) ([43258f2](https://github.com/quintype/quintype-node-arrow/commit/43258f2a9ea66e8258e81ca28b16bb054fbb990e))
|
|
1320
|
+
- **Row-Slider:** Four Story Slider ([#58](https://github.com/quintype/quintype-node-arrow/issues/58)) ([cccd95d](https://github.com/quintype/quintype-node-arrow/commit/cccd95dee299adc64ccf91178bd9f7aa0f2840e9))
|
|
1321
|
+
- **typography:** Added typography according to design ([#71](https://github.com/quintype/quintype-node-arrow/issues/71)) ([47651a1](https://github.com/quintype/quintype-node-arrow/commit/47651a150b7d4d14017232b1bf2328675566396b))
|
|
1322
|
+
- Add lint error when console.log is found ([981966e](https://github.com/quintype/quintype-node-arrow/commit/981966e7699d45c279254643f59dfabf9bccb23f))
|
|
1323
|
+
|
|
1324
|
+
### Bug Fixes
|
|
1325
|
+
|
|
1326
|
+
- **Glide:** arrow ([#74](https://github.com/quintype/quintype-node-arrow/issues/74)) ([2dde46b](https://github.com/quintype/quintype-node-arrow/commit/2dde46bf9a06c4675b5f4fcae3bfa1bb17392cb4))
|
|
1327
|
+
- **Rows:** Generic Issues ([#70](https://github.com/quintype/quintype-node-arrow/issues/70)) ([3a3a413](https://github.com/quintype/quintype-node-arrow/commit/3a3a4138566d88d327022ae95b9eeb673e0c70ec))
|
|
1328
|
+
- **Rows bug:** bugs ([#69](https://github.com/quintype/quintype-node-arrow/issues/69)) ([7df38bb](https://github.com/quintype/quintype-node-arrow/commit/7df38bbf9c378fceecb942f07b3dc89ad0b0a3d7))
|
|
1329
|
+
|
|
1330
|
+
### [0.0.8](https://github.com/quintype/quintype-node-arrow/compare/v0.0.7...v0.0.8) (2019-11-13)
|
|
1331
|
+
|
|
1332
|
+
### Features
|
|
1333
|
+
|
|
1334
|
+
- **headline:** text color ([4206947](https://github.com/quintype/quintype-node-arrow/commit/4206947085494bd2855380a6606fa3579ce26f90))
|
|
1335
|
+
|
|
1336
|
+
### [0.0.6](https://github.com/quintype/quintype-node-arrow/compare/v0.0.7...v0.0.6) (2019-11-08)
|
|
1337
|
+
|
|
1338
|
+
### [0.0.5](https://github.com/quintype/quintype-node-arrow/compare/v0.0.7...v0.0.5) (2019-11-08)
|
|
1339
|
+
|
|
1340
|
+
### [0.0.4](https://github.com/quintype/quintype-node-arrow/compare/v0.0.3...v0.0.4) (2019-10-28)
|
|
1341
|
+
|
|
1342
|
+
### [0.0.3](https://github.com/quintype/quintype-node-arrow/compare/v0.0.2...v0.0.3) (2019-10-28)
|
|
1343
|
+
|
|
1344
|
+
### 0.0.2 (2019-10-28)
|
|
1345
|
+
|
|
1346
|
+
### Features
|
|
1347
|
+
|
|
1348
|
+
- **atoms:** support multiple designs of atoms ([#1](https://github.com/quintype/quintype-node-arrow/issues/1)) ([eb69bfb](https://github.com/quintype/quintype-node-arrow/commit/eb69bfb0cf2ffdbe945423014efec3b5e53e395c))
|
|
1349
|
+
- **Collection name:** refactor component and support load more ([#10](https://github.com/quintype/quintype-node-arrow/issues/10)) ([549a778](https://github.com/quintype/quintype-node-arrow/commit/549a778ac9b9cb0ef72ba4a7c1816d2e04b456c3))
|
|
1350
|
+
- Added a common context for Row 🚣♂️ ([#12](https://github.com/quintype/quintype-node-arrow/issues/12)) ([a8c0330](https://github.com/quintype/quintype-node-arrow/commit/a8c03303fbd0d45420e89a747638207d7bd515e5))
|
|
1351
|
+
- Adding storybook and lint configs 🌈 ([dab740e](https://github.com/quintype/quintype-node-arrow/commit/dab740eac6d36461289013c960799abb5b332152))
|
|
1352
|
+
- **Divider:** between author and time ([#19](https://github.com/quintype/quintype-node-arrow/issues/19)) ([cbb2f43](https://github.com/quintype/quintype-node-arrow/commit/cbb2f4364a0b3b0f7dcffcf91b665b94d6759c20))
|
|
1353
|
+
- **row:** two col four stories ([#17](https://github.com/quintype/quintype-node-arrow/issues/17)) ([b4bc95b](https://github.com/quintype/quintype-node-arrow/commit/b4bc95b1fd58cbce1f55a8d8b67d1369f21fa302))
|
|
1354
|
+
- **Row:** Four Column Component ([#18](https://github.com/quintype/quintype-node-arrow/issues/18)) ([1465d38](https://github.com/quintype/quintype-node-arrow/commit/1465d383319061ece077c3c5a1fd95f6b4f60963))
|
|
1355
|
+
- **Story card:** Add few more story card combinations ([#3](https://github.com/quintype/quintype-node-arrow/issues/3)) ([0aaa9f0](https://github.com/quintype/quintype-node-arrow/commit/0aaa9f033fb501fbb4b8e2119bd918b10bda12de))
|
|
1356
|
+
|
|
1357
|
+
### Bug Fixes
|
|
1358
|
+
|
|
1359
|
+
- Add dependency exception ❗️ ([b1ef019](https://github.com/quintype/quintype-node-arrow/commit/b1ef01923348c573ca560b9da0ea0a8e4c01833d))
|
|
1360
|
+
- Capitalising atom directory names ([#7](https://github.com/quintype/quintype-node-arrow/issues/7)) ([0b713ac](https://github.com/quintype/quintype-node-arrow/commit/0b713acf280baad8efaf09e569a747bb3b1667c1))
|
|
1361
|
+
- Removed some common console errors ([bc38ff3](https://github.com/quintype/quintype-node-arrow/commit/bc38ff364a263fc5d0a2fe5ac348cb48307679e4))
|
|
1362
|
+
- Storybook webpack exposes a function 🔧 ([c7ae631](https://github.com/quintype/quintype-node-arrow/commit/c7ae6315eb3395a573beb74775305b6902e5867b))
|