@quintype/arrow 3.54.1-debug-full-bleed.4 → 3.54.1-version-upgrade.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (648) hide show
  1. package/.babelrc +12 -0
  2. package/.circleci/config.yml +43 -0
  3. package/.eslintrc.json +35 -0
  4. package/.prettierrc +6 -0
  5. package/.storybook/addons.js +4 -0
  6. package/.storybook/main.js +7 -0
  7. package/.storybook/preview.js +3 -0
  8. package/.storybook/webpack.config.js +8 -0
  9. package/.stylelintrc +10 -0
  10. package/.vscode/extensions.json +16 -0
  11. package/.vscode/settings.json +12 -0
  12. package/CHANGELOG.md +2578 -0
  13. package/__mocks__/fileMock.js +1 -0
  14. package/__mocks__/styleMock.js +1 -0
  15. package/assets/stylesheets/mixins.scss +35 -0
  16. package/assets/stylesheets/reset.scss +148 -0
  17. package/assets/stylesheets/viewports.m.css +3 -0
  18. package/bin-dev-scripts/prepublish.sh +11 -0
  19. package/bin-dev-scripts/sync-to.sh +13 -0
  20. package/jest.config.json +14 -0
  21. package/package.json +138 -1
  22. package/publish +24 -0
  23. package/rollup.js +202 -0
  24. package/setupTests.js +3 -0
  25. package/src/components/Atoms/AdPlaceholder/ads.m.css +13 -0
  26. package/src/components/Atoms/AdPlaceholder/index.js +25 -0
  27. package/src/components/Atoms/AudioPlayer/PlayerBase.js +150 -0
  28. package/src/components/Atoms/AudioPlayer/PlayerControls.js +155 -0
  29. package/src/components/Atoms/AudioPlayer/ProgressBar.js +24 -0
  30. package/src/components/Atoms/AudioPlayer/audio.m.css +201 -0
  31. package/src/components/Atoms/AudioPlayer/index.js +59 -0
  32. package/src/components/Atoms/AudioPlayer/progressbar.m.css +48 -0
  33. package/src/components/Atoms/Author/README.md +19 -0
  34. package/src/components/Atoms/Author/author.m.css +62 -0
  35. package/src/components/Atoms/Author/index.js +112 -0
  36. package/src/components/Atoms/Author/stories.js +23 -0
  37. package/src/components/Atoms/AuthorCard/README.md +55 -0
  38. package/src/components/Atoms/AuthorCard/author-card.m.css +224 -0
  39. package/src/components/Atoms/AuthorCard/author-card.test.js +97 -0
  40. package/src/components/Atoms/AuthorCard/index.js +312 -0
  41. package/src/components/Atoms/AuthorCard/stories.js +164 -0
  42. package/src/components/Atoms/AuthorImage/README.md +31 -0
  43. package/src/components/Atoms/AuthorImage/author-image.m.css +53 -0
  44. package/src/components/Atoms/AuthorImage/index.js +62 -0
  45. package/src/components/Atoms/AuthorImage/stories.js +20 -0
  46. package/src/components/Atoms/AuthorWithTimestamp/README.md +12 -0
  47. package/src/components/Atoms/AuthorWithTimestamp/author-with-timestamp.m.css +40 -0
  48. package/src/components/Atoms/AuthorWithTimestamp/index.js +115 -0
  49. package/src/components/Atoms/AuthorWithTimestamp/stories.js +27 -0
  50. package/src/components/Atoms/BulletPoint/README.md +9 -0
  51. package/src/components/Atoms/BulletPoint/bullet-point.m.css +25 -0
  52. package/src/components/Atoms/BulletPoint/index.js +19 -0
  53. package/src/components/Atoms/BulletPoint/stories.js +6 -0
  54. package/src/components/Atoms/CaptionAttribution/README.md +15 -0
  55. package/src/components/Atoms/CaptionAttribution/caption-attribution.m.css +40 -0
  56. package/src/components/Atoms/CaptionAttribution/caption-attribution.test.js +29 -0
  57. package/src/components/Atoms/CaptionAttribution/index.js +40 -0
  58. package/src/components/Atoms/CaptionAttribution/stories.js +40 -0
  59. package/src/components/Atoms/CollectionName/README.md +11 -0
  60. package/src/components/Atoms/CollectionName/collection-name.m.css +106 -0
  61. package/src/components/Atoms/CollectionName/index.js +147 -0
  62. package/src/components/Atoms/CollectionName/stories.js +52 -0
  63. package/src/components/Atoms/Divider/__snapshots__/divider.test.js.snap +18 -0
  64. package/src/components/Atoms/Divider/divider.m.css +6 -0
  65. package/src/components/Atoms/Divider/divider.test.js +10 -0
  66. package/src/components/Atoms/Divider/index.js +20 -0
  67. package/src/components/Atoms/Dot/dot.js +20 -0
  68. package/src/components/Atoms/Dot/dot.m.css +6 -0
  69. package/src/components/Atoms/ExtendedLoadMore/README.md +9 -0
  70. package/src/components/Atoms/ExtendedLoadMore/__snapshots__/extended-load-more.test.js.snap +11 -0
  71. package/src/components/Atoms/ExtendedLoadMore/extended-load-more.test.js +19 -0
  72. package/src/components/Atoms/ExtendedLoadMore/index.js +114 -0
  73. package/src/components/Atoms/FallbackImage/fallback.m.css +33 -0
  74. package/src/components/Atoms/FallbackImage/index.js +39 -0
  75. package/src/components/Atoms/Headline/README.md +7 -0
  76. package/src/components/Atoms/Headline/headline.m.css +67 -0
  77. package/src/components/Atoms/Headline/index.js +112 -0
  78. package/src/components/Atoms/Headline/stories.js +52 -0
  79. package/src/components/Atoms/HeroImage/README.md +13 -0
  80. package/src/components/Atoms/HeroImage/hero-image.m.css +99 -0
  81. package/src/components/Atoms/HeroImage/index.js +293 -0
  82. package/src/components/Atoms/HeroImage/stories.js +22 -0
  83. package/src/components/Atoms/Hyperlink/hyperlink.m.css +10 -0
  84. package/src/components/Atoms/Hyperlink/index.js +24 -0
  85. package/src/components/Atoms/LoadMoreTarget/index.js +30 -0
  86. package/src/components/Atoms/LoadMoreTarget/load-more-target.m.css +7 -0
  87. package/src/components/Atoms/Loadmore/README.md +0 -0
  88. package/src/components/Atoms/Loadmore/__snapshots__/load-more.test.js.snap +25 -0
  89. package/src/components/Atoms/Loadmore/index.js +54 -0
  90. package/src/components/Atoms/Loadmore/load-more.m.css +23 -0
  91. package/src/components/Atoms/Loadmore/load-more.test.js +30 -0
  92. package/src/components/Atoms/Loadmore/stories.js +17 -0
  93. package/src/components/Atoms/MagazineCoverImage/README.md +21 -0
  94. package/src/components/Atoms/MagazineCoverImage/index.js +73 -0
  95. package/src/components/Atoms/MagazineCoverImage/magazine-cover-image.m.css +24 -0
  96. package/src/components/Atoms/MagazineCoverImage/stories.js +21 -0
  97. package/src/components/Atoms/PremiumStoryIcon/index.js +27 -0
  98. package/src/components/Atoms/PublishDetail/README.md +15 -0
  99. package/src/components/Atoms/PublishDetail/index.js +105 -0
  100. package/src/components/Atoms/PublishDetail/publish-details.m.css +53 -0
  101. package/src/components/Atoms/PublishDetail/publish-details.test.js +35 -0
  102. package/src/components/Atoms/PublishDetail/stories.js +22 -0
  103. package/src/components/Atoms/ReadTime/README.md +13 -0
  104. package/src/components/Atoms/ReadTime/index.js +59 -0
  105. package/src/components/Atoms/ReadTime/read-time.m.css +25 -0
  106. package/src/components/Atoms/ReadTime/read-time.test.js +27 -0
  107. package/src/components/Atoms/ReadTime/stories.js +19 -0
  108. package/src/components/Atoms/ResponsiveImg/index.js +174 -0
  109. package/src/components/Atoms/ScrollSnap/SliderArrow/index.js +67 -0
  110. package/src/components/Atoms/ScrollSnap/SliderArrow/slider-arrow.m.css +45 -0
  111. package/src/components/Atoms/ScrollSnap/SliderIndicator/index.js +41 -0
  112. package/src/components/Atoms/ScrollSnap/SliderIndicator/slider-indicator.m.css +71 -0
  113. package/src/components/Atoms/ScrollSnap/index.js +179 -0
  114. package/src/components/Atoms/ScrollSnap/scroll-snap.m.css +26 -0
  115. package/src/components/Atoms/SectionTag/README.md +11 -0
  116. package/src/components/Atoms/SectionTag/index.js +74 -0
  117. package/src/components/Atoms/SectionTag/section.m.css +53 -0
  118. package/src/components/Atoms/SectionTag/stories.js +26 -0
  119. package/src/components/Atoms/SocialSharePopup/README.md +25 -0
  120. package/src/components/Atoms/SocialSharePopup/__snapshots__/social-share-popup.test.js.snap +259 -0
  121. package/src/components/Atoms/SocialSharePopup/index.js +122 -0
  122. package/src/components/Atoms/SocialSharePopup/social-share-popup.m.css +287 -0
  123. package/src/components/Atoms/SocialSharePopup/social-share-popup.test.js +101 -0
  124. package/src/components/Atoms/SocialSharePopup/stories.js +19 -0
  125. package/src/components/Atoms/SponsoredLabel/index.js +52 -0
  126. package/src/components/Atoms/SponsoredLabel/sponsored-lable.m.css +17 -0
  127. package/src/components/Atoms/StoryDemarcationIcon/index.js +127 -0
  128. package/src/components/Atoms/StoryElements/AISummary/ai-icons.js +51 -0
  129. package/src/components/Atoms/StoryElements/AISummary/ai-summary.m.css +106 -0
  130. package/src/components/Atoms/StoryElements/AISummary/index.js +206 -0
  131. package/src/components/Atoms/StoryElements/AISummary/stories.js +27 -0
  132. package/src/components/Atoms/StoryElements/AlsoRead/README.md +49 -0
  133. package/src/components/Atoms/StoryElements/AlsoRead/also-read.m.css +133 -0
  134. package/src/components/Atoms/StoryElements/AlsoRead/also-read.test.js +83 -0
  135. package/src/components/Atoms/StoryElements/AlsoRead/index.js +126 -0
  136. package/src/components/Atoms/StoryElements/AlsoRead/stories.js +40 -0
  137. package/src/components/Atoms/StoryElements/Attachment/README.md +21 -0
  138. package/src/components/Atoms/StoryElements/Attachment/__snapshots__/attachment.test.js.snap +47 -0
  139. package/src/components/Atoms/StoryElements/Attachment/attachment.m.css +127 -0
  140. package/src/components/Atoms/StoryElements/Attachment/attachment.test.js +39 -0
  141. package/src/components/Atoms/StoryElements/Attachment/index.js +63 -0
  142. package/src/components/Atoms/StoryElements/Attachment/stories.js +48 -0
  143. package/src/components/Atoms/StoryElements/BigFact/README.md +9 -0
  144. package/src/components/Atoms/StoryElements/BigFact/big-fact.m.css +41 -0
  145. package/src/components/Atoms/StoryElements/BigFact/big-fact.test.js +21 -0
  146. package/src/components/Atoms/StoryElements/BigFact/index.js +33 -0
  147. package/src/components/Atoms/StoryElements/BigFact/stories.js +9 -0
  148. package/src/components/Atoms/StoryElements/BlockQuote/README.md +49 -0
  149. package/src/components/Atoms/StoryElements/BlockQuote/Svg/curve.js +27 -0
  150. package/src/components/Atoms/StoryElements/BlockQuote/Svg/edge.js +27 -0
  151. package/src/components/Atoms/StoryElements/BlockQuote/Svg/icon.m.css +11 -0
  152. package/src/components/Atoms/StoryElements/BlockQuote/block-quote.m.css +170 -0
  153. package/src/components/Atoms/StoryElements/BlockQuote/block-quote.test.js +48 -0
  154. package/src/components/Atoms/StoryElements/BlockQuote/index.js +82 -0
  155. package/src/components/Atoms/StoryElements/BlockQuote/stories.js +35 -0
  156. package/src/components/Atoms/StoryElements/Blurb/README.md +43 -0
  157. package/src/components/Atoms/StoryElements/Blurb/blurb.m.css +56 -0
  158. package/src/components/Atoms/StoryElements/Blurb/blurb.test.js +71 -0
  159. package/src/components/Atoms/StoryElements/Blurb/index.js +50 -0
  160. package/src/components/Atoms/StoryElements/Blurb/stories.js +28 -0
  161. package/src/components/Atoms/StoryElements/Image/README.md +13 -0
  162. package/src/components/Atoms/StoryElements/Image/image.m.css +21 -0
  163. package/src/components/Atoms/StoryElements/Image/image.test.js +20 -0
  164. package/src/components/Atoms/StoryElements/Image/index.js +76 -0
  165. package/src/components/Atoms/StoryElements/Image/stories.js +25 -0
  166. package/src/components/Atoms/StoryElements/ImageSlideshow/README.md +13 -0
  167. package/src/components/Atoms/StoryElements/ImageSlideshow/image-slideshow.m.css +63 -0
  168. package/src/components/Atoms/StoryElements/ImageSlideshow/index.js +101 -0
  169. package/src/components/Atoms/StoryElements/ImageSlideshow/stories.js +34 -0
  170. package/src/components/Atoms/StoryElements/QuestionAnswer/README.md +56 -0
  171. package/src/components/Atoms/StoryElements/QuestionAnswer/index.js +150 -0
  172. package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.m.css +185 -0
  173. package/src/components/Atoms/StoryElements/QuestionAnswer/question-answer.test.js +74 -0
  174. package/src/components/Atoms/StoryElements/QuestionAnswer/stories.js +79 -0
  175. package/src/components/Atoms/StoryElements/Quote/README.md +41 -0
  176. package/src/components/Atoms/StoryElements/Quote/index.js +45 -0
  177. package/src/components/Atoms/StoryElements/Quote/quote.m.css +125 -0
  178. package/src/components/Atoms/StoryElements/Quote/quote.test.js +58 -0
  179. package/src/components/Atoms/StoryElements/Quote/stories.js +28 -0
  180. package/src/components/Atoms/StoryElements/Reference/README.md +9 -0
  181. package/src/components/Atoms/StoryElements/Reference/index.js +52 -0
  182. package/src/components/Atoms/StoryElements/Reference/reference.m.css +42 -0
  183. package/src/components/Atoms/StoryElements/Reference/reference.test.js +28 -0
  184. package/src/components/Atoms/StoryElements/Reference/stories.js +18 -0
  185. package/src/components/Atoms/StoryElements/StoryElement/README.md +10 -0
  186. package/src/components/Atoms/StoryElements/StoryElement/index.js +35 -0
  187. package/src/components/Atoms/StoryElements/StoryElement/stories.js +20 -0
  188. package/src/components/Atoms/StoryElements/StoryElement/storyElement.m.css +23 -0
  189. package/src/components/Atoms/StoryElements/StoryElement/storyelement.test.js +13 -0
  190. package/src/components/Atoms/StoryElements/Summary/README.md +56 -0
  191. package/src/components/Atoms/StoryElements/Summary/index.js +67 -0
  192. package/src/components/Atoms/StoryElements/Summary/stories.js +33 -0
  193. package/src/components/Atoms/StoryElements/Summary/summary.m.css +169 -0
  194. package/src/components/Atoms/StoryElements/Summary/summary.test.js +50 -0
  195. package/src/components/Atoms/StoryElements/Text/README.md +32 -0
  196. package/src/components/Atoms/StoryElements/Text/index.js +40 -0
  197. package/src/components/Atoms/StoryElements/Text/stories.js +32 -0
  198. package/src/components/Atoms/StoryElements/Text/text.m.css +88 -0
  199. package/src/components/Atoms/StoryElements/Text/text.test.js +42 -0
  200. package/src/components/Atoms/StoryElements/Video/README.md +9 -0
  201. package/src/components/Atoms/StoryElements/Video/index.js +46 -0
  202. package/src/components/Atoms/StoryElements/Video/stories.js +24 -0
  203. package/src/components/Atoms/StoryElements/Video/video.m.css +142 -0
  204. package/src/components/Atoms/StoryElements/Video/video.test.js +19 -0
  205. package/src/components/Atoms/StoryElements/imageGallery/README.md +18 -0
  206. package/src/components/Atoms/StoryElements/imageGallery/image-gallery.m.css +52 -0
  207. package/src/components/Atoms/StoryElements/imageGallery/image-gallery.test.js +19 -0
  208. package/src/components/Atoms/StoryElements/imageGallery/index.js +79 -0
  209. package/src/components/Atoms/StoryElements/imageGallery/stories.js +23 -0
  210. package/src/components/Atoms/StoryElements/withElementWrapper.js +13 -0
  211. package/src/components/Atoms/StoryElements/withElementWrapper.test.js +31 -0
  212. package/src/components/Atoms/StoryHeadline/index.js +56 -0
  213. package/src/components/Atoms/StoryHeadline/story-headline.m.css +36 -0
  214. package/src/components/Atoms/StoryReview/README.md +9 -0
  215. package/src/components/Atoms/StoryReview/index.js +39 -0
  216. package/src/components/Atoms/StoryReview/stories.js +8 -0
  217. package/src/components/Atoms/StoryReview/story-review.m.css +34 -0
  218. package/src/components/Atoms/StoryTags/README.md +9 -0
  219. package/src/components/Atoms/StoryTags/index.js +33 -0
  220. package/src/components/Atoms/StoryTags/stories.js +25 -0
  221. package/src/components/Atoms/StoryTags/story-tags.test.js +18 -0
  222. package/src/components/Atoms/StoryTags/tags.m.css +42 -0
  223. package/src/components/Atoms/Subheadline/README.md +17 -0
  224. package/src/components/Atoms/Subheadline/index.js +54 -0
  225. package/src/components/Atoms/Subheadline/stories.js +12 -0
  226. package/src/components/Atoms/Subheadline/subheadline.m.css +17 -0
  227. package/src/components/Atoms/TimeStamp/README.md +9 -0
  228. package/src/components/Atoms/TimeStamp/index.js +83 -0
  229. package/src/components/Atoms/TimeStamp/stories.js +9 -0
  230. package/src/components/Atoms/TimeStamp/timestamp.m.css +21 -0
  231. package/src/components/Fixture/config.json +2703 -0
  232. package/src/components/Fixture/dummy-collection.js +2790 -0
  233. package/src/components/Fixture/dummyStory.js +2368 -0
  234. package/src/components/Fixture/index.js +425 -0
  235. package/src/components/Fixture/slot-config.js +29 -0
  236. package/src/components/Fixture/timezone.js +1 -0
  237. package/src/components/Molecules/FollowUs/README.md +17 -0
  238. package/src/components/Molecules/FollowUs/follow-us.m.css +99 -0
  239. package/src/components/Molecules/FollowUs/index.js +97 -0
  240. package/src/components/Molecules/FollowUs/stories.js +9 -0
  241. package/src/components/Molecules/FullScreenImages/fullscreenimages.scss +56 -0
  242. package/src/components/Molecules/FullScreenImages/index.js +98 -0
  243. package/src/components/Molecules/KeyEvents/README.md +21 -0
  244. package/src/components/Molecules/KeyEvents/index.js +132 -0
  245. package/src/components/Molecules/KeyEvents/key-events.m.css +103 -0
  246. package/src/components/Molecules/KeyEvents/stories.js +28 -0
  247. package/src/components/Molecules/PageIntroductionCard/README.md +25 -0
  248. package/src/components/Molecules/PageIntroductionCard/index.js +50 -0
  249. package/src/components/Molecules/PageIntroductionCard/page-intro-card.m.css +61 -0
  250. package/src/components/Molecules/PageIntroductionCard/stories.js +16 -0
  251. package/src/components/Molecules/PortraitStoryCard/README.md +10 -0
  252. package/src/components/Molecules/PortraitStoryCard/index.js +54 -0
  253. package/src/components/Molecules/PortraitStoryCard/portrait-story-card.m.css +42 -0
  254. package/src/components/Molecules/PortraitStoryCard/stories.js +24 -0
  255. package/src/components/Molecules/SliderHorizontalCard/README.md +14 -0
  256. package/src/components/Molecules/SliderHorizontalCard/index.js +44 -0
  257. package/src/components/Molecules/SliderHorizontalCard/slider-horizontal-card.m.css +42 -0
  258. package/src/components/Molecules/SliderHorizontalCard/stories.js +30 -0
  259. package/src/components/Molecules/SocialShareTemplate/README.md +118 -0
  260. package/src/components/Molecules/SocialShareTemplate/__snapshots__/social-share-template.test.js.snap +285 -0
  261. package/src/components/Molecules/SocialShareTemplate/index.js +299 -0
  262. package/src/components/Molecules/SocialShareTemplate/social-share-data.js +205 -0
  263. package/src/components/Molecules/SocialShareTemplate/social-share-template.m.css +340 -0
  264. package/src/components/Molecules/SocialShareTemplate/social-share-template.test.js +147 -0
  265. package/src/components/Molecules/SocialShareTemplate/stories.js +45 -0
  266. package/src/components/Molecules/StoryCard/README.md +75 -0
  267. package/src/components/Molecules/StoryCard/READMEBGIMAGE.md +25 -0
  268. package/src/components/Molecules/StoryCard/READMEBORDER.md +61 -0
  269. package/src/components/Molecules/StoryCard/index.js +248 -0
  270. package/src/components/Molecules/StoryCard/stories.js +223 -0
  271. package/src/components/Molecules/StoryCard/storycard.m.css +197 -0
  272. package/src/components/Molecules/StoryCardWithBulletPoint/README.md +9 -0
  273. package/src/components/Molecules/StoryCardWithBulletPoint/index.js +33 -0
  274. package/src/components/Molecules/StoryCardWithBulletPoint/stories.js +31 -0
  275. package/src/components/Molecules/StoryCardWithBulletPoint/story-card-with-bullet-point.m.css +7 -0
  276. package/src/components/Molecules/StoryElementCard/README.md +9 -0
  277. package/src/components/Molecules/StoryElementCard/index.js +511 -0
  278. package/src/components/Molecules/StoryElementCard/stories.js +27 -0
  279. package/src/components/Molecules/StoryElementCard/story-element-card.m.css +102 -0
  280. package/src/components/Molecules/StorycardContent/README.md +34 -0
  281. package/src/components/Molecules/StorycardContent/index.js +85 -0
  282. package/src/components/Molecules/StorycardContent/stories.js +39 -0
  283. package/src/components/Molecules/StorycardContent/storycardContent.m.css +27 -0
  284. package/src/components/Rows/AlternateCollectionFilter/README.md +38 -0
  285. package/src/components/Rows/AlternateCollectionFilter/alternate-collection-filter.m.css +254 -0
  286. package/src/components/Rows/AlternateCollectionFilter/index.js +179 -0
  287. package/src/components/Rows/AlternateCollectionFilter/stories.js +74 -0
  288. package/src/components/Rows/AsideCollection/README.md +27 -0
  289. package/src/components/Rows/AsideCollection/aside-collection.m.css +125 -0
  290. package/src/components/Rows/AsideCollection/aside-collection.test.js +34 -0
  291. package/src/components/Rows/AsideCollection/index.js +247 -0
  292. package/src/components/Rows/AsideCollection/stories.js +52 -0
  293. package/src/components/Rows/AstrologyCollection/README.md +40 -0
  294. package/src/components/Rows/AstrologyCollection/astrology-collection.m.css +173 -0
  295. package/src/components/Rows/AstrologyCollection/index.js +176 -0
  296. package/src/components/Rows/AstrologyCollection/stories.js +60 -0
  297. package/src/components/Rows/AuthorIntroductionCard/README.md +43 -0
  298. package/src/components/Rows/AuthorIntroductionCard/author-intro.m.css +334 -0
  299. package/src/components/Rows/AuthorIntroductionCard/author-intro.test.js +106 -0
  300. package/src/components/Rows/AuthorIntroductionCard/index.js +126 -0
  301. package/src/components/Rows/AuthorIntroductionCard/stories.js +43 -0
  302. package/src/components/Rows/AuthorsList/README.md +24 -0
  303. package/src/components/Rows/AuthorsList/author-list.test.js +50 -0
  304. package/src/components/Rows/AuthorsList/authors-list.m.css +22 -0
  305. package/src/components/Rows/AuthorsList/index.js +48 -0
  306. package/src/components/Rows/AuthorsList/stories.js +61 -0
  307. package/src/components/Rows/CollectionFilter/README.md +39 -0
  308. package/src/components/Rows/CollectionFilter/collection-filter.m.css +213 -0
  309. package/src/components/Rows/CollectionFilter/index.js +240 -0
  310. package/src/components/Rows/CollectionFilter/stories.js +77 -0
  311. package/src/components/Rows/ElevenStories/11-stories.m.css +85 -0
  312. package/src/components/Rows/ElevenStories/README.md +39 -0
  313. package/src/components/Rows/ElevenStories/index.js +338 -0
  314. package/src/components/Rows/ElevenStories/stories.js +70 -0
  315. package/src/components/Rows/FourColFiveStories/README.md +37 -0
  316. package/src/components/Rows/FourColFiveStories/four-col-five-stories.m.css +115 -0
  317. package/src/components/Rows/FourColFiveStories/index.js +170 -0
  318. package/src/components/Rows/FourColFiveStories/stories.js +68 -0
  319. package/src/components/Rows/FourColGrid/README.md +39 -0
  320. package/src/components/Rows/FourColGrid/four-col.m.css +50 -0
  321. package/src/components/Rows/FourColGrid/index.js +164 -0
  322. package/src/components/Rows/FourColGrid/stories.js +66 -0
  323. package/src/components/Rows/FourColPortraitStories/README.md +38 -0
  324. package/src/components/Rows/FourColPortraitStories/four-col-portrait-stories.m.css +45 -0
  325. package/src/components/Rows/FourColPortraitStories/index.js +149 -0
  326. package/src/components/Rows/FourColPortraitStories/stories.js +66 -0
  327. package/src/components/Rows/FourColSixteenStories/README.md +35 -0
  328. package/src/components/Rows/FourColSixteenStories/four-col-sixteen-stories.m.css +165 -0
  329. package/src/components/Rows/FourColSixteenStories/index.js +136 -0
  330. package/src/components/Rows/FourColSixteenStories/stories.js +47 -0
  331. package/src/components/Rows/FourColTwelveStory/README.md +39 -0
  332. package/src/components/Rows/FourColTwelveStory/four-col-twelve-story.m.css +80 -0
  333. package/src/components/Rows/FourColTwelveStory/index.js +175 -0
  334. package/src/components/Rows/FourColTwelveStory/stories.js +117 -0
  335. package/src/components/Rows/FourStorySlider/README.md +45 -0
  336. package/src/components/Rows/FourStorySlider/four-story-slider.m.css +78 -0
  337. package/src/components/Rows/FourStorySlider/index.js +128 -0
  338. package/src/components/Rows/FourStorySlider/stories.js +117 -0
  339. package/src/components/Rows/FourStorySliderPortrait/README.md +45 -0
  340. package/src/components/Rows/FourStorySliderPortrait/four-story-slider-portrait.m.css +272 -0
  341. package/src/components/Rows/FourStorySliderPortrait/index.js +128 -0
  342. package/src/components/Rows/FourStorySliderPortrait/stories.js +117 -0
  343. package/src/components/Rows/FourTabbedBigStorySlider/README.md +39 -0
  344. package/src/components/Rows/FourTabbedBigStorySlider/four-tabbed-big-story-slider.m.css +265 -0
  345. package/src/components/Rows/FourTabbedBigStorySlider/index.js +159 -0
  346. package/src/components/Rows/FourTabbedBigStorySlider/stories.js +63 -0
  347. package/src/components/Rows/FullScreenSlider/README.md +46 -0
  348. package/src/components/Rows/FullScreenSlider/full-screen-slider.m.css +162 -0
  349. package/src/components/Rows/FullScreenSlider/index.js +122 -0
  350. package/src/components/Rows/FullScreenSlider/stories.js +115 -0
  351. package/src/components/Rows/HalfScreenSlider/README.md +43 -0
  352. package/src/components/Rows/HalfScreenSlider/half-screen-slider.m.css +80 -0
  353. package/src/components/Rows/HalfScreenSlider/index.js +112 -0
  354. package/src/components/Rows/HalfScreenSlider/stories.js +115 -0
  355. package/src/components/Rows/IntroductionCard/README.md +11 -0
  356. package/src/components/Rows/IntroductionCard/index.js +72 -0
  357. package/src/components/Rows/IntroductionCard/intro-card.module.css +102 -0
  358. package/src/components/Rows/IntroductionCard/stories.js +32 -0
  359. package/src/components/Rows/ListComponent/README.md +48 -0
  360. package/src/components/Rows/ListComponent/index.js +149 -0
  361. package/src/components/Rows/ListComponent/list-component.m.css +65 -0
  362. package/src/components/Rows/ListComponent/stories.js +63 -0
  363. package/src/components/Rows/Listicles/README.md +32 -0
  364. package/src/components/Rows/Listicles/index.js +162 -0
  365. package/src/components/Rows/Listicles/listicles.m.css +149 -0
  366. package/src/components/Rows/Listicles/stories.js +66 -0
  367. package/src/components/Rows/MagazineEditions/README.md +21 -0
  368. package/src/components/Rows/MagazineEditions/index.js +96 -0
  369. package/src/components/Rows/MagazineEditions/magazine-editions.m.css +50 -0
  370. package/src/components/Rows/MagazineEditions/magazine-editions.test.js +33 -0
  371. package/src/components/Rows/MagazineEditions/stories.js +45 -0
  372. package/src/components/Rows/MagazineHeaderCard/README.md +21 -0
  373. package/src/components/Rows/MagazineHeaderCard/index.js +77 -0
  374. package/src/components/Rows/MagazineHeaderCard/magazine-cards.m.css +107 -0
  375. package/src/components/Rows/MagazineHeaderCard/stories.js +36 -0
  376. package/src/components/Rows/MagazineWidget/README.md +21 -0
  377. package/src/components/Rows/MagazineWidget/index.js +132 -0
  378. package/src/components/Rows/MagazineWidget/stories.js +43 -0
  379. package/src/components/Rows/OneColStoryList/README.md +48 -0
  380. package/src/components/Rows/OneColStoryList/index.js +217 -0
  381. package/src/components/Rows/OneColStoryList/one-col-story-list.m.css +91 -0
  382. package/src/components/Rows/OneColStoryList/stories.js +61 -0
  383. package/src/components/Rows/OpinionCollection/README.md +36 -0
  384. package/src/components/Rows/OpinionCollection/index.js +156 -0
  385. package/src/components/Rows/OpinionCollection/opinion-collection.m.css +210 -0
  386. package/src/components/Rows/OpinionCollection/stories.js +82 -0
  387. package/src/components/Rows/SixColSixStories/README.md +39 -0
  388. package/src/components/Rows/SixColSixStories/index.js +182 -0
  389. package/src/components/Rows/SixColSixStories/six-col-six-stories.m.css +92 -0
  390. package/src/components/Rows/SixColSixStories/stories.js +76 -0
  391. package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/custom-attributes.m.css +78 -0
  392. package/src/components/Rows/StoryTemplates/EventStoryTemplates/CustomAttributes/index.js +103 -0
  393. package/src/components/Rows/StoryTemplates/EventStoryTemplates/event-story.m.css +138 -0
  394. package/src/components/Rows/StoryTemplates/EventStoryTemplates/index.js +56 -0
  395. package/src/components/Rows/StoryTemplates/EventStoryTemplates/stories.js +78 -0
  396. package/src/components/Rows/StoryTemplates/EventStoryTemplates/template.js +169 -0
  397. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/README.md +19 -0
  398. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/__snapshots__/listicle-story.test.js.snap +841 -0
  399. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/index.js +477 -0
  400. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.m.css +285 -0
  401. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicle-story.test.js +47 -0
  402. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/listicleUtils.js +16 -0
  403. package/src/components/Rows/StoryTemplates/ListicleStoryTemplates/stories.js +125 -0
  404. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/README.md +25 -0
  405. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/index.js +74 -0
  406. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/live-blog.m.css +320 -0
  407. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/stories.js +114 -0
  408. package/src/components/Rows/StoryTemplates/LiveBlogStoryTemplates/templates.js +449 -0
  409. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/index.js +381 -0
  410. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo-story.test.js +144 -0
  411. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/photo.m.css +199 -0
  412. package/src/components/Rows/StoryTemplates/PhotoStoryTemplates/stories.js +117 -0
  413. package/src/components/Rows/StoryTemplates/Snapshot/README.md +9 -0
  414. package/src/components/Rows/StoryTemplates/Snapshot/index.js +103 -0
  415. package/src/components/Rows/StoryTemplates/Snapshot/snapshot.m.css +88 -0
  416. package/src/components/Rows/StoryTemplates/Snapshot/stories.js +95 -0
  417. package/src/components/Rows/StoryTemplates/TextStoryTemplates/README.md +49 -0
  418. package/src/components/Rows/StoryTemplates/TextStoryTemplates/index.js +100 -0
  419. package/src/components/Rows/StoryTemplates/TextStoryTemplates/stories.js +120 -0
  420. package/src/components/Rows/StoryTemplates/TextStoryTemplates/templates.js +413 -0
  421. package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.m.css +496 -0
  422. package/src/components/Rows/StoryTemplates/TextStoryTemplates/text-story.test.js +222 -0
  423. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/README.md +31 -0
  424. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/index.js +294 -0
  425. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/stories.js +217 -0
  426. package/src/components/Rows/StoryTemplates/VideoStoryTemplates/video-story.m.css +185 -0
  427. package/src/components/Rows/ThreeColFlexStories/README.md +38 -0
  428. package/src/components/Rows/ThreeColFlexStories/index.js +217 -0
  429. package/src/components/Rows/ThreeColFlexStories/stories.js +73 -0
  430. package/src/components/Rows/ThreeColFlexStories/three-col-flex-stories.m.css +58 -0
  431. package/src/components/Rows/ThreeColFourteenStory/README.md +28 -0
  432. package/src/components/Rows/ThreeColFourteenStory/index.js +131 -0
  433. package/src/components/Rows/ThreeColFourteenStory/stories.js +60 -0
  434. package/src/components/Rows/ThreeColFourteenStory/three-col-fourteen-story.m.css +51 -0
  435. package/src/components/Rows/ThreeColGrid/README.md +36 -0
  436. package/src/components/Rows/ThreeColGrid/index.js +177 -0
  437. package/src/components/Rows/ThreeColGrid/stories.js +70 -0
  438. package/src/components/Rows/ThreeColGrid/three-col.m.css +43 -0
  439. package/src/components/Rows/ThreeColSevenStory/README.md +36 -0
  440. package/src/components/Rows/ThreeColSevenStory/index.js +242 -0
  441. package/src/components/Rows/ThreeColSevenStory/stories.js +103 -0
  442. package/src/components/Rows/ThreeColSevenStory/three-col-seven-story.m.css +44 -0
  443. package/src/components/Rows/ThreeColSixStories/README.md +40 -0
  444. package/src/components/Rows/ThreeColSixStories/index.js +183 -0
  445. package/src/components/Rows/ThreeColSixStories/stories.js +73 -0
  446. package/src/components/Rows/ThreeColSixStories/three-col-six-stories.m.css +32 -0
  447. package/src/components/Rows/ThreeColTwelveStories/README.md +41 -0
  448. package/src/components/Rows/ThreeColTwelveStories/index.js +153 -0
  449. package/src/components/Rows/ThreeColTwelveStories/stories.js +51 -0
  450. package/src/components/Rows/ThreeColTwelveStories/three-col-twelve-stories.m.css +105 -0
  451. package/src/components/Rows/TwoColFourStory/README.md +33 -0
  452. package/src/components/Rows/TwoColFourStory/index.js +162 -0
  453. package/src/components/Rows/TwoColFourStory/stories.js +68 -0
  454. package/src/components/Rows/TwoColFourStory/two-col-four-story.m.css +66 -0
  455. package/src/components/Rows/TwoColFourStoryHighlight/README.md +35 -0
  456. package/src/components/Rows/TwoColFourStoryHighlight/index.js +138 -0
  457. package/src/components/Rows/TwoColFourStoryHighlight/stories.js +48 -0
  458. package/src/components/Rows/TwoColFourStoryHighlight/two-col-four-story-highlight.m.css +116 -0
  459. package/src/components/Rows/TwoColSevenStories/README.md +37 -0
  460. package/src/components/Rows/TwoColSevenStories/index.js +150 -0
  461. package/src/components/Rows/TwoColSevenStories/stories.js +100 -0
  462. package/src/components/Rows/TwoColSevenStories/two-col-seven-stories.m.css +182 -0
  463. package/src/components/Rows/TwoColSixStories/README.md +36 -0
  464. package/src/components/Rows/TwoColSixStories/index.js +140 -0
  465. package/src/components/Rows/TwoColSixStories/stories.js +67 -0
  466. package/src/components/Rows/TwoColSixStories/two-col-six-stories.m.css +174 -0
  467. package/src/components/Rows/TwoColTenStoriesSidebar/README.md +34 -0
  468. package/src/components/Rows/TwoColTenStoriesSidebar/index.js +193 -0
  469. package/src/components/Rows/TwoColTenStoriesSidebar/stories.js +45 -0
  470. package/src/components/Rows/TwoColTenStoriesSidebar/two-col-ten-stories-sidebar.m.css +64 -0
  471. package/src/components/Rows/TwoColThreeStory/README.md +40 -0
  472. package/src/components/Rows/TwoColThreeStory/index.js +155 -0
  473. package/src/components/Rows/TwoColThreeStory/stories.js +68 -0
  474. package/src/components/Rows/TwoColThreeStory/two-col-three-story.m.css +36 -0
  475. package/src/components/SharedContext.js +13 -0
  476. package/src/components/Svgs/Loading/loading.js +133 -0
  477. package/src/components/Svgs/Loading/loading.m.css +6 -0
  478. package/src/components/Svgs/SocialIcons/circular-color/copylink.js +22 -0
  479. package/src/components/Svgs/SocialIcons/circular-color/email.js +16 -0
  480. package/src/components/Svgs/SocialIcons/circular-color/facebook.js +23 -0
  481. package/src/components/Svgs/SocialIcons/circular-color/instagram.js +24 -0
  482. package/src/components/Svgs/SocialIcons/circular-color/jio.js +30 -0
  483. package/src/components/Svgs/SocialIcons/circular-color/linkedin.js +16 -0
  484. package/src/components/Svgs/SocialIcons/circular-color/pinterest.js +16 -0
  485. package/src/components/Svgs/SocialIcons/circular-color/reddit.js +27 -0
  486. package/src/components/Svgs/SocialIcons/circular-color/telegram.js +16 -0
  487. package/src/components/Svgs/SocialIcons/circular-color/tiktok.js +40 -0
  488. package/src/components/Svgs/SocialIcons/circular-color/twitter.js +22 -0
  489. package/src/components/Svgs/SocialIcons/circular-color/whatsapp.js +18 -0
  490. package/src/components/Svgs/SocialIcons/circular-color/youtube.js +16 -0
  491. package/src/components/Svgs/SocialIcons/circular-plain/copylink.js +19 -0
  492. package/src/components/Svgs/SocialIcons/circular-plain/email.js +19 -0
  493. package/src/components/Svgs/SocialIcons/circular-plain/facebook.js +29 -0
  494. package/src/components/Svgs/SocialIcons/circular-plain/instagram.js +21 -0
  495. package/src/components/Svgs/SocialIcons/circular-plain/linkedin.js +21 -0
  496. package/src/components/Svgs/SocialIcons/circular-plain/reddit.js +33 -0
  497. package/src/components/Svgs/SocialIcons/circular-plain/telegram.js +22 -0
  498. package/src/components/Svgs/SocialIcons/circular-plain/twitter.js +21 -0
  499. package/src/components/Svgs/SocialIcons/circular-plain/whatsapp.js +23 -0
  500. package/src/components/Svgs/SocialIcons/circular-plain/youtube.js +17 -0
  501. package/src/components/Svgs/SocialIcons/plain/copylink.js +17 -0
  502. package/src/components/Svgs/SocialIcons/plain/email.js +23 -0
  503. package/src/components/Svgs/SocialIcons/plain/facebook.js +21 -0
  504. package/src/components/Svgs/SocialIcons/plain/google-news.js +26 -0
  505. package/src/components/Svgs/SocialIcons/plain/instagram.js +17 -0
  506. package/src/components/Svgs/SocialIcons/plain/linkedin.js +17 -0
  507. package/src/components/Svgs/SocialIcons/plain/pinterest.js +19 -0
  508. package/src/components/Svgs/SocialIcons/plain/reddit.js +25 -0
  509. package/src/components/Svgs/SocialIcons/plain/twitter.js +17 -0
  510. package/src/components/Svgs/SocialIcons/plain/whatsapp.js +19 -0
  511. package/src/components/Svgs/SocialIcons/plain/youtube.js +17 -0
  512. package/src/components/Svgs/SocialIcons/square/copylink.js +19 -0
  513. package/src/components/Svgs/SocialIcons/square/email.js +13 -0
  514. package/src/components/Svgs/SocialIcons/square/facebook.js +20 -0
  515. package/src/components/Svgs/SocialIcons/square/instagram.js +17 -0
  516. package/src/components/Svgs/SocialIcons/square/linkedin.js +13 -0
  517. package/src/components/Svgs/SocialIcons/square/reddit.js +24 -0
  518. package/src/components/Svgs/SocialIcons/square/telegram.js +13 -0
  519. package/src/components/Svgs/SocialIcons/square/twitter.js +19 -0
  520. package/src/components/Svgs/SocialIcons/square/whatsapp.js +15 -0
  521. package/src/components/Svgs/SocialIcons/square/youtube.js +13 -0
  522. package/src/components/Svgs/TTS-Icons/AudioSpeakerIcon.js +14 -0
  523. package/src/components/Svgs/TTS-Icons/BackwardIconSvg.js +13 -0
  524. package/src/components/Svgs/TTS-Icons/ClosePlayerIconSvg.js +13 -0
  525. package/src/components/Svgs/TTS-Icons/ForwordIconSvg.js +13 -0
  526. package/src/components/Svgs/TTS-Icons/PauseIconSvg.js +13 -0
  527. package/src/components/Svgs/TTS-Icons/PlayIconSvg.js +15 -0
  528. package/src/components/Svgs/TTS-Icons/ReplayIcon.js +16 -0
  529. package/src/components/Svgs/back-arrow.js +22 -0
  530. package/src/components/Svgs/calender.js +20 -0
  531. package/src/components/Svgs/caret-right.svg +3 -0
  532. package/src/components/Svgs/clock-icon.js +17 -0
  533. package/src/components/Svgs/close-icon.js +15 -0
  534. package/src/components/Svgs/crown.js +31 -0
  535. package/src/components/Svgs/fallbackImage.js +42 -0
  536. package/src/components/Svgs/hyperlink.js +17 -0
  537. package/src/components/Svgs/key.js +33 -0
  538. package/src/components/Svgs/large-share-icon.js +64 -0
  539. package/src/components/Svgs/left-arrow.js +17 -0
  540. package/src/components/Svgs/liveicon.js +14 -0
  541. package/src/components/Svgs/location.js +19 -0
  542. package/src/components/Svgs/lock.js +31 -0
  543. package/src/components/Svgs/photo-icons.js +84 -0
  544. package/src/components/Svgs/right-arrow.js +17 -0
  545. package/src/components/Svgs/share-icon.js +66 -0
  546. package/src/components/Svgs/star.js +33 -0
  547. package/src/components/Svgs/user-fallback-icon.js +19 -0
  548. package/src/components/Svgs/video-icons.js +104 -0
  549. package/src/components/Svgs/visual-story-icons.js +77 -0
  550. package/src/components/Typography/README.md +7 -0
  551. package/src/components/Typography/index.js +47 -0
  552. package/src/components/Typography/stories.js +10 -0
  553. package/src/components/Typography/style.m.css +11 -0
  554. package/src/constants.js +2 -0
  555. package/src/entry-points.js +373 -0
  556. package/src/guide/stories.js +18 -0
  557. package/src/hydration-component/index.js +37 -0
  558. package/src/hydration-component/useNearScreen.js +56 -0
  559. package/src/index.js +99 -0
  560. package/src/utils/copy-link.js +37 -0
  561. package/src/utils/dateFnsLocales.js +9 -0
  562. package/src/utils/img-size-utils.js +102 -0
  563. package/src/utils/testing-utils.js +8 -0
  564. package/src/utils/utils.js +615 -0
  565. package/src/utils/utils.test.js +108 -0
  566. package/storybook/index.js +83 -0
  567. package/AlsoRead/styles.arrow.css +0 -1
  568. package/AlternateCollectionFilter/styles.arrow.css +0 -1
  569. package/AsideCollection/styles.arrow.css +0 -1
  570. package/AstrologyCollection/styles.arrow.css +0 -1
  571. package/Attachment/styles.arrow.css +0 -1
  572. package/Author/styles.arrow.css +0 -1
  573. package/AuthorIntroductionCard/styles.arrow.css +0 -1
  574. package/AuthorWithTime/styles.arrow.css +0 -1
  575. package/AuthorsList/styles.arrow.css +0 -1
  576. package/BigFact/styles.arrow.css +0 -1
  577. package/BlockQuote/styles.arrow.css +0 -1
  578. package/Blurb/styles.arrow.css +0 -1
  579. package/CollectionFilter/styles.arrow.css +0 -1
  580. package/CollectionName/styles.arrow.css +0 -1
  581. package/ElevenStories/styles.arrow.css +0 -1
  582. package/EventStoryTemplate/styles.arrow.css +0 -1
  583. package/FollowUs/styles.arrow.css +0 -1
  584. package/FourColFiveStories/styles.arrow.css +0 -1
  585. package/FourColGrid/styles.arrow.css +0 -1
  586. package/FourColPortraitStories/styles.arrow.css +0 -1
  587. package/FourColSixteenStories/styles.arrow.css +0 -1
  588. package/FourColTwelveStories/styles.arrow.css +0 -1
  589. package/FourStorySlider/styles.arrow.css +0 -1
  590. package/FourStorySliderPortrait/styles.arrow.css +0 -1
  591. package/FourTabbedBigStorySlider/styles.arrow.css +0 -1
  592. package/FullScreenSlider/styles.arrow.css +0 -1
  593. package/HalfScreenSlider/styles.arrow.css +0 -1
  594. package/Headline/styles.arrow.css +0 -1
  595. package/HeroImage/styles.arrow.css +0 -1
  596. package/Image/styles.arrow.css +0 -1
  597. package/ImageGallery/styles.arrow.css +0 -1
  598. package/ImageSlideshow/styles.arrow.css +0 -1
  599. package/IntroductionCard/styles.arrow.css +0 -1
  600. package/KeyEvents/styles.arrow.css +0 -1
  601. package/ListComponent/styles.arrow.css +0 -1
  602. package/ListicleStoryTemplate/styles.arrow.css +0 -1
  603. package/Listicles/styles.arrow.css +0 -1
  604. package/LiveBlogStoryTemplate/styles.arrow.css +0 -1
  605. package/LoadmoreButton/styles.arrow.css +0 -1
  606. package/MagazineEditions/styles.arrow.css +0 -1
  607. package/MagazineHeaderCard/styles.arrow.css +0 -1
  608. package/MagazineWidget/styles.arrow.css +0 -1
  609. package/OneColStoryList/styles.arrow.css +0 -1
  610. package/OpinionCollection/styles.arrow.css +0 -1
  611. package/PageIntroductionCard/styles.arrow.css +0 -1
  612. package/PhotoStoryTemplate/styles.arrow.css +0 -1
  613. package/PublishDetails/styles.arrow.css +0 -1
  614. package/QuestionAnswer/styles.arrow.css +0 -1
  615. package/Quote/styles.arrow.css +0 -1
  616. package/Reference/styles.arrow.css +0 -1
  617. package/ScrollSnap/styles.arrow.css +0 -1
  618. package/SectionTag/styles.arrow.css +0 -1
  619. package/SixColSixStories/styles.arrow.css +0 -1
  620. package/Snapshot/styles.arrow.css +0 -1
  621. package/SocialShareTemplate/styles.arrow.css +0 -1
  622. package/StoryCard/styles.arrow.css +0 -1
  623. package/StoryCollection/styles.arrow.css +0 -1
  624. package/StoryElement/styles.arrow.css +0 -1
  625. package/StoryElementCard/styles.arrow.css +0 -1
  626. package/StorycardContent/styles.arrow.css +0 -1
  627. package/Subheadline/styles.arrow.css +0 -1
  628. package/Summary/styles.arrow.css +0 -1
  629. package/Text/styles.arrow.css +0 -1
  630. package/TextStoryTemplate/styles.arrow.css +0 -1
  631. package/ThreeColFlexStories/styles.arrow.css +0 -1
  632. package/ThreeColFourteenStories/styles.arrow.css +0 -1
  633. package/ThreeColGrid/styles.arrow.css +0 -1
  634. package/ThreeColSevenStory/styles.arrow.css +0 -1
  635. package/ThreeColSixStories/styles.arrow.css +0 -1
  636. package/ThreeColTwelveStories/styles.arrow.css +0 -1
  637. package/TimeStamp/styles.arrow.css +0 -1
  638. package/TwoColFourStories/styles.arrow.css +0 -1
  639. package/TwoColFourStoryHighlight/styles.arrow.css +0 -1
  640. package/TwoColSevenStories/styles.arrow.css +0 -1
  641. package/TwoColSixStories/styles.arrow.css +0 -1
  642. package/TwoColTenStoriesSidebar/styles.arrow.css +0 -1
  643. package/TwoColThreeStories/styles.arrow.css +0 -1
  644. package/Video/styles.arrow.css +0 -1
  645. package/VideoStoryTemplate/styles.arrow.css +0 -1
  646. package/cjs/index.js +0 -1
  647. package/esm/index.js +0 -1
  648. /package/{app.scss → assets/stylesheets/app.scss} +0 -0
@@ -0,0 +1,841 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`Listicle Story Templates Should render listicle story template with section tag 1`] = `
4
+ <ContextProvider
5
+ value={
6
+ Object {
7
+ "showSection": true,
8
+ "templateType": "default",
9
+ }
10
+ }
11
+ >
12
+ <ListicleStoryTemplate
13
+ config={
14
+ Object {
15
+ "showSection": true,
16
+ "templateType": "default",
17
+ }
18
+ }
19
+ story={
20
+ Object {
21
+ "access": "subscription",
22
+ "access-level-value": null,
23
+ "alternative": Object {},
24
+ "asana-project-id": null,
25
+ "assignee-id": 927927,
26
+ "assignee-name": "Pravin Atigre",
27
+ "associated-series-collection-ids": Array [],
28
+ "author-id": 927927,
29
+ "author-name": "Pravin Atigre",
30
+ "authors": Array [
31
+ Object {
32
+ "avatar-s3-key": null,
33
+ "avatar-url": "https://lh3.googleusercontent.com/-I9kNTMFkn3E/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rdZeM4LMMdylmULvtrAvmeVF9DmAQ/photo.jpg",
34
+ "bio": "Virat Kohli (Hindi pronunciation: [ʋɪˈɾɑːʈ ˈkoːɦli] (listen); born 5 November 1988) is an Indian international cricketer and the former captain of the Indian national cricket team who plays as a right-handed batsman for Royal Challengers Bangalore in the IPL and for Delhi in Indian domestic cricket. Widely regarded as one of the greatest batsmen of all time,[4] Kohli holds the records for scoring most runs in T20 internationals and in the IPL. In 2020, the International Cricket Council named him the male cricketer of the decade. Kohli has also contributed to a number of India's successes, including winning the 2011 World Cup and the 2013 Champions trophy.",
35
+ "contributor-role": Object {
36
+ "id": 873,
37
+ "name": "Author",
38
+ },
39
+ "id": 927927,
40
+ "name": "Virat Kohli",
41
+ "slug": "pravin-atigre",
42
+ "social": null,
43
+ "twitter-handle": null,
44
+ },
45
+ ],
46
+ "autotags": Array [],
47
+ "breaking-news-linked-story-id": null,
48
+ "bullet-type": "123",
49
+ "canonical-url": null,
50
+ "cards": Array [
51
+ Object {
52
+ "card-added-at": 1602155475842,
53
+ "card-updated-at": 1602234185925,
54
+ "content-id": "aeb377da-eb9f-4013-ae19-fb6fb821e926",
55
+ "content-version-id": "9378abd6-2cec-4bdd-88b2-005cc6d1775f",
56
+ "id": "aeb377da-eb9f-4013-ae19-fb6fb821e926",
57
+ "metadata": Object {
58
+ "attributes": Object {},
59
+ "social-share": Object {
60
+ "image": Object {
61
+ "attribution": "Credits: Asif Asharaf",
62
+ "caption": "Saque ipsa quae ab illo inventore veritatis et quip",
63
+ "key": "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
64
+ "metadata": Object {
65
+ "file-name": "seo.jpg",
66
+ "file-size": 228062,
67
+ "height": 900,
68
+ "mime-type": "image/jpeg",
69
+ "width": 1600,
70
+ },
71
+ "url": null,
72
+ },
73
+ "message": null,
74
+ "shareable": false,
75
+ "title": "It pays to be kind: improving workplace culture through kindness",
76
+ },
77
+ },
78
+ "status": "draft",
79
+ "story-elements": Array [
80
+ Object {
81
+ "description": "",
82
+ "family-id": "d3bf6239-6723-4291-a7d1-6164c808d07d",
83
+ "id": "5ffad09b-7db1-489a-8308-f7d63c745c70",
84
+ "metadata": Object {},
85
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/5ffad09b-7db1-489a-8308-f7d63c745c70",
86
+ "subtype": null,
87
+ "text": "Nemo enim ipsam voluptatem quia volup tas sit aspernatur aut odit aut fugit",
88
+ "title": "",
89
+ "type": "title",
90
+ },
91
+ Object {
92
+ "description": "",
93
+ "family-id": "0a4af70b-2434-4038-8134-87cdc60fc379",
94
+ "id": "f24c83a4-dd3d-47fe-8d05-90f6ada10632",
95
+ "metadata": Object {},
96
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/f24c83a4-dd3d-47fe-8d05-90f6ada10632",
97
+ "subtype": null,
98
+ "text": "<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est</p>",
99
+ "title": "",
100
+ "type": "text",
101
+ },
102
+ ],
103
+ "version": 9,
104
+ },
105
+ Object {
106
+ "card-added-at": 1602155520864,
107
+ "card-updated-at": 1602155725655,
108
+ "content-id": "70988ea9-90a0-42ea-b2b1-1f7374de06e1",
109
+ "content-version-id": "43ff8777-4176-4294-95a3-5aaee8e34537",
110
+ "id": "70988ea9-90a0-42ea-b2b1-1f7374de06e1",
111
+ "metadata": Object {
112
+ "attributes": Object {},
113
+ "social-share": Object {
114
+ "image": Object {
115
+ "attribution": "Credits: Asif Asharaf",
116
+ "caption": "Saque ipsa quae ab illo inventore veritatis et quip",
117
+ "key": "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
118
+ "metadata": Object {
119
+ "file-name": "seo.jpg",
120
+ "file-size": 228062,
121
+ "height": 900,
122
+ "mime-type": "image/jpeg",
123
+ "width": 1600,
124
+ },
125
+ "url": null,
126
+ },
127
+ "message": null,
128
+ "shareable": false,
129
+ "title": "It pays to be kind: improving workplace culture through kindness",
130
+ },
131
+ },
132
+ "status": "draft",
133
+ "story-elements": Array [
134
+ Object {
135
+ "description": "",
136
+ "family-id": "11f060e0-a1aa-4963-9778-24f6b6eca401",
137
+ "id": "82244bcd-c453-41c4-a215-bb038f569375",
138
+ "metadata": Object {},
139
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/82244bcd-c453-41c4-a215-bb038f569375",
140
+ "subtype": null,
141
+ "text": "Nemo enim ipsam voluptatem quia volup tas sit aspernatur aut odit aut fugit",
142
+ "title": "",
143
+ "type": "title",
144
+ },
145
+ Object {
146
+ "description": "",
147
+ "family-id": "a970d458-c7d8-4512-8420-4bf3a4046caf",
148
+ "id": "ae7131f6-450a-4589-9995-812ba5832c58",
149
+ "metadata": Object {},
150
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/ae7131f6-450a-4589-9995-812ba5832c58",
151
+ "subtype": null,
152
+ "text": "<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est</p>",
153
+ "title": "",
154
+ "type": "text",
155
+ },
156
+ ],
157
+ "version": 7,
158
+ },
159
+ Object {
160
+ "card-added-at": 1602155541845,
161
+ "card-updated-at": 1602156067786,
162
+ "content-id": "d6876a49-9319-4c24-9bf9-881ea454b967",
163
+ "content-version-id": "dbfeb570-f9aa-4875-9c3d-f48bf551dd91",
164
+ "id": "d6876a49-9319-4c24-9bf9-881ea454b967",
165
+ "metadata": Object {
166
+ "attributes": Object {},
167
+ "social-share": Object {
168
+ "image": Object {
169
+ "attribution": "Jon Doe",
170
+ "caption": null,
171
+ "key": "ace/2020-10/920f35b9-023e-44d2-b4de-69dce8587bf7/quintype_website_2020_01_2f2ba42d_7a45_4a60_b4af_7d4758f27f5d_Untitled_presentation.jpg",
172
+ "metadata": Object {
173
+ "file-name": "quintype-website_2020-01_2f2ba42d-7a45-4a60-b4af-7d4758f27f5d_Untitled_presentation.jpg",
174
+ "file-size": 26544,
175
+ "height": 540,
176
+ "mime-type": "image/jpeg",
177
+ "width": 960,
178
+ },
179
+ "url": null,
180
+ },
181
+ "message": null,
182
+ "shareable": false,
183
+ "title": "It pays to be kind: improving workplace culture through kindness",
184
+ },
185
+ },
186
+ "status": "draft",
187
+ "story-elements": Array [
188
+ Object {
189
+ "description": "",
190
+ "family-id": "1b8bcf8e-19cb-4d16-ac0e-bb4f0939dbbf",
191
+ "id": "d3cbfcce-a503-499d-80cd-52fce2215ef3",
192
+ "metadata": Object {},
193
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/d3cbfcce-a503-499d-80cd-52fce2215ef3",
194
+ "subtype": null,
195
+ "text": "Nemo enim ipsam voluptatem quia volup tas sit aspernatur aut odit aut fugit",
196
+ "title": "",
197
+ "type": "title",
198
+ },
199
+ Object {
200
+ "description": "",
201
+ "family-id": "6d5d82b8-f879-476d-84a2-1f62f74acdd5",
202
+ "hyperlink": "https://www.google.com/",
203
+ "id": "a7f79ffa-4be0-4207-a495-a035a020cac3",
204
+ "image-attribution": "Jon Doe",
205
+ "image-metadata": Object {
206
+ "file-name": "quintype-website_2020-01_2f2ba42d-7a45-4a60-b4af-7d4758f27f5d_Untitled_presentation.jpg",
207
+ "file-size": 26544,
208
+ "height": 540,
209
+ "mime-type": "image/jpeg",
210
+ "width": 960,
211
+ },
212
+ "image-s3-key": "ace/2020-10/920f35b9-023e-44d2-b4de-69dce8587bf7/quintype_website_2020_01_2f2ba42d_7a45_4a60_b4af_7d4758f27f5d_Untitled_presentation.jpg",
213
+ "metadata": Object {},
214
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/a7f79ffa-4be0-4207-a495-a035a020cac3",
215
+ "subtype": null,
216
+ "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.",
217
+ "type": "image",
218
+ },
219
+ Object {
220
+ "description": "",
221
+ "family-id": "b9a1fdd8-5727-4e5a-86a6-467922aa155f",
222
+ "id": "2a248f86-3181-4456-9f96-f7e56668fbc1",
223
+ "metadata": Object {},
224
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/2a248f86-3181-4456-9f96-f7e56668fbc1",
225
+ "subtype": null,
226
+ "text": "<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est</p>",
227
+ "title": "",
228
+ "type": "text",
229
+ },
230
+ ],
231
+ "version": 10,
232
+ },
233
+ Object {
234
+ "card-added-at": 1602156035607,
235
+ "card-updated-at": 1602156067786,
236
+ "content-id": "539c1ed1-79e5-4771-a304-60b46d8376c6",
237
+ "content-version-id": "dc523cfa-dcf2-41b5-ab7a-b5c3577e11f7",
238
+ "id": "539c1ed1-79e5-4771-a304-60b46d8376c6",
239
+ "metadata": Object {
240
+ "attributes": Object {},
241
+ "social-share": Object {
242
+ "image": Object {
243
+ "attribution": "Credits: Asif Asharaf",
244
+ "caption": "Saque ipsa quae ab illo inventore veritatis et quip",
245
+ "key": "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
246
+ "metadata": Object {
247
+ "file-name": "seo.jpg",
248
+ "file-size": 228062,
249
+ "height": 900,
250
+ "mime-type": "image/jpeg",
251
+ "width": 1600,
252
+ },
253
+ "url": null,
254
+ },
255
+ "message": null,
256
+ "shareable": false,
257
+ "title": "It pays to be kind: improving workplace culture through kindness",
258
+ },
259
+ },
260
+ "status": "draft",
261
+ "story-elements": Array [
262
+ Object {
263
+ "description": "",
264
+ "family-id": "b8f84eb7-4a91-45ba-a5d3-95d5f48c7772",
265
+ "id": "20db973e-4612-4933-9acd-5a6d4c3d281d",
266
+ "metadata": Object {},
267
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/20db973e-4612-4933-9acd-5a6d4c3d281d",
268
+ "subtype": null,
269
+ "text": "<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est</p>",
270
+ "title": "",
271
+ "type": "text",
272
+ },
273
+ Object {
274
+ "description": "",
275
+ "id": "00000000-0000-0000-0000-000000000000",
276
+ "metadata": Object {
277
+ "promotional-message": true,
278
+ },
279
+ "subtype": null,
280
+ "text": " <p>text <a href=\\"https://ace-web.qtstage.io/\\">promotional</a> message</p>",
281
+ "title": "",
282
+ "type": "text",
283
+ },
284
+ ],
285
+ "version": 2,
286
+ },
287
+ ],
288
+ "comments": null,
289
+ "content-created-at": 1602154991378,
290
+ "content-type": "story",
291
+ "content-updated-at": 1602234199729,
292
+ "contributors": Array [],
293
+ "created-at": 1602234185901,
294
+ "custom-slug": null,
295
+ "customSlotAfterStory": Object {
296
+ "config": Object {
297
+ "targetingId": "",
298
+ },
299
+ "layout": "Leaderboard",
300
+ "layoutLabel": "Leaderboard",
301
+ "type": "ad",
302
+ },
303
+ "entities": Object {},
304
+ "external-id": null,
305
+ "first-published-at": 1671083514919,
306
+ "headline": "It pays to be kind: improving workplace culture through kindness",
307
+ "hero-image-attribution": "Credits: Asif Asharaf",
308
+ "hero-image-caption": "Saque ipsa quae ab illo inventore veritatis et quip",
309
+ "hero-image-hyperlink": "https://www.google.com",
310
+ "hero-image-metadata": Object {
311
+ "file-name": "seo.jpg",
312
+ "file-size": 228062,
313
+ "height": 900,
314
+ "mime-type": "image/jpeg",
315
+ "width": 1600,
316
+ },
317
+ "hero-image-s3-key": "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
318
+ "id": "307e5a1b-5cf0-4321-8193-827b2add174f",
319
+ "is-amp-supported": true,
320
+ "is-live-blog": false,
321
+ "last-published-at": 1602234199516,
322
+ "linked-entities": Array [],
323
+ "linked-story-ids": Array [],
324
+ "metadata": Object {
325
+ "card-share": Object {
326
+ "shareable": false,
327
+ },
328
+ },
329
+ "owner-id": 927927,
330
+ "owner-name": "Pravin Atigre",
331
+ "promotional-message": " <p>text <a href=\\"https://ace-web.qtstage.io/\\">promotional</a> message</p>",
332
+ "publish-at": null,
333
+ "published-at": 1602234199516,
334
+ "publisher-id": 97,
335
+ "push-notification": null,
336
+ "push-notification-title": null,
337
+ "read-time": 2,
338
+ "sections": Array [
339
+ Object {
340
+ "collection": Object {
341
+ "id": 15603,
342
+ "name": "Health",
343
+ "slug": "health",
344
+ },
345
+ "data": null,
346
+ "display-name": "Health",
347
+ "domain-slug": null,
348
+ "id": 11181,
349
+ "name": "Health",
350
+ "parent-id": 38586,
351
+ "section-url": "https://ace-web.qtstage.io/news/health",
352
+ "slug": "health",
353
+ },
354
+ ],
355
+ "seo": Object {
356
+ "claim-reviews": Object {
357
+ "story": null,
358
+ },
359
+ },
360
+ "sequence-no": null,
361
+ "slug": "health/2020/10/08/it-pays-to-be-kind-improving-workplace-culture-through-kindness",
362
+ "status": "published",
363
+ "story-audio": Object {
364
+ "s3-key": "ace/story-audio/2020-10/307e5a1b-5cf0-4321-8193-827b2add174f/.0e6d9a89-3bb7-47b0-8bee-a34b5f75f5e9.mp3",
365
+ },
366
+ "story-content-id": "307e5a1b-5cf0-4321-8193-827b2add174f",
367
+ "story-template": "listicle",
368
+ "story-version-id": "8768d161-6433-4f1e-b8ef-e632d180ede9",
369
+ "storyline-id": null,
370
+ "storyline-title": null,
371
+ "subheadline": "Neque porro quisquam est, qui dolorem ipsum quia dolor sit.",
372
+ "summary": null,
373
+ "tags": Array [
374
+ Object {
375
+ "id": 1421524,
376
+ "meta-description": null,
377
+ "meta-title": null,
378
+ "name": "health",
379
+ "slug": "health",
380
+ "tag-type": "Tag",
381
+ },
382
+ Object {
383
+ "id": 1421525,
384
+ "meta-description": null,
385
+ "meta-title": null,
386
+ "name": "culture",
387
+ "slug": "culture",
388
+ "tag-type": "Tag",
389
+ },
390
+ Object {
391
+ "id": 1421526,
392
+ "meta-description": null,
393
+ "meta-title": null,
394
+ "name": "workplace",
395
+ "slug": "workplace",
396
+ "tag-type": "Tag",
397
+ },
398
+ ],
399
+ "updated-at": 1602234193104,
400
+ "url": "https://ace-web.qtstage.io/health/2020/10/08/it-pays-to-be-kind-improving-workplace-culture-through-kindness",
401
+ "version": 18,
402
+ "votes": Object {},
403
+ "word-count": 232,
404
+ }
405
+ }
406
+ storyElementsConfig={
407
+ Object {
408
+ "also-read": Object {},
409
+ "answer": Object {},
410
+ "blockquote": Object {},
411
+ "blurb": Object {},
412
+ "q-and-a": Object {},
413
+ "question": Object {},
414
+ "quote": Object {},
415
+ "references": Object {},
416
+ "summary": Object {},
417
+ }
418
+ }
419
+ />
420
+ </ContextProvider>
421
+ `;
422
+
423
+ exports[`Listicle Story Templates Should render listicle story template without section tag 1`] = `
424
+ <ContextProvider
425
+ value={
426
+ Object {
427
+ "showSection": false,
428
+ "templateType": "default",
429
+ }
430
+ }
431
+ >
432
+ <ListicleStoryTemplate
433
+ config={
434
+ Object {
435
+ "showSection": false,
436
+ "templateType": "default",
437
+ }
438
+ }
439
+ story={
440
+ Object {
441
+ "access": "subscription",
442
+ "access-level-value": null,
443
+ "alternative": Object {},
444
+ "asana-project-id": null,
445
+ "assignee-id": 927927,
446
+ "assignee-name": "Pravin Atigre",
447
+ "associated-series-collection-ids": Array [],
448
+ "author-id": 927927,
449
+ "author-name": "Pravin Atigre",
450
+ "authors": Array [
451
+ Object {
452
+ "avatar-s3-key": null,
453
+ "avatar-url": "https://lh3.googleusercontent.com/-I9kNTMFkn3E/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rdZeM4LMMdylmULvtrAvmeVF9DmAQ/photo.jpg",
454
+ "bio": "Virat Kohli (Hindi pronunciation: [ʋɪˈɾɑːʈ ˈkoːɦli] (listen); born 5 November 1988) is an Indian international cricketer and the former captain of the Indian national cricket team who plays as a right-handed batsman for Royal Challengers Bangalore in the IPL and for Delhi in Indian domestic cricket. Widely regarded as one of the greatest batsmen of all time,[4] Kohli holds the records for scoring most runs in T20 internationals and in the IPL. In 2020, the International Cricket Council named him the male cricketer of the decade. Kohli has also contributed to a number of India's successes, including winning the 2011 World Cup and the 2013 Champions trophy.",
455
+ "contributor-role": Object {
456
+ "id": 873,
457
+ "name": "Author",
458
+ },
459
+ "id": 927927,
460
+ "name": "Virat Kohli",
461
+ "slug": "pravin-atigre",
462
+ "social": null,
463
+ "twitter-handle": null,
464
+ },
465
+ ],
466
+ "autotags": Array [],
467
+ "breaking-news-linked-story-id": null,
468
+ "bullet-type": "123",
469
+ "canonical-url": null,
470
+ "cards": Array [
471
+ Object {
472
+ "card-added-at": 1602155475842,
473
+ "card-updated-at": 1602234185925,
474
+ "content-id": "aeb377da-eb9f-4013-ae19-fb6fb821e926",
475
+ "content-version-id": "9378abd6-2cec-4bdd-88b2-005cc6d1775f",
476
+ "id": "aeb377da-eb9f-4013-ae19-fb6fb821e926",
477
+ "metadata": Object {
478
+ "attributes": Object {},
479
+ "social-share": Object {
480
+ "image": Object {
481
+ "attribution": "Credits: Asif Asharaf",
482
+ "caption": "Saque ipsa quae ab illo inventore veritatis et quip",
483
+ "key": "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
484
+ "metadata": Object {
485
+ "file-name": "seo.jpg",
486
+ "file-size": 228062,
487
+ "height": 900,
488
+ "mime-type": "image/jpeg",
489
+ "width": 1600,
490
+ },
491
+ "url": null,
492
+ },
493
+ "message": null,
494
+ "shareable": false,
495
+ "title": "It pays to be kind: improving workplace culture through kindness",
496
+ },
497
+ },
498
+ "status": "draft",
499
+ "story-elements": Array [
500
+ Object {
501
+ "description": "",
502
+ "family-id": "d3bf6239-6723-4291-a7d1-6164c808d07d",
503
+ "id": "5ffad09b-7db1-489a-8308-f7d63c745c70",
504
+ "metadata": Object {},
505
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/5ffad09b-7db1-489a-8308-f7d63c745c70",
506
+ "subtype": null,
507
+ "text": "Nemo enim ipsam voluptatem quia volup tas sit aspernatur aut odit aut fugit",
508
+ "title": "",
509
+ "type": "title",
510
+ },
511
+ Object {
512
+ "description": "",
513
+ "family-id": "0a4af70b-2434-4038-8134-87cdc60fc379",
514
+ "id": "f24c83a4-dd3d-47fe-8d05-90f6ada10632",
515
+ "metadata": Object {},
516
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/f24c83a4-dd3d-47fe-8d05-90f6ada10632",
517
+ "subtype": null,
518
+ "text": "<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est</p>",
519
+ "title": "",
520
+ "type": "text",
521
+ },
522
+ ],
523
+ "version": 9,
524
+ },
525
+ Object {
526
+ "card-added-at": 1602155520864,
527
+ "card-updated-at": 1602155725655,
528
+ "content-id": "70988ea9-90a0-42ea-b2b1-1f7374de06e1",
529
+ "content-version-id": "43ff8777-4176-4294-95a3-5aaee8e34537",
530
+ "id": "70988ea9-90a0-42ea-b2b1-1f7374de06e1",
531
+ "metadata": Object {
532
+ "attributes": Object {},
533
+ "social-share": Object {
534
+ "image": Object {
535
+ "attribution": "Credits: Asif Asharaf",
536
+ "caption": "Saque ipsa quae ab illo inventore veritatis et quip",
537
+ "key": "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
538
+ "metadata": Object {
539
+ "file-name": "seo.jpg",
540
+ "file-size": 228062,
541
+ "height": 900,
542
+ "mime-type": "image/jpeg",
543
+ "width": 1600,
544
+ },
545
+ "url": null,
546
+ },
547
+ "message": null,
548
+ "shareable": false,
549
+ "title": "It pays to be kind: improving workplace culture through kindness",
550
+ },
551
+ },
552
+ "status": "draft",
553
+ "story-elements": Array [
554
+ Object {
555
+ "description": "",
556
+ "family-id": "11f060e0-a1aa-4963-9778-24f6b6eca401",
557
+ "id": "82244bcd-c453-41c4-a215-bb038f569375",
558
+ "metadata": Object {},
559
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/82244bcd-c453-41c4-a215-bb038f569375",
560
+ "subtype": null,
561
+ "text": "Nemo enim ipsam voluptatem quia volup tas sit aspernatur aut odit aut fugit",
562
+ "title": "",
563
+ "type": "title",
564
+ },
565
+ Object {
566
+ "description": "",
567
+ "family-id": "a970d458-c7d8-4512-8420-4bf3a4046caf",
568
+ "id": "ae7131f6-450a-4589-9995-812ba5832c58",
569
+ "metadata": Object {},
570
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/ae7131f6-450a-4589-9995-812ba5832c58",
571
+ "subtype": null,
572
+ "text": "<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est</p>",
573
+ "title": "",
574
+ "type": "text",
575
+ },
576
+ ],
577
+ "version": 7,
578
+ },
579
+ Object {
580
+ "card-added-at": 1602155541845,
581
+ "card-updated-at": 1602156067786,
582
+ "content-id": "d6876a49-9319-4c24-9bf9-881ea454b967",
583
+ "content-version-id": "dbfeb570-f9aa-4875-9c3d-f48bf551dd91",
584
+ "id": "d6876a49-9319-4c24-9bf9-881ea454b967",
585
+ "metadata": Object {
586
+ "attributes": Object {},
587
+ "social-share": Object {
588
+ "image": Object {
589
+ "attribution": "Jon Doe",
590
+ "caption": null,
591
+ "key": "ace/2020-10/920f35b9-023e-44d2-b4de-69dce8587bf7/quintype_website_2020_01_2f2ba42d_7a45_4a60_b4af_7d4758f27f5d_Untitled_presentation.jpg",
592
+ "metadata": Object {
593
+ "file-name": "quintype-website_2020-01_2f2ba42d-7a45-4a60-b4af-7d4758f27f5d_Untitled_presentation.jpg",
594
+ "file-size": 26544,
595
+ "height": 540,
596
+ "mime-type": "image/jpeg",
597
+ "width": 960,
598
+ },
599
+ "url": null,
600
+ },
601
+ "message": null,
602
+ "shareable": false,
603
+ "title": "It pays to be kind: improving workplace culture through kindness",
604
+ },
605
+ },
606
+ "status": "draft",
607
+ "story-elements": Array [
608
+ Object {
609
+ "description": "",
610
+ "family-id": "1b8bcf8e-19cb-4d16-ac0e-bb4f0939dbbf",
611
+ "id": "d3cbfcce-a503-499d-80cd-52fce2215ef3",
612
+ "metadata": Object {},
613
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/d3cbfcce-a503-499d-80cd-52fce2215ef3",
614
+ "subtype": null,
615
+ "text": "Nemo enim ipsam voluptatem quia volup tas sit aspernatur aut odit aut fugit",
616
+ "title": "",
617
+ "type": "title",
618
+ },
619
+ Object {
620
+ "description": "",
621
+ "family-id": "6d5d82b8-f879-476d-84a2-1f62f74acdd5",
622
+ "hyperlink": "https://www.google.com/",
623
+ "id": "a7f79ffa-4be0-4207-a495-a035a020cac3",
624
+ "image-attribution": "Jon Doe",
625
+ "image-metadata": Object {
626
+ "file-name": "quintype-website_2020-01_2f2ba42d-7a45-4a60-b4af-7d4758f27f5d_Untitled_presentation.jpg",
627
+ "file-size": 26544,
628
+ "height": 540,
629
+ "mime-type": "image/jpeg",
630
+ "width": 960,
631
+ },
632
+ "image-s3-key": "ace/2020-10/920f35b9-023e-44d2-b4de-69dce8587bf7/quintype_website_2020_01_2f2ba42d_7a45_4a60_b4af_7d4758f27f5d_Untitled_presentation.jpg",
633
+ "metadata": Object {},
634
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/a7f79ffa-4be0-4207-a495-a035a020cac3",
635
+ "subtype": null,
636
+ "title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.",
637
+ "type": "image",
638
+ },
639
+ Object {
640
+ "description": "",
641
+ "family-id": "b9a1fdd8-5727-4e5a-86a6-467922aa155f",
642
+ "id": "2a248f86-3181-4456-9f96-f7e56668fbc1",
643
+ "metadata": Object {},
644
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/2a248f86-3181-4456-9f96-f7e56668fbc1",
645
+ "subtype": null,
646
+ "text": "<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est</p>",
647
+ "title": "",
648
+ "type": "text",
649
+ },
650
+ ],
651
+ "version": 10,
652
+ },
653
+ Object {
654
+ "card-added-at": 1602156035607,
655
+ "card-updated-at": 1602156067786,
656
+ "content-id": "539c1ed1-79e5-4771-a304-60b46d8376c6",
657
+ "content-version-id": "dc523cfa-dcf2-41b5-ab7a-b5c3577e11f7",
658
+ "id": "539c1ed1-79e5-4771-a304-60b46d8376c6",
659
+ "metadata": Object {
660
+ "attributes": Object {},
661
+ "social-share": Object {
662
+ "image": Object {
663
+ "attribution": "Credits: Asif Asharaf",
664
+ "caption": "Saque ipsa quae ab illo inventore veritatis et quip",
665
+ "key": "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
666
+ "metadata": Object {
667
+ "file-name": "seo.jpg",
668
+ "file-size": 228062,
669
+ "height": 900,
670
+ "mime-type": "image/jpeg",
671
+ "width": 1600,
672
+ },
673
+ "url": null,
674
+ },
675
+ "message": null,
676
+ "shareable": false,
677
+ "title": "It pays to be kind: improving workplace culture through kindness",
678
+ },
679
+ },
680
+ "status": "draft",
681
+ "story-elements": Array [
682
+ Object {
683
+ "description": "",
684
+ "family-id": "b8f84eb7-4a91-45ba-a5d3-95d5f48c7772",
685
+ "id": "20db973e-4612-4933-9acd-5a6d4c3d281d",
686
+ "metadata": Object {},
687
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/20db973e-4612-4933-9acd-5a6d4c3d281d",
688
+ "subtype": null,
689
+ "text": "<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est</p>",
690
+ "title": "",
691
+ "type": "text",
692
+ },
693
+ Object {
694
+ "description": "",
695
+ "id": "00000000-0000-0000-0000-000000000000",
696
+ "metadata": Object {
697
+ "promotional-message": true,
698
+ },
699
+ "subtype": null,
700
+ "text": " <p>text <a href=\\"https://ace-web.qtstage.io/\\">promotional</a> message</p>",
701
+ "title": "",
702
+ "type": "text",
703
+ },
704
+ ],
705
+ "version": 2,
706
+ },
707
+ ],
708
+ "comments": null,
709
+ "content-created-at": 1602154991378,
710
+ "content-type": "story",
711
+ "content-updated-at": 1602234199729,
712
+ "contributors": Array [],
713
+ "created-at": 1602234185901,
714
+ "custom-slug": null,
715
+ "customSlotAfterStory": Object {
716
+ "config": Object {
717
+ "targetingId": "",
718
+ },
719
+ "layout": "Leaderboard",
720
+ "layoutLabel": "Leaderboard",
721
+ "type": "ad",
722
+ },
723
+ "entities": Object {},
724
+ "external-id": null,
725
+ "first-published-at": 1671083514919,
726
+ "headline": "It pays to be kind: improving workplace culture through kindness",
727
+ "hero-image-attribution": "Credits: Asif Asharaf",
728
+ "hero-image-caption": "Saque ipsa quae ab illo inventore veritatis et quip",
729
+ "hero-image-hyperlink": "https://www.google.com",
730
+ "hero-image-metadata": Object {
731
+ "file-name": "seo.jpg",
732
+ "file-size": 228062,
733
+ "height": 900,
734
+ "mime-type": "image/jpeg",
735
+ "width": 1600,
736
+ },
737
+ "hero-image-s3-key": "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
738
+ "id": "307e5a1b-5cf0-4321-8193-827b2add174f",
739
+ "is-amp-supported": true,
740
+ "is-live-blog": false,
741
+ "last-published-at": 1602234199516,
742
+ "linked-entities": Array [],
743
+ "linked-story-ids": Array [],
744
+ "metadata": Object {
745
+ "card-share": Object {
746
+ "shareable": false,
747
+ },
748
+ },
749
+ "owner-id": 927927,
750
+ "owner-name": "Pravin Atigre",
751
+ "promotional-message": " <p>text <a href=\\"https://ace-web.qtstage.io/\\">promotional</a> message</p>",
752
+ "publish-at": null,
753
+ "published-at": 1602234199516,
754
+ "publisher-id": 97,
755
+ "push-notification": null,
756
+ "push-notification-title": null,
757
+ "read-time": 2,
758
+ "sections": Array [
759
+ Object {
760
+ "collection": Object {
761
+ "id": 15603,
762
+ "name": "Health",
763
+ "slug": "health",
764
+ },
765
+ "data": null,
766
+ "display-name": "Health",
767
+ "domain-slug": null,
768
+ "id": 11181,
769
+ "name": "Health",
770
+ "parent-id": 38586,
771
+ "section-url": "https://ace-web.qtstage.io/news/health",
772
+ "slug": "health",
773
+ },
774
+ ],
775
+ "seo": Object {
776
+ "claim-reviews": Object {
777
+ "story": null,
778
+ },
779
+ },
780
+ "sequence-no": null,
781
+ "slug": "health/2020/10/08/it-pays-to-be-kind-improving-workplace-culture-through-kindness",
782
+ "status": "published",
783
+ "story-audio": Object {
784
+ "s3-key": "ace/story-audio/2020-10/307e5a1b-5cf0-4321-8193-827b2add174f/.0e6d9a89-3bb7-47b0-8bee-a34b5f75f5e9.mp3",
785
+ },
786
+ "story-content-id": "307e5a1b-5cf0-4321-8193-827b2add174f",
787
+ "story-template": "listicle",
788
+ "story-version-id": "8768d161-6433-4f1e-b8ef-e632d180ede9",
789
+ "storyline-id": null,
790
+ "storyline-title": null,
791
+ "subheadline": "Neque porro quisquam est, qui dolorem ipsum quia dolor sit.",
792
+ "summary": null,
793
+ "tags": Array [
794
+ Object {
795
+ "id": 1421524,
796
+ "meta-description": null,
797
+ "meta-title": null,
798
+ "name": "health",
799
+ "slug": "health",
800
+ "tag-type": "Tag",
801
+ },
802
+ Object {
803
+ "id": 1421525,
804
+ "meta-description": null,
805
+ "meta-title": null,
806
+ "name": "culture",
807
+ "slug": "culture",
808
+ "tag-type": "Tag",
809
+ },
810
+ Object {
811
+ "id": 1421526,
812
+ "meta-description": null,
813
+ "meta-title": null,
814
+ "name": "workplace",
815
+ "slug": "workplace",
816
+ "tag-type": "Tag",
817
+ },
818
+ ],
819
+ "updated-at": 1602234193104,
820
+ "url": "https://ace-web.qtstage.io/health/2020/10/08/it-pays-to-be-kind-improving-workplace-culture-through-kindness",
821
+ "version": 18,
822
+ "votes": Object {},
823
+ "word-count": 232,
824
+ }
825
+ }
826
+ storyElementsConfig={
827
+ Object {
828
+ "also-read": Object {},
829
+ "answer": Object {},
830
+ "blockquote": Object {},
831
+ "blurb": Object {},
832
+ "q-and-a": Object {},
833
+ "question": Object {},
834
+ "quote": Object {},
835
+ "references": Object {},
836
+ "summary": Object {},
837
+ }
838
+ }
839
+ />
840
+ </ContextProvider>
841
+ `;