@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,2368 @@
1
+ function createUUID() {
2
+ var dt = new Date().getTime();
3
+ var uuid = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function(c) {
4
+ var r = (dt + Math.random() * 16) % 16 | 0;
5
+ dt = Math.floor(dt / 16);
6
+ return (c === "x" ? r : (r & 0x3) | 0x8).toString(16);
7
+ });
8
+ return uuid;
9
+ }
10
+
11
+ export const dummyStory = {
12
+ access: "subscription",
13
+ "updated-at": 1564650013782,
14
+ seo: {
15
+ "claim-reviews": {
16
+ story: null
17
+ }
18
+ },
19
+ "assignee-id": 123981,
20
+ "author-name": "Ravigopal Kesari",
21
+ tags: [
22
+ {
23
+ id: 163455,
24
+ name: "politics",
25
+ "meta-description": null,
26
+ slug: "politics",
27
+ "tag-type": "Tag"
28
+ },
29
+ {
30
+ id: 169510,
31
+ name: "review",
32
+ "meta-description": null,
33
+ slug: "review",
34
+ "tag-type": "Tag"
35
+ }
36
+ ],
37
+ customSlotAfterStory: {
38
+ config: { targetingId: "" },
39
+ layout: "Leaderboard",
40
+ layoutLabel: "Leaderboard",
41
+ type: "ad"
42
+ },
43
+ headline: "Ready Player One review \u2013 Spielberg\u00A0",
44
+ "storyline-id": null,
45
+ votes: {},
46
+ "story-content-id": "a3561065-11ce-4281-9d86-325934aa2146",
47
+ slug: "recent-stories/news/ready-player-one-review-spielberg-spins-a-dizzying-vr-yarn",
48
+ "linked-stories": {
49
+ "2d0008f7-768f-4667-822f-cb531d9627f4": {
50
+ "author-name": "Feed Migrator",
51
+ headline: "How is the coronavirus impacting people with disabilities?",
52
+ "story-content-id": "2d0008f7-768f-4667-822f-cb531d9627f4",
53
+ slug: "coronavirus/how-is-the-coronavirus-impacting-people-with-disabilities",
54
+ sections: [
55
+ {
56
+ "domain-slug": null,
57
+ slug: "coronavirus",
58
+ name: "Coronavirus",
59
+ "section-url": "https://ace-web.qtstage.io/anything/coronavirus",
60
+ id: 42239,
61
+ "parent-id": null,
62
+ "display-name": "Coronavirus",
63
+ collection: {
64
+ slug: "coronavirus",
65
+ name: "Coronavirus",
66
+ id: 92836
67
+ },
68
+ data: null
69
+ }
70
+ ],
71
+ "hero-image-metadata": {
72
+ "original-url": "https://www.aljazeera.com/mritems/Images/2020/4/19/f90b71cdf10141ff9913b72bcfd29768_18.jpg"
73
+ },
74
+ "hero-image-s3-key": "ace/2020-04/9adec2ac-d37c-496f-abcc-98309a4bb356/f90b71cdf10141ff9913b72bcfd29768_18.jpg",
75
+ url: "https://ace-web.qtstage.io/anything/coronavirus/how-is-the-coronavirus-impacting-people-with-disabilities",
76
+ "content-updated-at": 1587491154824,
77
+ "author-id": 934395,
78
+ "first-published-at": 1671083514919,
79
+ authors: [
80
+ {
81
+ id: 934395,
82
+ name: "Feed Migrator",
83
+ slug: "feed-migrator",
84
+ "avatar-url": null,
85
+ "avatar-s3-key": null,
86
+ "twitter-handle": null,
87
+ bio: null
88
+ }
89
+ ]
90
+ }
91
+ },
92
+ "last-published-at": 1564650017054,
93
+ subheadline:
94
+ "This spectacular gaming ride whizzes through a limitless futurescape – while also taking a puzzling detour to the shiny",
95
+ alternative: {
96
+ home: {
97
+ default: {
98
+ headline: "Movie Review: Why Ready Player One is Amazing, immerses viewers ",
99
+ "hero-image": {
100
+ "hero-image-metadata": {
101
+ width: 1080,
102
+ height: 1330,
103
+ "focus-point": [525, 207]
104
+ },
105
+ "hero-image-attribution": "attribution",
106
+ "hero-image-s3-key":
107
+ "ace/2018-01/7f028fc9-48fa-4e6c-b2b3-8baf1e6e8928/22520141_862918130543643_474831853139210771_o.jpg",
108
+ "hero-image-caption": "",
109
+ "hero-image-url":
110
+ "https://thumbor-stg.assettype.com/ace/2018-01/7f028fc9-48fa-4e6c-b2b3-8baf1e6e8928/22520141_862918130543643_474831853139210771_o.jpg",
111
+ "temporary-hero-image-key": null
112
+ }
113
+ }
114
+ }
115
+ },
116
+ sections: [
117
+ {
118
+ "domain-slug": null,
119
+ slug: "news",
120
+ name: "News",
121
+ "section-url": "https://ace-web.qtstage.io/section/news",
122
+ id: 5670,
123
+ "parent-id": 5773,
124
+ "display-name": "News ",
125
+ collection: {
126
+ slug: "news",
127
+ name: "News",
128
+ id: 3795
129
+ },
130
+ data: null
131
+ },
132
+ {
133
+ "domain-slug": null,
134
+ slug: "recent-stories",
135
+ name: "Recent stories",
136
+ "section-url": "https://ace-web.qtstage.io/anything/recent-stories",
137
+ id: 5773,
138
+ "parent-id": null,
139
+ "display-name": "Recent stories",
140
+ collection: {
141
+ slug: "recent",
142
+ name: "Recent stories",
143
+ id: 2760
144
+ },
145
+ data: null
146
+ },
147
+ {
148
+ "domain-slug": null,
149
+ slug: "film",
150
+ name: "Film",
151
+ "section-url": "https://ace-web.qtstage.io/section/film",
152
+ id: 5749,
153
+ "parent-id": 5670,
154
+ "display-name": "Film Display name",
155
+ collection: {
156
+ slug: "film-manual-collection",
157
+ name: "Film",
158
+ id: 2725
159
+ },
160
+ data: null
161
+ }
162
+ ],
163
+ "story-audio": {
164
+ "s3-key": "story-audio/ace/2019-08/a3561065-11ce-4281-9d86-325934aa2146/12132634-d337-471b-9e92-1ce7b4d15bfb.mp3"
165
+ },
166
+ "read-time": 2,
167
+ "access-level-value": 23,
168
+ "content-created-at": 1524115986915,
169
+ "owner-name": "Ravigopal Kesari",
170
+ "custom-slug": null,
171
+ "push-notification": null,
172
+ "publisher-id": 97,
173
+ "hero-image-hyperlink": "https://www.google.com",
174
+ "hero-image-metadata": {
175
+ width: 1920,
176
+ height: 1080,
177
+ "mime-type": "image/png",
178
+ "file-size": 587085,
179
+ "file-name": "ready-player-one-hd-wallpapers-70749-6537851.png",
180
+ "focus-point": [883, 411]
181
+ },
182
+ comments: null,
183
+ "word-count": 323,
184
+ entities: {},
185
+ "published-at": 1564650017054,
186
+ "is-live-blog": false,
187
+ "breaking-news-linked-story-id": null,
188
+ "storyline-title": null,
189
+ summary:
190
+ "Passport is authentication middleware for Node. It is designed to serve a singular purpose: authenticate requests. When writing modules, encapsulation is a virtue, so Passport delegates all other functionality to the application. This separation of concerns keeps code clean and maintainable, and makes Passport extremely easy to integrate into an application.",
191
+ "push-notification-title": null,
192
+ "external-id": null,
193
+ "canonical-url": null,
194
+ "is-amp-supported": false,
195
+ autotags: [],
196
+ "linked-entities": [],
197
+ status: "published",
198
+ "hero-image-attribution": "Quis Nostrud",
199
+ "bullet-type": "123",
200
+ id: createUUID(),
201
+ "hero-image-s3-key":
202
+ "ace/2018-01/7f028fc9-48fa-4e6c-b2b3-8baf1e6e8928/22520141_862918130543643_474831853139210771_o.jpg",
203
+ contributors: [],
204
+ "associated-series-collection-ids": [],
205
+ cards: [
206
+ {
207
+ "story-elements": [
208
+ {
209
+ description: "",
210
+ "embed-js":
211
+ "PGlmcmFtZSBzcmM9Jy8vcGxheWVycy5icmlnaHRjb3ZlLm5ldC82MTM5ODI1NDc4MDAxL2RlZmF1bHRfZGVmYXVsdC9pbmRleC5odG1sP3ZpZGVvSWQ9NjMxOTg4MDI0NDExMicgYWxsb3dmdWxsc2NyZWVuIGZyYW1lYm9yZGVyPTA+PC9pZnJhbWU+",
212
+ "page-url": "/story/b7b6ecab-2b4f-4dc1-b04a-0b0ec76a50c4/element/f4dc8f57-8a79-4b96-bc4b-7c4c5d481373",
213
+ type: "jsembed",
214
+ "family-id": "96bea74a-8fed-43f0-9624-a5c9686e1062",
215
+ title: "",
216
+ id: "f4dc8f57-8a79-4b96-bc4b-7c4c5d481373",
217
+ metadata: {},
218
+ subtype: null
219
+ },
220
+ {
221
+ description: "",
222
+ "page-url": "/story/b7b6ecab-2b4f-4dc1-b04a-0b0ec76a50c4/element/2cfc6b4e-85fb-47b0-ae4e-580a650372f7",
223
+ type: "external-file",
224
+ "family-id": "0148ec01-3c7c-49ee-8a3f-db8ca4907dc8",
225
+ title: "",
226
+ "file-type": "video",
227
+ id: "2cfc6b4e-85fb-47b0-ae4e-580a650372f7",
228
+ url: null,
229
+ "content-type": "video/brightcove",
230
+ metadata: {
231
+ "account-id": "1752604059001",
232
+ "player-id": "default",
233
+ "player-media": "default",
234
+ "video-id": "6156696074001",
235
+ "embed-code":
236
+ "aHR0cHM6Ly9wbGF5ZXJzLmJyaWdodGNvdmUubmV0LzI3NjY2MjQ5MDUwMDEvZGVmYXVsdF9kZWZhdWx0L2luZGV4Lmh0bWw/dmlkZW9JZD02MzIzMDIxNjcxMTEy",
237
+ "player-url": "//players.brightcove.net/2766624905001/default_default/index.html?videoId=6323021671112"
238
+ },
239
+ subtype: "brightcove-video"
240
+ },
241
+ {
242
+ description: "",
243
+ "embed-js":
244
+ "PHNjcmlwdCBzcmM9Imh0dHBzOi8vZ2VvLmRhaWx5bW90aW9uLmNvbS9wbGF5ZXIveDc4NTlBLmpzIiBkYXRhLXZpZGVvPSJ4ODRzaDg3Ij48L3NjcmlwdD4=",
245
+ "page-url": "/story/88553fe8-640b-4023-90de-d82e4843d7e5/element/ccbe1571-6b25-4f1d-aea0-135622d378e3",
246
+ type: "jsembed",
247
+ "family-id": "2a419ba5-064d-44c9-b5af-59f284f4c4b1",
248
+ title: "",
249
+ id: "ccbe1571-6b25-4f1d-aea0-135622d378e3",
250
+ metadata: {
251
+ "video-id": "xjzije",
252
+ "dailymotion-url": "https://www.dailymotion.com/video/xjzije",
253
+ provider: "dailymotion-video",
254
+ "player-id": "x7859A"
255
+ },
256
+ subtype: "dailymotion-embed-script"
257
+ },
258
+ {
259
+ description: "",
260
+ "page-url": "/story/191d390f-7f10-422a-86b5-cf589a0bac08/element/813676c9-6606-4fa9-a25a-70b9910e4631",
261
+ type: "text",
262
+ "family-id": "9309e866-a7e2-475d-b41d-e285c9029b9b",
263
+ title: "",
264
+ id: "813676c9-6606-4fa9-a25a-70b9910e4631",
265
+ metadata: {
266
+ content: "Quote: Rajasthan Chief Minister Ashok",
267
+ attribution: "Ashok"
268
+ },
269
+ subtype: "quote",
270
+ text:
271
+ '<div><blockquote>Quote: Rajasthan Chief Minister Ashok</blockquote><span class="attribution">Ashok</span></div>'
272
+ },
273
+ {
274
+ description: "",
275
+ "page-url": "/story/191d390f-7f10-422a-86b5-cf589a0bac08/element/9ee341b5-464a-4d91-a567-258a7cc90db2",
276
+ type: "title",
277
+ "family-id": "75bc3d37-489a-4e28-b7a0-3831aafe2bd5",
278
+ title: "",
279
+ id: "9ee341b5-464a-4d91-a567-258a7cc90db2",
280
+ metadata: {},
281
+ subtype: null,
282
+ text: "Title element"
283
+ },
284
+
285
+ {
286
+ description: "",
287
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/c529557b-a4f5-4363-ba3f-7ac0eb14f299",
288
+ type: "text",
289
+ "family-id": "2b7c81f0-98f6-416c-9692-90ba504c9385",
290
+ title: "",
291
+ id: "c529557b-a4f5-4363-ba3f-7ac0eb14f299",
292
+ metadata: {},
293
+ subtype: null,
294
+ text:
295
+ '<p><a href="https://www.theguardian.com/technology/virtual-reality">Virtual reality</a> is the air guitar solo of modern cinema: a frenetic imagined activity in a made-up world that exists one level below the already made-up world of the story. <a href="https://www.theguardian.com/film/stevenspielberg">Steven Spielberg</a> 2019s <a href="https://www.theguardian.com/film/ready-player-one">Ready Player One</a>.</p>'
296
+ },
297
+ {
298
+ description: "",
299
+ "page-url": "/story/49ed61fb-647e-4d23-9097-3c5088cc3fa7/element/d08cb2d1-0316-4af3-ad93-192824111745",
300
+ type: "text",
301
+ "family-id": "7e42ab53-fb73-49e9-b0fe-51a889cd3f97",
302
+ title: "",
303
+ id: "d08cb2d1-0316-4af3-ad93-192824111745",
304
+ metadata: {
305
+ "cta-title": "CTA text button",
306
+ "cta-url": "https://www.google.com",
307
+ "open-in-new-tab": true,
308
+ "no-follow": true
309
+ },
310
+ subtype: "cta",
311
+ text:
312
+ '<a class="cta-anchor" href="https://www.google.com" target="_blank" rel="nofollow"><span class="cta-text">CTA text button</span></a>'
313
+ },
314
+ {
315
+ description: "",
316
+ "embed-js":
317
+ "PGlmcmFtZSBmcmFtZWJvcmRlcj0iMCIgd2lkdGg9IjY0MCIgaGVpZ2h0PSIzNjAiIHNyYz0iaHR0cHM6Ly93d3cuZGFpbHltb3Rpb24uY29tL2VtYmVkL3ZpZGVvL3hlZzRjNCIgYWxsb3dmdWxsc2NyZWVuIGFsbG93PSJhdXRvcGxheSI+PC9pZnJhbWU+",
318
+ "page-url": "/story/6045077d-e166-4423-9505-fd52c8180429/element/2528c79d-9f8a-400c-970f-14685bb547ab",
319
+ type: "jsembed",
320
+ "family-id": "6aee389b-6d0f-4de2-9a7d-07d36c12ac13",
321
+ title: "",
322
+ id: "2528c79d-9f8a-400c-970f-14685bb547ab",
323
+ metadata: {
324
+ "video-id": "xeg4c4",
325
+ "dailymotion-url": "https://www.dailymotion.com/video/xeg4c4",
326
+ provider: "dailymotion-video"
327
+ },
328
+ subtype: "dailymotion-video"
329
+ },
330
+ {
331
+ description: "",
332
+ "page-url": "/story/7155b5c2-80a4-4922-bdf1-73f1ff04311e/element/2f648c29-ef8f-442c-903a-263f82e631dd",
333
+ type: "file",
334
+ "family-id": "95bf1052-d663-446d-ace7-d014325e0027",
335
+ title: "",
336
+ id: "2f648c29-ef8f-442c-903a-263f82e631dd",
337
+ "file-name": "document__7_ (1).docx",
338
+ url:
339
+ "https://thumbor-stg.assettype.com/ace/2019-08/21f3a19b-1d98-46bc-95e3-a5bdc9045ae9/document__7___1_.docx",
340
+ "s3-key": "ace/2019-08/21f3a19b-1d98-46bc-95e3-a5bdc9045ae9/document__7___1_.docx",
341
+ "content-type": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
342
+ metadata: {
343
+ "file-size": 8209
344
+ },
345
+ subtype: "attachment"
346
+ },
347
+ {
348
+ description: "",
349
+ "page-url": "/story/a9068be5-70ce-4d55-86d0-687546f921ea/element/62393c55-50ed-4310-81c2-01cc0ef17446",
350
+ type: "file",
351
+ "family-id": "591f90c3-e98e-43dc-8509-9f11f5335af6",
352
+ title: "",
353
+ id: "62393c55-50ed-4310-81c2-01cc0ef17446",
354
+ "file-name": "resume-samples.pdf",
355
+ url: "https://thumbor-stg.assettype.com/ace/2019-07/6dcf2021-615b-43e6-85f3-21acb8953cea/resume_samples.pdf",
356
+ "s3-key": "ace/2019-07/6dcf2021-615b-43e6-85f3-21acb8953cea/resume_samples.pdf",
357
+ "content-type": "application/pdf",
358
+ metadata: {
359
+ "file-size": 301808
360
+ },
361
+ subtype: "attachment"
362
+ },
363
+ {
364
+ "page-url": "/story/ed8a181b-4750-48b9-967e-83f29416ee2a/element/e2478f89-edab-44c8-a7df-6c6c84399c82",
365
+ type: "text",
366
+ "family-id": "481b06ad-edd4-45c1-b8bf-7996dfe0667e",
367
+ title: "",
368
+ id: "e2478f89-edab-44c8-a7df-6c6c84399c82",
369
+ metadata: {
370
+ content: "The human eye can distinguish around 10 million different colors!",
371
+ attribution:
372
+ "Color processing begins at a very early level in the visual system (even within the retina) through initial color opponent mechanisms."
373
+ },
374
+ subtype: "bigfact",
375
+ text:
376
+ '<div><div class="bigfact-title">The human eye can distinguish around 10 million different colors!</div><div class="bigfact-description">Color processing begins at a very early level in the visual system (even within the retina) through initial color opponent mechanisms.</div></div>'
377
+ },
378
+ {
379
+ description: "",
380
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/d42210d4-4c37-475c-ac6e-414821ad2e57",
381
+ type: "youtube-video",
382
+ "family-id": "43f1bf4c-2144-4f86-b36e-d910ff76eb8d",
383
+ title: "",
384
+ id: "d42210d4-4c37-475c-ac6e-414821ad2e57",
385
+ url: "https://www.youtube.com/watch?v=AST2-4db4ic&feature=youtu.be",
386
+ "embed-url": "https://www.youtube.com/embed/AST2-4db4ic",
387
+ metadata: {},
388
+ subtype: null
389
+ },
390
+ {
391
+ description: "",
392
+ "embed-js":
393
+ "PGlmcmFtZSBmcmFtZWJvcmRlcj0iMCIgd2lkdGg9IjQ4MCIgaGVpZ2h0PSIyNzAiIHNyYz0iaHR0cHM6Ly93d3cuZGFpbHltb3Rpb24uY29tL2VtYmVkL3ZpZGVvL3g1dmxhOGwiIGFsbG93ZnVsbHNjcmVlbiBhbGxvdz0iYXV0b3BsYXkiPjwvaWZyYW1lPg==",
394
+ "page-url": "/story/d52a62c4-bb41-48c8-abd2-6f063c680506/element/c0e49d11-bd5c-4313-a3c8-e276cdf86e9a",
395
+ type: "jsembed",
396
+ "family-id": "94b2feaf-aed2-4e31-b450-5d02b0396d26",
397
+ title: "",
398
+ id: "c0e49d11-bd5c-4313-a3c8-e276cdf86e9a",
399
+ metadata: {
400
+ "dailymotion-url": "https://www.dailymotion.com/video/x5vla8l",
401
+ provider: "dailymotion-video",
402
+ "video-id": "x5vla8l"
403
+ },
404
+ subtype: "dailymotion-video"
405
+ },
406
+ {
407
+ description: "",
408
+ "embed-js":
409
+ "PGJsb2NrcXVvdGUgY2xhc3M9InR3aXR0ZXItdHdlZXQiPjxwIGxhbmc9ImVuIiBkaXI9Imx0ciI+T3VyIHB1cHBpZXMganVzdCBoYWQgdGhlIGJlc3QuIGRheS4gZXZlci48YnI+PGJyPlRoZXkgZ290IHRvIGV4cGxvcmUgdGhlIDxhIGhyZWY9Imh0dHBzOi8vdHdpdHRlci5jb20vR2VvcmdpYUFxdWFyaXVtP3JlZl9zcmM9dHdzcmMlNUV0ZnciPkBHZW9yZ2lhQXF1YXJpdW08L2E+IHdoaWxlIGl0IGlzIGNsb3NlZCB0byB0aGUgcHVibGljLiBUaGV5IG1hZGUgYWxsIHNvcnRzIG9mIGV4Y2l0aW5nIGRpc2NvdmVyaWVzIGFuZCBsb3RzIG9mIG5ldyBmcmllbmRzISA8YSBocmVmPSJodHRwczovL3QuY28vZjBpSFhmcTNBRiI+cGljLnR3aXR0ZXIuY29tL2YwaUhYZnEzQUY8L2E+PC9wPiZtZGFzaDsgQXRsYW50YSBIdW1hbmUgKEBhdGxhbnRhaHVtYW5lKSA8YSBocmVmPSJodHRwczovL3R3aXR0ZXIuY29tL2F0bGFudGFodW1hbmUvc3RhdHVzLzEyNDMyMTg4MzI1ODE0NDc2ODM/cmVmX3NyYz10d3NyYyU1RXRmdyI+TWFyY2ggMjYsIDIwMjA8L2E+PC9ibG9ja3F1b3RlPgo8c2NyaXB0IGFzeW5jIHNyYz0iaHR0cHM6Ly9wbGF0Zm9ybS50d2l0dGVyLmNvbS93aWRnZXRzLmpzIiBjaGFyc2V0PSJ1dGYtOCI+PC9zY3JpcHQ+Cg==",
410
+ "page-url": "/story/1cd537ed-a30f-44c4-ab47-9037364df994/element/92b1c15c-1a3c-40eb-92cb-b5e1f0170c85",
411
+ type: "jsembed",
412
+ "family-id": "295bcd70-a9b8-453d-8f7f-b7a577380db8",
413
+ title: "",
414
+ id: "92b1c15c-1a3c-40eb-92cb-b5e1f0170c85",
415
+ metadata: {
416
+ "tweet-url": "https://twitter.com/atlantahumane/status/1243218832581447683",
417
+ provider: "twitter",
418
+ "tweet-id": "1243218832581447683"
419
+ },
420
+ subtype: "tweet"
421
+ },
422
+ {
423
+ description: "",
424
+ "embed-js":
425
+ "PGJsb2NrcXVvdGUgY2xhc3M9InR3aXR0ZXItdHdlZXQiPjxwIGxhbmc9ImVuIiBkaXI9Imx0ciI+Qm90aCA8YSBocmVmPSJodHRwczovL3R3aXR0ZXIuY29tL1NoYXNoaVRoYXJvb3I/cmVmX3NyYz10d3NyYyU1RXRmdyI+QFNoYXNoaVRoYXJvb3I8L2E+IGFuZCBvdXIgUE0gPGEgaHJlZj0iaHR0cHM6Ly90d2l0dGVyLmNvbS9uYXJlbmRyYW1vZGk/cmVmX3NyYz10d3NyYyU1RXRmdyI+QG5hcmVuZHJhbW9kaTwvYT4gaGF2ZSBzb21ldGhpbmcgaW4gY29tbW9uLiBPbmUgc3BlYWtzIGluIHN1Y2ggaGlnaCBFbmdsaXNoIGFuZCBvbmUgc3BlYWtzIG9uIHN1Y2ggSGlnaCBIaW5kaSB0aGF0IHZlcnkgZmV3IHBlcmNlbnRhZ2Ugb2YgdGhlIHBvcHVsYXRpb24gdW5kZXJzdGFuZCBpdC4g8J+YgPCfmIk8L3A+Jm1kYXNoOyBGYXJhaCBLaGFuIChARmFyYWhLaGFuQWxpKSA8YSBocmVmPSJodHRwczovL3R3aXR0ZXIuY29tL0ZhcmFoS2hhbkFsaS9zdGF0dXMvMTI2MDI0MjI0NTU3NzUxMDkxNj9yZWZfc3JjPXR3c3JjJTVFdGZ3Ij5NYXkgMTIsIDIwMjA8L2E+PC9ibG9ja3F1b3RlPiA8c2NyaXB0IGFzeW5jIHNyYz0iaHR0cHM6Ly9wbGF0Zm9ybS50d2l0dGVyLmNvbS93aWRnZXRzLmpzIiBjaGFyc2V0PSJ1dGYtOCI+PC9zY3JpcHQ+",
426
+ "page-url": "/story/403f862a-703a-4c99-9930-b79a5dfb1775/element/3ea4a656-e20b-4ed3-ba8f-58874b5e8715",
427
+ type: "jsembed",
428
+ "family-id": "b17777d5-73ac-4521-a8c1-7468667d89e9",
429
+ title: "",
430
+ id: "3ea4a656-e20b-4ed3-ba8f-58874b5e8715",
431
+ metadata: {},
432
+ subtype: null
433
+ },
434
+ {
435
+ description: "",
436
+ "image-metadata": {
437
+ width: 6016,
438
+ height: 4016,
439
+ "mime-type": "image/jpeg",
440
+ "focus-point": [2741, 1930]
441
+ },
442
+ "page-url": "/story/560b39d9-ae5b-44ef-acc7-04db4472b4f8/element/6c6cf4a8-6700-4829-8076-88373a1436b1",
443
+ type: "image",
444
+ "family-id": "286afa67-910e-45aa-a795-d13508726663",
445
+ "image-attribution": "Quintype Media Gallery",
446
+ title: "Nature as it's best",
447
+ id: "6c6cf4a8-6700-4829-8076-88373a1436b1",
448
+ "image-s3-key": "demo/2018-11/b1fa99ff-b05d-464b-97b9-83cd8f2bf65d/2072.jpg",
449
+ metadata: {},
450
+ subtype: null,
451
+ hyperlink: "https://www.google.com/"
452
+ },
453
+ {
454
+ description: "",
455
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/4abd5e1d-4f02-433a-af48-2733a63682b9",
456
+ type: "composite",
457
+ "family-id": "aa26b0a8-f7e2-4466-a1ee-75cfc54c69d1",
458
+ "story-elements": [
459
+ {
460
+ description: "",
461
+ title: "",
462
+ subtype: null,
463
+ metadata: {
464
+ description:
465
+ "In the year 2045, people can escape their harsh reality in the OASIS, an immersive virtual world where you can go anywhere, do anything, be anyone-the only limits are your own imagination. OASIS creator James Halliday left his immense fortune and control of the Oasis to the winner of a contest designed to find a worthy heir. When unlikely hero Wade Watts conquers the first challenge of the reality-bending treasure hunt, he and his friends-known as the High Five-are hurled into a fantastical universe of discovery and danger to save the OASIS and their world.",
466
+ url: "https://www.rottentomatoes.com/m/ready_player_one/",
467
+ name: "Ready player One review from rotten tomatoes"
468
+ },
469
+ text:
470
+ '<div><p>Ready player One review from rotten tomatoes</p><p><a href="https://www.rottentomatoes.com/m/ready_player_one/">In the year 2045, people can escape their harsh reality in the OASIS, an immersive virtual world where you can go anywhere, do anything, be anyone-the only limits are your own imagination. OASIS creator James Halliday left his immense fortune and control of the Oasis to the winner of a contest designed to find a worthy heir. When unlikely hero Wade Watts conquers the first challenge of the reality-bending treasure hunt, he and his friends-known as the High Five-are hurled into a fantastical universe of discovery and danger to save the OASIS and their world.</a></p></div>',
471
+ id: "47afb0c6-aa50-446c-8e55-c10c604c5246",
472
+ "family-id": "6b236f36-ce8a-4f9a-b70e-844367f13af0",
473
+ type: "text"
474
+ }
475
+ ],
476
+ title: "",
477
+ id: "4abd5e1d-4f02-433a-af48-2733a63682b9",
478
+ metadata: {},
479
+ subtype: "references"
480
+ },
481
+ {
482
+ description: "",
483
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/80f39709-fdf6-40b4-9d8c-a2db549ce621",
484
+ type: "text",
485
+ "family-id": "338160c1-cb62-4328-b866-abbb13cf0e1b",
486
+ title: "",
487
+ id: "80f39709-fdf6-40b4-9d8c-a2db549ce621",
488
+ metadata: {
489
+ content:
490
+ "After the death of James Halliday, the creator of the virtual reality world, his pre-recorded message reveals the hidden fortune, which makes Wade Watts, a teenager, embark on a quest.",
491
+ attribution: "Player"
492
+ },
493
+ subtype: "quote",
494
+ text:
495
+ '<div><blockquote>After the death of James Halliday, the creator of the virtual reality world, his pre-recorded message reveals the hidden fortune, which makes Wade Watts, a teenager, embark on a quest.</blockquote><span class="attribution">Player</span></div>'
496
+ },
497
+ {
498
+ description: "",
499
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/b474c23d-d782-49f1-a615-fa03081c46b1",
500
+ type: "text",
501
+ "family-id": "77f6332d-73fb-4255-91bb-e2d714981c82",
502
+ title: "",
503
+ id: "b474c23d-d782-49f1-a615-fa03081c46b1",
504
+ metadata: {
505
+ question:
506
+ '<p>Is Ready Player One book<a href="https://www.jbsimmons.com/blog/books-better-than-movies-ready-player-one"> better </a>than the movie?</p>',
507
+ answer:
508
+ "<p><strong>Ready Player One</strong> is the latest example. I read Earnest Cline's <strong><a href=\"https://www.jbsimmons.com/blog/books-better-than-movies-ready-player-one\">book</a></strong> a couple months before watching Steven Spielberg's <strong>movie</strong>. ... The <strong>book</strong> generally fares <strong>better</strong> with reviewers, averaging 4.6 out of 5 stars on Amazon, while the <strong>movie</strong> scores 73% on Rotten Tomatoes.</p>",
509
+ interviewer: {
510
+ "author-collection-id": null,
511
+ "updated-at": 1565606538341,
512
+ slug: "reena-singh-2",
513
+ "last-name": null,
514
+ "publisher-id": 97,
515
+ name: "Reena Singh",
516
+ "avatar-url":
517
+ "https://thumbor-stg.assettype.com/ace/2019-08/565bba26-4f05-4e63-b619-511a2a2bd5b7/images.jpeg",
518
+ settings: null,
519
+ source: null,
520
+ "first-name": null,
521
+ "communication-email": null,
522
+ bio: null,
523
+ id: 300199,
524
+ "avatar-s3-key": "ace/2019-08/565bba26-4f05-4e63-b619-511a2a2bd5b7/images.jpeg",
525
+ "twitter-handle": null,
526
+ "created-at": 1551268188983,
527
+ metadata: {}
528
+ },
529
+ interviewee: {
530
+ "author-collection-id": null,
531
+ "updated-at": 1565606538341,
532
+ slug: "reena-singh-2",
533
+ "last-name": null,
534
+ "publisher-id": 97,
535
+ name: "Reena Singh",
536
+ "avatar-url":
537
+ "https://thumbor-stg.assettype.com/ace/2019-08/565bba26-4f05-4e63-b619-511a2a2bd5b7/images.jpeg",
538
+ settings: null,
539
+ source: null,
540
+ "first-name": null,
541
+ "communication-email": null,
542
+ bio: null,
543
+ id: 300199,
544
+ "avatar-s3-key": "ace/2019-08/565bba26-4f05-4e63-b619-511a2a2bd5b7/images.jpeg",
545
+ "twitter-handle": null,
546
+ "created-at": 1551268188983,
547
+ metadata: {}
548
+ }
549
+ },
550
+ subtype: "q-and-a",
551
+ text:
552
+ '<div><div class="question"><p>Is Ready Player One book<a href="https://www.jbsimmons.com/blog/books-better-than-movies-ready-player-one"> better </a>than the movie?</p></div><div class="answer"><p><strong>Ready Player One</strong> is the latest example. I read Earnest Cline\'s <strong><a href="https://www.jbsimmons.com/blog/books-better-than-movies-ready-player-one">book</a></strong> a couple months before watching Steven Spielberg\'s <strong>movie</strong>. ... The <strong>book</strong> generally fares <strong>better</strong> with reviewers, averaging 4.6 out of 5 stars on Amazon, while the <strong>movie</strong> scores 73% on Rotten Tomatoes.</p></div></div>'
553
+ },
554
+ {
555
+ description: "",
556
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/ff83a8d3-1946-4cb3-b52c-135108e54ebd",
557
+ type: "text",
558
+ "family-id": "fb690ed4-60b6-4a46-89f9-ee6f87bfa4c7",
559
+ title: "",
560
+ id: "ff83a8d3-1946-4cb3-b52c-135108e54ebd",
561
+ metadata: {
562
+ interviewer: {
563
+ "author-collection-id": null,
564
+ "updated-at": 1565606538341,
565
+ slug: "reena-singh-2",
566
+ "last-name": null,
567
+ "publisher-id": 97,
568
+ name: "Reena Singh",
569
+ "avatar-url":
570
+ "https://thumbor-stg.assettype.com/ace/2019-08/565bba26-4f05-4e63-b619-511a2a2bd5b7/images.jpeg",
571
+ settings: null,
572
+ source: null,
573
+ "first-name": null,
574
+ "communication-email": null,
575
+ bio: null,
576
+ id: 300199,
577
+ "avatar-s3-key": "ace/2019-08/565bba26-4f05-4e63-b619-511a2a2bd5b7/images.jpeg",
578
+ "twitter-handle": null,
579
+ "created-at": 1551268188983,
580
+ metadata: {}
581
+ }
582
+ },
583
+ subtype: "question",
584
+ text:
585
+ '<p>Is Ready Player One book <a href="https://www.jbsimmons.com/blog/books-better-than-movies-ready-player-one">better</a> than the movie?</p>'
586
+ },
587
+ {
588
+ description: "",
589
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/ac5e114b-5144-401b-9d60-6e706f708a87",
590
+ type: "text",
591
+ "family-id": "b857e675-9923-47b3-bb2f-a467bbc5977d",
592
+ title: "",
593
+ id: "ac5e114b-5144-401b-9d60-6e706f708a87",
594
+ metadata: {
595
+ interviewee: {
596
+ "author-collection-id": null,
597
+ "updated-at": 1565606538341,
598
+ slug: "reena-singh-2",
599
+ "last-name": null,
600
+ "publisher-id": 97,
601
+ name: "Reena Singh",
602
+ "avatar-url":
603
+ "https://thumbor-stg.assettype.com/ace/2019-08/565bba26-4f05-4e63-b619-511a2a2bd5b7/images.jpeg",
604
+ settings: null,
605
+ source: null,
606
+ "first-name": null,
607
+ "communication-email": null,
608
+ bio: null,
609
+ id: 300199,
610
+ "avatar-s3-key": "ace/2019-08/565bba26-4f05-4e63-b619-511a2a2bd5b7/images.jpeg",
611
+ "twitter-handle": null,
612
+ "created-at": 1551268188983,
613
+ metadata: {}
614
+ }
615
+ },
616
+ subtype: "answer",
617
+ text:
618
+ "<p><strong>Ready Player One</strong> is the latest example. I read Earnest Cline's <strong>book</strong> a couple months before watching Steven Spielberg's <strong>movie</strong>. ... The <strong><a href=\"https://www.jbsimmons.com/blog/books-better-than-movies-ready-player-one\">book</a></strong> generally fares <strong>better</strong> with reviewers, averaging 4.6 out of 5 stars on Amazon, while the <strong>movie</strong> scores 73% on Rotten Tomatoes.</p>"
619
+ },
620
+ {
621
+ id: "00000000-0000-0000-0000-000000000000",
622
+ description: "",
623
+ title: "",
624
+ subtype: null,
625
+ type: "text",
626
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
627
+ metadata: {
628
+ "promotional-message": true
629
+ }
630
+ },
631
+ {
632
+ id: "00000000-0000-0000-0000-000000000000",
633
+ description: "",
634
+ title: "",
635
+ subtype: null,
636
+ type: "text",
637
+ text: '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
638
+ metadata: {
639
+ "promotional-message": true
640
+ }
641
+ },
642
+ {
643
+ description: "",
644
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/0e1e9777-e0e6-45f9-b212-264db2d8eeb5",
645
+ type: "text",
646
+ "family-id": "7be340e2-8e00-4bba-b640-cdbd57ba2719",
647
+ title: "",
648
+ id: "0e1e9777-e0e6-45f9-b212-264db2d8eeb5",
649
+ metadata: {
650
+ content:
651
+ "Although the many story changes might be hard for book purists to accept, Steven Spielberg has lovingly captured the zeitgeist of '80s nostalgia in this adventure."
652
+ },
653
+ subtype: "blurb",
654
+ text:
655
+ '<blockquote>Although the many story changes might be hard for book purists to accept, <a href="https://www.rottentomatoes.com/m/ready_player_one/">Steven Spielberg</a> has lovingly captured the zeitgeist of 80s nostalgia in this adventure.</blockquote>'
656
+ },
657
+ {
658
+ description: "",
659
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/48546269-f61b-42f3-945c-5358d14f3429",
660
+ type: "text",
661
+ "family-id": "33c7c7c1-1001-46f1-b77d-0553805ded84",
662
+ title: "",
663
+ id: "48546269-f61b-42f3-945c-5358d14f3429",
664
+ metadata: {
665
+ content:
666
+ "After the death of James Halliday, the creator of the virtual reality world, his pre-recorded message reveals the hidden fortune, which makes Wade Watts, a teenager, embark on a quest.",
667
+ attribution: "Player"
668
+ },
669
+ subtype: "blockquote",
670
+ text:
671
+ '<div><blockquote>After the death of James Halliday, the creator of the virtual reality world, his pre-recorded message reveals the hidden fortune, which makes Wade Watts, a teenager, embark on a quest.</blockquote><span class="attribution">Player</span></div>'
672
+ },
673
+ {
674
+ description: "",
675
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/a0078928-ebb8-4464-a8e6-62e77ca7f502",
676
+ type: "text",
677
+ "family-id": "bc29c3e2-9b21-444b-9e42-359968da256a",
678
+ title: "",
679
+ id: "a0078928-ebb8-4464-a8e6-62e77ca7f502",
680
+ metadata: {
681
+ "linked-story-id": "2d0008f7-768f-4667-822f-cb531d9627f4",
682
+ "linked-story": {
683
+ headline: "How is the coronavirus impacting people with disabilities?",
684
+ "story-content-id": "2d0008f7-768f-4667-822f-cb531d9627f4",
685
+ "highlighted-text": "",
686
+ id: "2d0008f7-768f-4667-822f-cb531d9627f4",
687
+ "highlighted-headline": null
688
+ }
689
+ },
690
+ subtype: "also-read",
691
+ text: "How is the coronavirus impacting people with disabilities?"
692
+ },
693
+ {
694
+ description: "",
695
+ "page-url": "/story/39b60649-aa6f-49f6-8365-0981b799b3b7/element/373d6e0b-c5ac-4904-8d41-78e4fd5602cd",
696
+ type: "text",
697
+ "family-id": "2b60d9a6-355e-45cb-b2a4-e29fde4a4827",
698
+ title: "",
699
+ id: "373d6e0b-c5ac-4904-8d41-78e4fd5602cd",
700
+ metadata: {},
701
+ subtype: "summary",
702
+ text:
703
+ "<p>Lorem<em> Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries</em>, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>"
704
+ },
705
+ {
706
+ description: "",
707
+ "page-url": "/story/8f1c0e1f-afd6-4169-96c2-243d88013bd1/element/b35ef956-35ce-4431-a68d-018760a4ddda",
708
+ type: "composite",
709
+ "family-id": "97761d2a-de16-4135-945f-ac5706ecc1a6",
710
+ "story-elements": [
711
+ {
712
+ description: "",
713
+ "image-metadata": {
714
+ "original-url":
715
+ "https://www.washingtonpost.com/resizer/_I2QC1BPsP-wxv7XSvBBK48bv8E=/1440x0/smart/arc-anglerfish-washpost-prod-washpost.s3.amazonaws.com/public/OP2ZX3T6KYI6VBGCA6JNQWIZCE.jpg"
716
+ },
717
+ type: "image",
718
+ "family-id": "0444a13c-f52a-43ff-8564-b52411ffdefc",
719
+ "image-attribution": "",
720
+ title: "",
721
+ id: "738163f6-4796-4a44-8e7b-b0160a83fa42",
722
+ "image-s3-key": "ace/2020-04/b6b55f73-a713-4087-849b-a7dbb04826e6/OP2ZX3T6KYI6VBGCA6JNQWIZCE.jpg",
723
+ metadata: {},
724
+ subtype: null,
725
+ hyperlink: "https://www.google.com/"
726
+ },
727
+ {
728
+ description: "",
729
+ "image-metadata": {
730
+ "original-url":
731
+ "https://media3.s-nbcnews.com/j/newscms/2020_16/3314681/200419-michelle-tom-cover-cs-509p_6155bfe91e67a4f93ecc2cf00530c404.nbcnews-fp-1200-630.jpg"
732
+ },
733
+ type: "image",
734
+ "family-id": "5173f4e7-f94c-4e7a-ba54-806ae1a7deef",
735
+ "image-attribution": "",
736
+ title: "",
737
+ id: "2486b7db-4d88-4fc3-899e-425c105f48ba",
738
+ "image-s3-key":
739
+ "ace/2020-04/e58b991e-4a82-4fca-818d-c1f8fd6e98e6/200419_michelle_tom_cover_cs_509p_6155bfe91e67a4f93ecc2cf00530c404_nbcnews_fp_1200_630.jpg",
740
+ metadata: {},
741
+ subtype: null,
742
+ hyperlink: "https://www.google.com/"
743
+ },
744
+ {
745
+ description: "",
746
+ "image-metadata": {
747
+ "original-url": "https://www.dw.com/image/53181437_304.jpg"
748
+ },
749
+ type: "image",
750
+ "family-id": "5f454472-b7ed-4a18-b923-452332c16125",
751
+ "image-attribution": "",
752
+ title: "",
753
+ id: "3dd778d9-dc96-4798-876f-069b8d47c177",
754
+ "image-s3-key": "ace/2020-04/ea98e4fb-f8a8-4b18-a2b0-8ec03b17820c/53181437_304.jpg",
755
+ metadata: {},
756
+ subtype: null,
757
+ hyperlink: "https://www.google.com/"
758
+ },
759
+ {
760
+ description: "",
761
+ "image-metadata": {
762
+ "original-url":
763
+ "https://www.washingtonpost.com/resizer/_f5BO1VdLp-O-jX1x-NK-GfYknU=/1440x0/smart/arc-anglerfish-washpost-prod-washpost.s3.amazonaws.com/public/ZE2IQNUBVAI6VBGCA6JNQWIZCE.jpg"
764
+ },
765
+ type: "image",
766
+ "family-id": "67ae55bd-3f34-417b-8951-fb525da321f2",
767
+ "image-attribution": "",
768
+ title: "",
769
+ id: "bc8d79e8-04d5-447e-80b7-99e211b1d1ec",
770
+ "image-s3-key": "ace/2020-04/aef8d5e1-d2fc-4f77-968b-50ff0c4764ea/ZE2IQNUBVAI6VBGCA6JNQWIZCE.jpg",
771
+ metadata: {},
772
+ subtype: null,
773
+ hyperlink: "https://www.google.com/"
774
+ },
775
+ {
776
+ description: "",
777
+ "image-metadata": {
778
+ "original-url":
779
+ "https://www.washingtonpost.com/resizer/_f5BO1VdLp-O-jX1x-NK-GfYknU=/1440x0/smart/arc-anglerfish-washpost-prod-washpost.s3.amazonaws.com/public/ZE2IQNUBVAI6VBGCA6JNQWIZCE.jpg"
780
+ },
781
+ type: "image",
782
+ "family-id": "67ae55bd-3f34-417b-8951-fb525da321f2",
783
+ "image-attribution": "",
784
+ title: "",
785
+ id: "bc8d79e8-04d5-447e-80b7-99e211b1d1ec",
786
+ "image-s3-key": "ace/2020-04/aef8d5e1-d2fc-4f77-968b-50ff0c4764ea/ZE2IQNUBVAI6VBGCA6JNQWIZCE.jpg",
787
+ metadata: {},
788
+ subtype: null,
789
+ hyperlink: "https://www.google.com/"
790
+ },
791
+ {
792
+ description: "",
793
+ "image-metadata": {
794
+ "original-url":
795
+ "https://www.washingtonpost.com/resizer/_f5BO1VdLp-O-jX1x-NK-GfYknU=/1440x0/smart/arc-anglerfish-washpost-prod-washpost.s3.amazonaws.com/public/ZE2IQNUBVAI6VBGCA6JNQWIZCE.jpg"
796
+ },
797
+ type: "image",
798
+ "family-id": "67ae55bd-3f34-417b-8951-fb525da321f2",
799
+ "image-attribution": "",
800
+ title: "",
801
+ id: "bc8d79e8-04d5-447e-80b7-99e211b1d1ec",
802
+ "image-s3-key": "ace/2020-04/aef8d5e1-d2fc-4f77-968b-50ff0c4764ea/ZE2IQNUBVAI6VBGCA6JNQWIZCE.jpg",
803
+ metadata: {},
804
+ subtype: null,
805
+ hyperlink: "https://www.google.com/"
806
+ },
807
+ {
808
+ description: "",
809
+ "image-metadata": {
810
+ "original-url":
811
+ "https://www.washingtonpost.com/resizer/_f5BO1VdLp-O-jX1x-NK-GfYknU=/1440x0/smart/arc-anglerfish-washpost-prod-washpost.s3.amazonaws.com/public/ZE2IQNUBVAI6VBGCA6JNQWIZCE.jpg"
812
+ },
813
+ type: "image",
814
+ "family-id": "67ae55bd-3f34-417b-8951-fb525da321f2",
815
+ "image-attribution": "",
816
+ title: "",
817
+ id: "bc8d79e8-04d5-447e-80b7-99e211b1d1ec",
818
+ "image-s3-key": "ace/2020-04/aef8d5e1-d2fc-4f77-968b-50ff0c4764ea/ZE2IQNUBVAI6VBGCA6JNQWIZCE.jpg",
819
+ metadata: {},
820
+ subtype: null,
821
+ hyperlink: "https://www.google.com/"
822
+ },
823
+ {
824
+ description: "",
825
+ "image-metadata": {
826
+ "original-url":
827
+ "https://www.aljazeera.com/mritems/Images/2020/4/19/e69c7b29e024420d95e519b96edfc7aa_18.jpg"
828
+ },
829
+ type: "image",
830
+ "family-id": "096ff456-dd70-45f8-9953-4ac78c6c332c",
831
+ "image-attribution": "",
832
+ title: "",
833
+ id: "3a7139bd-ab4c-4c2e-bf0d-4e0ff6903e19",
834
+ "image-s3-key":
835
+ "ace/2020-04/7cebf55c-27c1-4e73-839f-85d1399a354e/e69c7b29e024420d95e519b96edfc7aa_18.jpg",
836
+ metadata: {},
837
+ subtype: null,
838
+ hyperlink: "https://www.google.com/"
839
+ },
840
+ {
841
+ description: "",
842
+ "image-metadata": {
843
+ "original-url":
844
+ "https://media.khou.com/assets/KHOU/images/55ceb4cc-e4a7-4a99-bc29-34ed175c4df2/55ceb4cc-e4a7-4a99-bc29-34ed175c4df2_1140x641.jpg"
845
+ },
846
+ type: "image",
847
+ "family-id": "69f2fa84-f55b-4176-a48e-9cc0521b610d",
848
+ "image-attribution": "",
849
+ title: "",
850
+ id: "5b1501e0-9a91-4720-8660-531511bded39",
851
+ "image-s3-key":
852
+ "ace/2020-04/167805cc-a440-41fe-bccf-132660d4350f/55ceb4cc_e4a7_4a99_bc29_34ed175c4df2_1140x641.jpg",
853
+ metadata: {},
854
+ subtype: null,
855
+ hyperlink: "https://www.google.com/"
856
+ }
857
+ ],
858
+ title: "",
859
+ id: "b35ef956-35ce-4431-a68d-018760a4ddda",
860
+ metadata: {
861
+ type: "gallery"
862
+ },
863
+ subtype: "image-gallery"
864
+ }
865
+ ],
866
+ "card-updated-at": 1587559563683,
867
+ "content-version-id": "11beb6bf-bcb3-4ea2-8764-7355fc40811b",
868
+ "card-added-at": 1524115986932,
869
+ status: "draft",
870
+ id: "954331a6-4e5e-4d96-8204-74f56ce1f837",
871
+ "content-id": "954331a6-4e5e-4d96-8204-74f56ce1f837",
872
+ version: 32,
873
+ metadata: {
874
+ "social-share": {
875
+ shareable: false,
876
+ title: "Ready Player One review – Spielberg ",
877
+ message: "Ready Player One review – Spielberg spins a dizzying VR yarn",
878
+ image: {
879
+ key: "ace/2019-08/e3103795-ebb4-4c6c-93f0-2e829037e008/ready_player_one_hd_wallpapers_70749_6537851.png",
880
+ url: null,
881
+ attribution: null,
882
+ caption: null,
883
+ metadata: {
884
+ width: 1920,
885
+ height: 1080,
886
+ "mime-type": "image/png",
887
+ "file-size": 587085,
888
+ "file-name": "ready-player-one-hd-wallpapers-70749-6537851.png",
889
+ "focus-point": [883, 411]
890
+ }
891
+ }
892
+ },
893
+ attributes: {}
894
+ }
895
+ },
896
+ {
897
+ "story-elements": [
898
+ {
899
+ description: "",
900
+ "page-url": "/story/a3561065-11ce-4281-9d86-325934aa2146/element/d42210d4-4c37-475c-ac6e-414821ad2e57",
901
+ type: "youtube-video",
902
+ "family-id": "43f1bf4c-2144-4f86-b36e-d910ff76eb8d",
903
+ title: "",
904
+ id: "d42210d4-4c37-475c-ac6e-414821ad2e57",
905
+ url: "https://www.youtube.com/watch?v=cSp1dM2Vj48&feature=youtu.be",
906
+ "embed-url": "https://www.youtube.com/embed/cSp1dM2Vj48",
907
+ metadata: {},
908
+ subtype: null
909
+ },
910
+ {
911
+ id: "00000000-0000-0000-0000-000000000000",
912
+ description: "",
913
+ title: "",
914
+ subtype: null,
915
+ type: "text",
916
+ text:
917
+ '<p><a href="https://www.theguardian.com/technology/virtual-reality">Virtual reality</a> is the air guitar solo of modern cinema: a frenetic imagined activity in a made-up world that exists one level below the already made-up world of the story. <a href="https://www.theguardian.com/film/stevenspielberg">Steven Spielberg</a> 2019s <a href="https://www.theguardian.com/film/ready-player-one">Ready Player One</a>.</p>',
918
+ metadata: {
919
+ "promotional-message": true
920
+ }
921
+ }
922
+ ],
923
+ "card-updated-at": 1524116209278,
924
+ "content-version-id": "f1e7f3ea-21f2-4801-b6d7-2022ee079478",
925
+ "card-added-at": 1524116147733,
926
+ status: "draft",
927
+ id: "464e6388-3a0d-49ca-aea7-bce0893259ba",
928
+ "content-id": "464e6388-3a0d-49ca-aea7-bce0893259ba",
929
+ version: 3,
930
+ metadata: {
931
+ "social-share": {
932
+ shareable: false,
933
+ title: "Ready Player One review – Spielberg ",
934
+ message: "Ready Player One review – Spielberg spins a dizzying VR yarn",
935
+ image: {
936
+ key: "ace/2019-08/e3103795-ebb4-4c6c-93f0-2e829037e008/ready_player_one_hd_wallpapers_70749_6537851.png",
937
+ url: null,
938
+ attribution: null,
939
+ caption: null,
940
+ metadata: {
941
+ width: 1920,
942
+ height: 1080,
943
+ "mime-type": "image/png",
944
+ "file-size": 587085,
945
+ "file-name": "ready-player-one-hd-wallpapers-70749-6537851.png",
946
+ "focus-point": [883, 411]
947
+ }
948
+ }
949
+ }
950
+ }
951
+ }
952
+ ],
953
+ url:
954
+ "https://ace-web.qtstage.io/anything/recent-stories/news/ready-player-one-review-spielberg-spins-a-dizzying-vr-yarn",
955
+ "story-version-id": "28c7b47d-3b37-49f6-a0ba-2886d14182e4",
956
+ "content-type": "story",
957
+ "content-updated-at": 1564650017530,
958
+ "author-id": 123981,
959
+ "owner-id": 123981,
960
+ "linked-story-ids": [],
961
+ "promotional-message": '<p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
962
+ "asana-project-id": null,
963
+ "first-published-at": 1671083514919,
964
+ "hero-image-caption": "hero image caption",
965
+ version: 47,
966
+ "story-template": "review",
967
+ "sequence-no": null,
968
+ "created-at": 1564650011136,
969
+ authors: [
970
+ {
971
+ id: 94980,
972
+ name: "Stephen Wertheim",
973
+ social: {
974
+ twitter: {
975
+ url: "https://www.twitter.com/sabqorg",
976
+ handle: "elonmusk"
977
+ }
978
+ },
979
+ slug: "stephen-wertheim",
980
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
981
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
982
+ "twitter-handle": null,
983
+ bio: null,
984
+ "contributor-role": {
985
+ id: 873,
986
+ name: "Author"
987
+ }
988
+ },
989
+ {
990
+ id: 123981,
991
+ name: "Ravigopal Kesari",
992
+ slug: "ravigopal-kesari",
993
+ social: {
994
+ twitter: {
995
+ url: "https://www.twitter.com/sabqorg",
996
+ handle: "elonmusk"
997
+ }
998
+ },
999
+ "avatar-url":
1000
+ "https://lh5.googleusercontent.com/-NhNrHEp1w4M/AAAAAAAAAAI/AAAAAAAAAAs/lzYwVY1BQdQ/photo.jpg?sz=50",
1001
+ "avatar-s3-key": null,
1002
+ "twitter-handle": null,
1003
+ bio: null,
1004
+ "contributor-role": {
1005
+ id: 873,
1006
+ name: "Author"
1007
+ }
1008
+ },
1009
+
1010
+ {
1011
+ id: 949805,
1012
+ name: "Harry Potter",
1013
+ social: {
1014
+ twitter: {
1015
+ url: "https://www.twitter.com/sabqorg",
1016
+ handle: "elonmusk"
1017
+ }
1018
+ },
1019
+ slug: "stephen-wertheim",
1020
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
1021
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
1022
+ "twitter-handle": null,
1023
+ bio: null,
1024
+ "contributor-role": {
1025
+ id: 879,
1026
+ name: "Guest Author"
1027
+ }
1028
+ },
1029
+ {
1030
+ id: 949806,
1031
+ name: "Hagrid",
1032
+ social: {
1033
+ twitter: {
1034
+ url: "https://www.twitter.com/sabqorg",
1035
+ handle: "elonmusk"
1036
+ }
1037
+ },
1038
+ slug: "stephen-wertheim",
1039
+ "avatar-url": "https://thumbor-stg.assettype.com/ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
1040
+ "avatar-s3-key": "ace/2019-08/145ab200-429f-44ac-8618-00c6e4643e31/cat.jpeg",
1041
+ "twitter-handle": null,
1042
+ bio: null,
1043
+ "contributor-role": {
1044
+ id: 8708,
1045
+ name: "Guest Author"
1046
+ }
1047
+ }
1048
+ ],
1049
+ metadata: {
1050
+ "story-attributes": {
1051
+ eventstatus: ["scheduled"],
1052
+ eventenddate: ["05"],
1053
+ paidevent: ["true"],
1054
+ eventmode: ["online"],
1055
+ eventstartyear: ["2025"],
1056
+ organizername: ["southshoretimes"],
1057
+ organizertype: ["Organization"],
1058
+ eventregistrationlink: ["https://www.facebook.com/"],
1059
+ organizeremail: ["southshoretimes@gmail.com"],
1060
+ organizerurl: ["https://southshoretimes.com/"],
1061
+ eventlocation: ["55 Recreation Park Drive Hingham MA 02043"],
1062
+ eventstartmonth: ["April"],
1063
+ eventstartdate: ["04"]
1064
+ },
1065
+ "review-title": "Ready Player One",
1066
+ "review-rating": {
1067
+ label: "1",
1068
+ value: "1"
1069
+ },
1070
+ "sponsored-by": "quint",
1071
+ "card-share": {
1072
+ shareable: false
1073
+ }
1074
+ },
1075
+ "publish-at": null,
1076
+ "assignee-name": "Ravigopal Kesari"
1077
+ };
1078
+
1079
+ export const dummyPhotoStory = {
1080
+ access: "subscription",
1081
+ "updated-at": 1599115419318,
1082
+ seo: {
1083
+ "claim-reviews": {
1084
+ story: null
1085
+ }
1086
+ },
1087
+ "assignee-id": 187245,
1088
+ "author-name": "Shreya Shukla",
1089
+ "hero-image-hyperlink": "https://www.google.com",
1090
+ tags: [
1091
+ {
1092
+ id: 274973,
1093
+ name: "50th Anniversary",
1094
+ "meta-description": "5th Anniversary of quintype",
1095
+ "meta-title": "5th Anniversary of qt",
1096
+ slug: "50th-anniversary",
1097
+ "tag-type": "Tag"
1098
+ },
1099
+ {
1100
+ id: 1092771,
1101
+ name: "Newzealand",
1102
+ "meta-description": null,
1103
+ "meta-title": null,
1104
+ slug: "newzealand",
1105
+ "tag-type": "Tag"
1106
+ },
1107
+ {
1108
+ id: 1292529,
1109
+ name: "50",
1110
+ "meta-description": null,
1111
+ "meta-title": null,
1112
+ slug: "50",
1113
+ "tag-type": "Tag"
1114
+ },
1115
+ {
1116
+ id: 1292530,
1117
+ name: "bangalore",
1118
+ "meta-description": null,
1119
+ "meta-title": null,
1120
+ slug: "bangalore",
1121
+ "tag-type": "Tag"
1122
+ }
1123
+ ],
1124
+ customSlotAfterStory: {
1125
+ config: { targetingId: "" },
1126
+ layout: "Leaderboard",
1127
+ layoutLabel: "Leaderboard",
1128
+ type: "ad"
1129
+ },
1130
+ headline: "Karnataka tourism",
1131
+ "storyline-id": null,
1132
+ votes: {},
1133
+ "story-content-id": "231f55c0-ba92-4da6-a2c0-697c520f860f",
1134
+ slug: "child-sec/2020/09/02/karnataka-tourism",
1135
+ "last-published-at": 1599115422319,
1136
+ subheadline: "At vero eos et accusamus iusto odio dignissimos ducimus qui blanditiis pre.",
1137
+ alternative: {},
1138
+ sections: [
1139
+ {
1140
+ "domain-slug": null,
1141
+ slug: "child-sec",
1142
+ name: "child-sec",
1143
+ "section-url": "https://ace-web.qtstage.io/parent-sec/child-sec",
1144
+ id: 11825,
1145
+ "parent-id": 11824,
1146
+ "display-name": "child-sec",
1147
+ collection: {
1148
+ slug: "child-sec-parent-sec",
1149
+ name: "child-sec (parent-sec)",
1150
+ id: 17115
1151
+ },
1152
+ data: null
1153
+ }
1154
+ ],
1155
+ "story-audio": {
1156
+ "s3-key": "ace/story-audio/2020-09/231f55c0-ba92-4da6-a2c0-697c520f860f/.0fc573c1-97de-4644-8a26-bf65c4d6f0d9.mp3"
1157
+ },
1158
+ "read-time": 2,
1159
+ "access-level-value": null,
1160
+ "content-created-at": 1599069527074,
1161
+ "owner-name": "Shreya Shukla",
1162
+ "custom-slug": null,
1163
+ "push-notification": null,
1164
+ "publisher-id": 97,
1165
+ "hero-image-metadata": {
1166
+ "original-url": "https://www.india.com/wp-content/uploads/2014/09/vikasa-soudha-245043_960_720.jpg",
1167
+ width: 625,
1168
+ height: 470
1169
+ },
1170
+ comments: null,
1171
+ "word-count": 245,
1172
+ entities: {},
1173
+ "published-at": 1599115422319,
1174
+ "is-live-blog": false,
1175
+ "breaking-news-linked-story-id": null,
1176
+ "storyline-title": null,
1177
+ summary: null,
1178
+ "push-notification-title": null,
1179
+ "external-id": null,
1180
+ "canonical-url": null,
1181
+ "is-amp-supported": false,
1182
+ autotags: [],
1183
+ "linked-entities": [],
1184
+ status: "published",
1185
+ "hero-image-attribution": "Credits: Quintype",
1186
+ "bullet-type": "123",
1187
+ id: "231f55c0-ba92-4da6-a2c0-697c520f860f",
1188
+ "hero-image-s3-key": "ace/2020-06/58fb1855-a741-4b69-9c9b-57eafe34ff04/vikasa_soudha_245043_960_720.jpg",
1189
+ contributors: [],
1190
+ "associated-series-collection-ids": [],
1191
+ cards: [
1192
+ {
1193
+ "story-elements": [
1194
+ {
1195
+ description: "",
1196
+ "page-url": "/story/191d390f-7f10-422a-86b5-cf589a0bac08/element/d31da4d6-2738-48c6-8a9c-bd1a6ca919ba",
1197
+ type: "text",
1198
+ "family-id": "4e2d8d24-581a-4204-a40a-f8ab46d62c04",
1199
+ title: "",
1200
+ id: "d31da4d6-2738-48c6-8a9c-bd1a6ca919ba",
1201
+ metadata: {},
1202
+ subtype: "summary",
1203
+ text:
1204
+ '<p>Summary: In 2005, <em><a href="https://en.wikipedia.org/wiki/Nature_(journal)">Nature</a></em> published a peer review comparing 42 <a href="https://en.wikipedia.org/wiki/Hard_science">hard science</a> articles from <em><a href="https://en.wikipedia.org/wiki/Encyclop%C3%A6dia_Britannica">Encyclopædia Britannica</a></em> and Wikipedia and found that Wikipedia\'s level of accuracy approached that of <em>Britannica</em>,<sup><a href="https://en.wikipedia.org/wiki/Wikipedia#cite_note-GilesJ2005Internet-23">[21]</a></sup> although critics suggested that it might not have fared so well in a similar study of a <a href="https://en.wikipedia.org/wiki/Random_sampling">random sampling</a> of all articles or one focused on social science or contentious social issues.<sup><a href="https://en.wikipedia.org/wiki/Wikipedia#cite_note-Reagle,_pp._165%E2%80%93166-24">[22]</a><a href="https://en.wikipedia.org/wiki/Wikipedia#cite_note-Orlowski2005-25">[23]</a></sup> The following year, <em><a href="https://en.wikipedia.org/wiki/Time_(magazine)">Time</a></em> magazine stated that the open-door policy of allowing anyone to edit had made Wikipedia the biggest and possibly the best encyclopedia in the world, and was a testament to the vision of Jimmy Wales.<sup><a href="https://en.wikipedia.org/wiki/Wikipedia#cite_note-26">[24]</a></sup></p>'
1205
+ },
1206
+ {
1207
+ description: "",
1208
+ "image-metadata": {
1209
+ width: 1920,
1210
+ height: 1080,
1211
+ "focus-point": [964, 507]
1212
+ },
1213
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/7798674b-46f4-429c-95ce-cb5d334277e4",
1214
+ type: "image",
1215
+ "family-id": "968c8fc8-874e-4982-8eca-9ac5c6ee93aa",
1216
+ "image-attribution": "Supreme Court Justice Clarence Thomas in 2007. ",
1217
+ title: "nature",
1218
+ id: "7798674b-46f4-429c-95ce-cb5d334277e4",
1219
+ "image-s3-key": "ace/2018-12/fcdb3782-886c-47ce-a84f-0ef5e051d639/Images_9.jpg",
1220
+ metadata: {},
1221
+ subtype: null,
1222
+ hyperlink: "https://www.google.com/"
1223
+ },
1224
+ {
1225
+ description: "",
1226
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/664c9d54-f0c2-4016-a80e-7c7ed1d64330",
1227
+ type: "title",
1228
+ "family-id": "d1941b1b-1b4f-4d35-8d2d-6d5c12fabc25",
1229
+ title: "",
1230
+ id: "664c9d54-f0c2-4016-a80e-7c7ed1d64330",
1231
+ metadata: {},
1232
+ subtype: null,
1233
+ text: "Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus"
1234
+ },
1235
+ {
1236
+ description: "",
1237
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/3bd855a8-9db1-404b-b193-6b4ec7a4c6f2",
1238
+ type: "text",
1239
+ "family-id": "7994eec8-b28a-47ee-b954-e652d7b829ad",
1240
+ title: "",
1241
+ id: "3bd855a8-9db1-404b-b193-6b4ec7a4c6f2",
1242
+ metadata: {},
1243
+ subtype: null,
1244
+ text:
1245
+ "<p>Dolor sit amet lorem ipsum, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>"
1246
+ },
1247
+ {
1248
+ config: { targetingId: "" },
1249
+ layout: "Leaderboard",
1250
+ layoutLabel: "Leaderboard",
1251
+ type: "ad"
1252
+ }
1253
+ ],
1254
+ "card-updated-at": 1599070341951,
1255
+ "content-version-id": "7160cfea-8a20-48a6-a67c-c5c1bf26a062",
1256
+ "card-added-at": 1599069777782,
1257
+ status: "draft",
1258
+ id: "aaf2ca9d-af7d-4c26-9caf-a16f1e104c21",
1259
+ "content-id": "aaf2ca9d-af7d-4c26-9caf-a16f1e104c21",
1260
+ version: 11,
1261
+ metadata: {
1262
+ "social-share": {
1263
+ shareable: false,
1264
+ title: "Karnataka tourism",
1265
+ message: null,
1266
+ image: {
1267
+ key: "ace/2018-12/fcdb3782-886c-47ce-a84f-0ef5e051d639/Images_9.jpg",
1268
+ url: null,
1269
+ attribution: "Supreme Court Justice Clarence Thomas in 2007. ",
1270
+ caption: null,
1271
+ metadata: {
1272
+ width: 1920,
1273
+ height: 1080,
1274
+ "focus-point": [964, 507]
1275
+ }
1276
+ }
1277
+ },
1278
+ attributes: {}
1279
+ }
1280
+ },
1281
+ {
1282
+ "story-elements": [
1283
+ {
1284
+ description: "",
1285
+ "image-metadata": {
1286
+ "original-url":
1287
+ "https://s.rfi.fr/media/display/ddb13a2c-e9b1-11ea-9cf1-005056bf87d6/w:1280/p:16x9/f4da51e521694ef3b14820c2fd32709e691f058e.jpg",
1288
+ width: 1280,
1289
+ height: 720
1290
+ },
1291
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/d33f9a51-4bc6-4205-8784-86cb11027115",
1292
+ type: "image",
1293
+ "family-id": "f7ff58e5-dbba-485c-bbcf-9119a764afd5",
1294
+ "image-attribution": "Credits: Quintype",
1295
+ title: "Supreme Court Justice Clarence Thomas in 2007. ",
1296
+ id: "d33f9a51-4bc6-4205-8784-86cb11027115",
1297
+ "image-s3-key":
1298
+ "ace/2020-08/04562266-d044-4cf3-8ff3-58ab0b084d33/f4da51e521694ef3b14820c2fd32709e691f058e.jpg",
1299
+ metadata: {},
1300
+ subtype: null,
1301
+ hyperlink: "https://www.google.com/"
1302
+ },
1303
+ {
1304
+ description: "",
1305
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/530154d6-f1eb-4e12-8c87-6a49e8269cc6",
1306
+ type: "text",
1307
+ "family-id": "34bccdf3-115a-4179-b76e-e38742093c03",
1308
+ title: "",
1309
+ id: "530154d6-f1eb-4e12-8c87-6a49e8269cc6",
1310
+ metadata: {},
1311
+ subtype: "summary",
1312
+ text:
1313
+ "<p>Dolor sit amet lorem ipsum, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>"
1314
+ },
1315
+ {
1316
+ description: "",
1317
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/19d75234-ba0a-47d1-b9d3-b79c936b5802",
1318
+ type: "text",
1319
+ "family-id": "25db509b-047b-44ae-adc4-608037504f9f",
1320
+ title: "",
1321
+ id: "19d75234-ba0a-47d1-b9d3-b79c936b5802",
1322
+ metadata: {
1323
+ content:
1324
+ "Dolor sit amet lorem ipsum, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
1325
+ attribution: "Quintype"
1326
+ },
1327
+ subtype: "quote",
1328
+ text:
1329
+ '<div><blockquote>Dolor sit amet lorem ipsum, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</blockquote><span class="attribution">Quintype</span></div>'
1330
+ },
1331
+ {
1332
+ description: "",
1333
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/624c8857-5f74-4494-a494-f9b6345e90d1",
1334
+ type: "text",
1335
+ "family-id": "518c37ee-41e7-4a33-b7ba-e22f8bdebf02",
1336
+ title: "",
1337
+ id: "624c8857-5f74-4494-a494-f9b6345e90d1",
1338
+ metadata: {
1339
+ content:
1340
+ "Dolor sit amet lorem ipsum, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
1341
+ attribution: "Quintype"
1342
+ },
1343
+ subtype: "blockquote",
1344
+ text:
1345
+ '<div><blockquote>Dolor sit amet lorem ipsum, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</blockquote><span class="attribution">Quintype</span></div>'
1346
+ },
1347
+ {
1348
+ description: "",
1349
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/8b61bb6b-695b-4022-aa41-ecfa42aa3b06",
1350
+ type: "file",
1351
+ "family-id": "debea3c3-2737-4e90-ae7a-a33ef3bbdc83",
1352
+ title: "",
1353
+ id: "8b61bb6b-695b-4022-aa41-ecfa42aa3b06",
1354
+ "file-name": "Doker.pdf",
1355
+ url: "https://thumbor-stg.assettype.com/ace/2020-09/d33ccb5b-a3c4-4376-8767-bedebe3e6f7c/Doker.pdf",
1356
+ "s3-key": "ace/2020-09/d33ccb5b-a3c4-4376-8767-bedebe3e6f7c/Doker.pdf",
1357
+ "content-type": "application/pdf",
1358
+ metadata: {
1359
+ "file-size": 28746
1360
+ },
1361
+ subtype: "attachment"
1362
+ },
1363
+ {
1364
+ description: "",
1365
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/85b7b83e-d1ac-4775-8c3c-5c48107db183",
1366
+ type: "text",
1367
+ "family-id": "4dcb50c4-19da-4d2d-830c-110e01dd0b24",
1368
+ title: "",
1369
+ id: "85b7b83e-d1ac-4775-8c3c-5c48107db183",
1370
+ metadata: {
1371
+ question: "<p>Grand Central Terminal, Park Avenue, New York is the world's</p>",
1372
+ answer: "<p>largest railway station</p>"
1373
+ },
1374
+ subtype: "q-and-a",
1375
+ text:
1376
+ '<div><div class="question"><p>Grand Central Terminal, Park Avenue, New York is the world\'s</p></div><div class="answer"><p>largest railway station</p></div></div>'
1377
+ },
1378
+ {
1379
+ description: "",
1380
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/bb010ef2-8e67-4b72-8d4a-a525c7c4818c",
1381
+ type: "text",
1382
+ "family-id": "278b4f10-60de-483c-9035-4f9826bcad4c",
1383
+ title: "",
1384
+ id: "bb010ef2-8e67-4b72-8d4a-a525c7c4818c",
1385
+ metadata: {
1386
+ question: "<p>For which of the following disciplines is Nobel Prize awarded?</p>",
1387
+ answer: "<p>Physics and Chemistry</p><p>Physiology or Medicine</p><p>Literature, Peace and Economics</p>"
1388
+ },
1389
+ subtype: "q-and-a",
1390
+ text:
1391
+ '<div><div class="question"><p>For which of the following disciplines is Nobel Prize awarded?</p></div><div class="answer"><p>Physics and Chemistry</p><p>Physiology or Medicine</p><p>Literature, Peace and Economics</p></div></div>'
1392
+ }
1393
+ ],
1394
+ "card-updated-at": 1599070341951,
1395
+ "content-version-id": "4a3303f2-250d-4e57-9411-4e6b6ff30cd3",
1396
+ "card-added-at": 1599070000242,
1397
+ status: "draft",
1398
+ id: "d100ec7c-7fed-4cf9-b376-d887371f15e6",
1399
+ "content-id": "d100ec7c-7fed-4cf9-b376-d887371f15e6",
1400
+ version: 9,
1401
+ metadata: {
1402
+ "social-share": {
1403
+ shareable: false,
1404
+ title: "Karnataka tourism",
1405
+ message: null,
1406
+ image: {
1407
+ key: "ace/2020-08/04562266-d044-4cf3-8ff3-58ab0b084d33/f4da51e521694ef3b14820c2fd32709e691f058e.jpg",
1408
+ url: null,
1409
+ attribution: "Credits: Quintype",
1410
+ caption: null,
1411
+ metadata: {
1412
+ "original-url":
1413
+ "https://s.rfi.fr/media/display/ddb13a2c-e9b1-11ea-9cf1-005056bf87d6/w:1280/p:16x9/f4da51e521694ef3b14820c2fd32709e691f058e.jpg",
1414
+ width: 1280,
1415
+ height: 720
1416
+ }
1417
+ }
1418
+ },
1419
+ attributes: {}
1420
+ }
1421
+ },
1422
+ {
1423
+ "story-elements": [
1424
+ {
1425
+ description: "",
1426
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/a22e71ed-d2e6-442c-b30c-4eaae392241e",
1427
+ type: "text",
1428
+ "family-id": "d5e20362-1fc4-46a9-9e5f-cfd3f399b0e8",
1429
+ title: "",
1430
+ id: "a22e71ed-d2e6-442c-b30c-4eaae392241e",
1431
+ metadata: {},
1432
+ subtype: null,
1433
+ text:
1434
+ "<p>Dolor sit amet lorem ipsum, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>"
1435
+ },
1436
+ {
1437
+ description: "",
1438
+ "image-metadata": {
1439
+ "original-url":
1440
+ "https://s.rfi.fr/media/display/e21e72c0-ec66-11ea-9857-005056a964fe/w:1280/p:16x9/8bfca0efa60a7b897690bea687d9cb3b991611ff_0.jpg",
1441
+ width: 1280,
1442
+ height: 720
1443
+ },
1444
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/613fcdb4-c551-4deb-be2f-ff50428235ec",
1445
+ type: "image",
1446
+ "family-id": "587b768d-9169-45c7-be30-98caa96b5c27",
1447
+ "image-attribution": "",
1448
+ title: "",
1449
+ id: "613fcdb4-c551-4deb-be2f-ff50428235ec",
1450
+ "image-s3-key":
1451
+ "ace/2020-09/12d48d3c-dac1-4b99-b961-a724c92c6cc2/8bfca0efa60a7b897690bea687d9cb3b991611ff_0.jpg",
1452
+ metadata: {},
1453
+ subtype: null,
1454
+ hyperlink: "https://www.google.com/"
1455
+ },
1456
+ {
1457
+ description: "",
1458
+ "page-url": "/story/231f55c0-ba92-4da6-a2c0-697c520f860f/element/3f57c4cb-0736-4c89-94a2-3891e6cf1dce",
1459
+ type: "text",
1460
+ "family-id": "28688b87-0abc-4703-b3be-6ad78de90f72",
1461
+ title: "",
1462
+ id: "3f57c4cb-0736-4c89-94a2-3891e6cf1dce",
1463
+ metadata: {},
1464
+ subtype: "summary",
1465
+ text:
1466
+ "<p>Dolor sit amet lorem ipsum, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>"
1467
+ },
1468
+ {
1469
+ id: "00000000-0000-0000-0000-000000000000",
1470
+ description: "",
1471
+ title: "",
1472
+ subtype: null,
1473
+ type: "text",
1474
+ text: ' <p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1475
+ metadata: {
1476
+ "promotional-message": true
1477
+ }
1478
+ }
1479
+ ],
1480
+ "card-updated-at": 1599072759773,
1481
+ "content-version-id": "d92aae5f-7d65-4260-853f-c440373905c4",
1482
+ "card-added-at": 1599072125631,
1483
+ status: "draft",
1484
+ id: "92cea38b-f39a-4e1d-b510-9342cc6e792d",
1485
+ "content-id": "92cea38b-f39a-4e1d-b510-9342cc6e792d",
1486
+ version: 2,
1487
+ metadata: {
1488
+ "social-share": {
1489
+ shareable: false,
1490
+ title: "Karnataka tourism",
1491
+ message: null,
1492
+ image: {
1493
+ key: "ace/2020-09/12d48d3c-dac1-4b99-b961-a724c92c6cc2/8bfca0efa60a7b897690bea687d9cb3b991611ff_0.jpg",
1494
+ url: null,
1495
+ attribution: "",
1496
+ caption: null,
1497
+ metadata: {
1498
+ "original-url":
1499
+ "https://s.rfi.fr/media/display/e21e72c0-ec66-11ea-9857-005056a964fe/w:1280/p:16x9/8bfca0efa60a7b897690bea687d9cb3b991611ff_0.jpg",
1500
+ width: 1280,
1501
+ height: 720
1502
+ }
1503
+ }
1504
+ },
1505
+ attributes: {}
1506
+ }
1507
+ }
1508
+ ],
1509
+ url: "https://ace-web.qtstage.io/child-sec/2020/09/02/karnataka-tourism",
1510
+ "story-version-id": "fb04a248-7855-484c-ab2f-9b71e45fe7e7",
1511
+ "content-type": "story",
1512
+ "content-updated-at": 1599115422655,
1513
+ "author-id": 187245,
1514
+ "owner-id": 187245,
1515
+ "linked-story-ids": [],
1516
+ "promotional-message": ' <p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1517
+ "asana-project-id": null,
1518
+ "first-published-at": 1671083514919,
1519
+ "hero-image-caption": "Supreme Court Justice Clarence Thomas in 2007. ",
1520
+ version: 19,
1521
+ "story-template": "photo",
1522
+ "sequence-no": null,
1523
+ "created-at": 1599115401203,
1524
+ authors: [
1525
+ {
1526
+ slug: "shreya-shukla-2",
1527
+ social: {
1528
+ twitter: {
1529
+ handle: "shuklashreya801"
1530
+ }
1531
+ },
1532
+ name: "Shreya Shukla",
1533
+ "contributor-role": {
1534
+ id: 873,
1535
+ name: "Author"
1536
+ },
1537
+ "avatar-url":
1538
+ "https://lh6.googleusercontent.com/-pBdJGAfN81c/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rfmrjS-gWdYzH3Gtmuib3KbVLdixw/photo.jpg",
1539
+ bio:
1540
+ "At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi ",
1541
+ id: 187245,
1542
+ "avatar-s3-key": null,
1543
+ "twitter-handle": "shuklashreya801"
1544
+ }
1545
+ ],
1546
+ metadata: {
1547
+ "card-share": {
1548
+ shareable: false
1549
+ }
1550
+ },
1551
+ "publish-at": null,
1552
+ "assignee-name": "Shreya Shukla"
1553
+ };
1554
+
1555
+ export const dummyLiveBlogStory = {
1556
+ access: "subscription",
1557
+ "updated-at": 1601277247375,
1558
+ seo: { "meta-keywords": [], "claim-reviews": { story: null } },
1559
+ "assignee-id": 425675,
1560
+ "author-name": "Bindiya H",
1561
+ "hero-image-hyperlink": "https://www.google.com",
1562
+ tags: [
1563
+ {
1564
+ id: 163463,
1565
+ name: "entertainment",
1566
+ "meta-description": null,
1567
+ "meta-title": null,
1568
+ slug: "entertainment",
1569
+ "tag-type": "Tag"
1570
+ },
1571
+ {
1572
+ id: 1209598,
1573
+ name: "government",
1574
+ "meta-description": null,
1575
+ "meta-title": null,
1576
+ slug: "government",
1577
+ "tag-type": "Tag"
1578
+ },
1579
+ { id: 1409326, name: "liveblog", "meta-description": null, "meta-title": null, slug: "liveblog", "tag-type": "Tag" }
1580
+ ],
1581
+ customSlotAfterStory: {
1582
+ config: { targetingId: "" },
1583
+ layout: "Leaderboard",
1584
+ layoutLabel: "Leaderboard",
1585
+ type: "ad"
1586
+ },
1587
+ headline: "Live blog story ",
1588
+ "storyline-id": null,
1589
+ votes: {},
1590
+ "story-content-id": "4270e6db-f238-46d4-8b6d-788ede41760e",
1591
+ slug: "entertainment/2020/09/28/live-blog-story-3",
1592
+ "last-published-at": 1601277247484,
1593
+ subheadline: "At vero eos et accusamus iusto odio dignissimos ducimus qui blanditiis pre.",
1594
+ alternative: {},
1595
+ sections: [
1596
+ {
1597
+ "domain-slug": null,
1598
+ slug: "entertainment",
1599
+ name: "Entertainment",
1600
+ "section-url": "https://ace-web.qtstage.io/news/entertainment",
1601
+ id: 6447,
1602
+ "parent-id": 38586,
1603
+ "display-name": "Entertainment",
1604
+ collection: { slug: "entertainment", name: "Entertainment", id: 3946 },
1605
+ data: null
1606
+ }
1607
+ ],
1608
+ "story-audio": { "s3-key": null },
1609
+ "read-time": 0,
1610
+ "access-level-value": null,
1611
+ "content-created-at": 1601276754377,
1612
+ "owner-name": "Bindiya H",
1613
+ "custom-slug": null,
1614
+ "push-notification": null,
1615
+ "publisher-id": 97,
1616
+ "hero-image-metadata": { "mime-type": "image/jpeg", "focus-point": [975, 375], width: 1682, height: 820 },
1617
+ comments: null,
1618
+ "word-count": 0,
1619
+ entities: {},
1620
+ "published-at": 1601277247484,
1621
+ "is-live-blog": true,
1622
+ "breaking-news-linked-story-id": null,
1623
+ "storyline-title": null,
1624
+ summary: null,
1625
+ "push-notification-title": null,
1626
+ "external-id": null,
1627
+ "canonical-url": null,
1628
+ "is-amp-supported": true,
1629
+ autotags: [],
1630
+ "linked-entities": [],
1631
+ status: "published",
1632
+ "hero-image-attribution": "Google",
1633
+ "bullet-type": "123",
1634
+ id: "4270e6db-f238-46d4-8b6d-788ede41760e",
1635
+ "hero-image-s3-key": "ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1636
+ contributors: [],
1637
+ "associated-series-collection-ids": [],
1638
+ cards: [
1639
+ {
1640
+ "story-elements": [
1641
+ {
1642
+ description: "",
1643
+ "page-url": "/story/4270e6db-f238-46d4-8b6d-788ede41760e/element/3a569347-2bed-4763-bf3b-b58df01ad6cc",
1644
+ type: "title",
1645
+ "family-id": "844074a7-2b25-423a-b3c8-88461db91a26",
1646
+ title: "",
1647
+ id: "3a569347-2bed-4763-bf3b-b58df01ad6cc",
1648
+ metadata: {},
1649
+ subtype: null,
1650
+ text: "Sed ut perspiciatis unde omnis iste natus error"
1651
+ },
1652
+ {
1653
+ description: "",
1654
+ "page-url": "/story/4270e6db-f238-46d4-8b6d-788ede41760e/element/739cf8a1-26d8-48fb-8cbf-771b1161ed68",
1655
+ type: "text",
1656
+ "family-id": "6b3e107b-02d4-4d72-b523-64bbf809246b",
1657
+ title: "",
1658
+ id: "739cf8a1-26d8-48fb-8cbf-771b1161ed68",
1659
+ metadata: {},
1660
+ subtype: null,
1661
+ text:
1662
+ "<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>"
1663
+ }
1664
+ ],
1665
+ "card-updated-at": 1601431229891,
1666
+ "content-version-id": "254fdb13-fa12-426f-a50b-8846847158a5",
1667
+ "card-added-at": 1601431063377,
1668
+ status: "draft",
1669
+ id: "5c8900ed-4676-45f4-a7b6-aa28746370fc",
1670
+ "content-id": "5c8900ed-4676-45f4-a7b6-aa28746370fc",
1671
+ version: 2,
1672
+ metadata: {
1673
+ "social-share": {
1674
+ shareable: false,
1675
+ title: "Live Updates",
1676
+ message: null,
1677
+ image: {
1678
+ key: "ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1679
+ url: "https://thumbor-stg.assettype.com/ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1680
+ attribution: "Google",
1681
+ caption: "Saque ipsa quae ab illo inventore veritatis et quip",
1682
+ metadata: { "mime-type": "image/jpeg", "focus-point": [975, 375], width: 1682, height: 820 }
1683
+ }
1684
+ },
1685
+ attributes: {}
1686
+ }
1687
+ },
1688
+ {
1689
+ "story-elements": [
1690
+ {
1691
+ description: "",
1692
+ "page-url": "/story/4270e6db-f238-46d4-8b6d-788ede41760e/element/8ee1c6ed-57d8-4891-8a77-e789b2d33c29",
1693
+ type: "title",
1694
+ "family-id": "fab4dbe9-acce-43cb-8d3e-3b7d83afe04a",
1695
+ title: "",
1696
+ id: "8ee1c6ed-57d8-4891-8a77-e789b2d33c29",
1697
+ metadata: {},
1698
+ subtype: null,
1699
+ text: "At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium"
1700
+ },
1701
+ {
1702
+ description: "",
1703
+ "page-url": "/story/4270e6db-f238-46d4-8b6d-788ede41760e/element/78142993-d358-4c17-b610-9c80101f32b1",
1704
+ type: "text",
1705
+ "family-id": "ec1e356a-d274-4f71-9ef9-4f070c907894",
1706
+ title: "",
1707
+ id: "78142993-d358-4c17-b610-9c80101f32b1",
1708
+ metadata: {},
1709
+ subtype: null,
1710
+ text:
1711
+ "<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem.</p>"
1712
+ },
1713
+ {
1714
+ description: "",
1715
+ "image-url":
1716
+ "https://thumbor-stg.assettype.com/ace/2020-09/55df83b2-3181-49f3-b1d9-31cc91dda1be/3aae2ba50b3667e9f02e3674a37581fae1ebaf74_3.jpg",
1717
+ "member-id": 934395,
1718
+ "image-metadata": {
1719
+ "original-url":
1720
+ "https://s.rfi.fr/media/display/a1b6b938-01c2-11eb-ba87-005056a964fe/w:1280/p:16x9/3aae2ba50b3667e9f02e3674a37581fae1ebaf74_3.jpg",
1721
+ width: 1280,
1722
+ height: 720
1723
+ },
1724
+ "uploaded-at": 1601327722596,
1725
+ "page-url": "/story/4270e6db-f238-46d4-8b6d-788ede41760e/element/bf739a18-6878-485a-adc7-d608d767f123",
1726
+ type: "image",
1727
+ "family-id": "98f289da-3a92-48e0-ac66-2c0381b9fbc8",
1728
+ "image-attribution": "",
1729
+ title: "Premier League",
1730
+ id: "bf739a18-6878-485a-adc7-d608d767f123",
1731
+ "image-s3-key":
1732
+ "ace/2020-09/55df83b2-3181-49f3-b1d9-31cc91dda1be/3aae2ba50b3667e9f02e3674a37581fae1ebaf74_3.jpg",
1733
+ metadata: {},
1734
+ subtype: null,
1735
+ hyperlink: "https://www.google.com/"
1736
+ }
1737
+ ],
1738
+ "card-updated-at": 1601431229891,
1739
+ "content-version-id": "2640b2cd-e57e-47b8-9a09-0c9e61bec4a9",
1740
+ "card-added-at": 1601372749401,
1741
+ status: "draft",
1742
+ id: "42c89975-2f45-472e-ae09-73fec6f020b7",
1743
+ "content-id": "42c89975-2f45-472e-ae09-73fec6f020b7",
1744
+ version: 3,
1745
+ metadata: {
1746
+ "social-share": {
1747
+ shareable: false,
1748
+ title: "Live Updates",
1749
+ message: null,
1750
+ image: {
1751
+ key: "ace/2020-09/55df83b2-3181-49f3-b1d9-31cc91dda1be/3aae2ba50b3667e9f02e3674a37581fae1ebaf74_3.jpg",
1752
+ url:
1753
+ "https://thumbor-stg.assettype.com/ace/2020-09/55df83b2-3181-49f3-b1d9-31cc91dda1be/3aae2ba50b3667e9f02e3674a37581fae1ebaf74_3.jpg",
1754
+ attribution: "",
1755
+ caption: null,
1756
+ metadata: {
1757
+ "original-url":
1758
+ "https://s.rfi.fr/media/display/a1b6b938-01c2-11eb-ba87-005056a964fe/w:1280/p:16x9/3aae2ba50b3667e9f02e3674a37581fae1ebaf74_3.jpg",
1759
+ width: 1280,
1760
+ height: 720
1761
+ }
1762
+ }
1763
+ },
1764
+ attributes: {}
1765
+ }
1766
+ },
1767
+ {
1768
+ "story-elements": [
1769
+ {
1770
+ description: "",
1771
+ "page-url": "/story/4270e6db-f238-46d4-8b6d-788ede41760e/element/1cef89d6-c934-4f3c-b4d1-56460eb076e4",
1772
+ type: "title",
1773
+ "family-id": "f73118f0-74b8-4b9f-b2f6-c3b26852e110",
1774
+ title: "",
1775
+ id: "1cef89d6-c934-4f3c-b4d1-56460eb076e4",
1776
+ metadata: {},
1777
+ subtype: null,
1778
+ text: "Sed ut perspiciatis unde omnis iste natus error "
1779
+ }
1780
+ ],
1781
+ "card-updated-at": 1601431229891,
1782
+ "content-version-id": "89935f86-dba4-4f90-b7ea-f59db58554f7",
1783
+ "card-added-at": 1601289122939,
1784
+ status: "draft",
1785
+ id: "69fb8bd4-77e8-4b17-bca4-c229b92ce57f",
1786
+ "content-id": "69fb8bd4-77e8-4b17-bca4-c229b92ce57f",
1787
+ version: 6,
1788
+ metadata: {
1789
+ "social-share": {
1790
+ shareable: false,
1791
+ title: "Live Updates",
1792
+ message: null,
1793
+ image: {
1794
+ key: "ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1795
+ url: "https://thumbor-stg.assettype.com/ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1796
+ attribution: "Google",
1797
+ caption: "Saque ipsa quae ab illo inventore veritatis et quip",
1798
+ metadata: { "mime-type": "image/jpeg", "focus-point": [975, 375], width: 1682, height: 820 }
1799
+ }
1800
+ },
1801
+ attributes: { "key-event": true }
1802
+ }
1803
+ },
1804
+ {
1805
+ "story-elements": [
1806
+ {
1807
+ description: "",
1808
+ "page-url": "/story/4270e6db-f238-46d4-8b6d-788ede41760e/element/1cef89d6-c934-4f3c-b4d1-56460eb076e4",
1809
+ type: "title",
1810
+ "family-id": "f73118f0-74b8-4b9f-b2f6-c3b26852e110",
1811
+ title: "",
1812
+ id: "1cef89d6-c934-4f3c-b4d1-56460eb076e4",
1813
+ metadata: {},
1814
+ subtype: null,
1815
+ text: "Sed ut perspiciatis unde omnis iste natus error "
1816
+ }
1817
+ ],
1818
+ "card-updated-at": 1601431229891,
1819
+ "content-version-id": "89935f86-dba4-4f90-b7ea-f59db58554f7",
1820
+ "card-added-at": 1601289122939,
1821
+ status: "draft",
1822
+ id: "69fb8bd4-77e8-4b17-bca4-c229b92ce57f",
1823
+ "content-id": "69fb8bd4-77e8-4b17-bca4-c229b92ce57f",
1824
+ version: 6,
1825
+ metadata: {
1826
+ "social-share": {
1827
+ shareable: false,
1828
+ title: "Live Updates",
1829
+ message: null,
1830
+ image: {
1831
+ key: "ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1832
+ url: "https://thumbor-stg.assettype.com/ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1833
+ attribution: "Google",
1834
+ caption: "Saque ipsa quae ab illo inventore veritatis et quip",
1835
+ metadata: { "mime-type": "image/jpeg", "focus-point": [975, 375], width: 1682, height: 820 }
1836
+ }
1837
+ },
1838
+ attributes: { "key-event": true }
1839
+ }
1840
+ },
1841
+ {
1842
+ "story-elements": [
1843
+ {
1844
+ description: "",
1845
+ "page-url": "/story/4270e6db-f238-46d4-8b6d-788ede41760e/element/1cef89d6-c934-4f3c-b4d1-56460eb076e4",
1846
+ type: "title",
1847
+ "family-id": "f73118f0-74b8-4b9f-b2f6-c3b26852e110",
1848
+ title: "",
1849
+ id: "1cef89d6-c934-4f3c-b4d1-56460eb076e4",
1850
+ metadata: {},
1851
+ subtype: null,
1852
+ text: "Sed ut perspiciatis unde omnis iste natus error "
1853
+ }
1854
+ ],
1855
+ "card-updated-at": 1601431229891,
1856
+ "content-version-id": "89935f86-dba4-4f90-b7ea-f59db58554f7",
1857
+ "card-added-at": 1601289122939,
1858
+ status: "draft",
1859
+ id: "69fb8bd4-77e8-4b17-bca4-c229b92ce57f",
1860
+ "content-id": "69fb8bd4-77e8-4b17-bca4-c229b92ce57f",
1861
+ version: 6,
1862
+ metadata: {
1863
+ "social-share": {
1864
+ shareable: false,
1865
+ title: "Live Updates",
1866
+ message: null,
1867
+ image: {
1868
+ key: "ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1869
+ url: "https://thumbor-stg.assettype.com/ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1870
+ attribution: "Google",
1871
+ caption: "Saque ipsa quae ab illo inventore veritatis et quip",
1872
+ metadata: { "mime-type": "image/jpeg", "focus-point": [975, 375], width: 1682, height: 820 }
1873
+ }
1874
+ },
1875
+ attributes: { "key-event": true }
1876
+ }
1877
+ },
1878
+ {
1879
+ "story-elements": [
1880
+ {
1881
+ description: "",
1882
+ "page-url": "/story/4270e6db-f238-46d4-8b6d-788ede41760e/element/b62c0458-b8eb-4f3d-9f3b-86d04447a909",
1883
+ type: "title",
1884
+ "family-id": "b716edab-a036-4db6-8ca1-9d119afcac3d",
1885
+ title: "",
1886
+ id: "b62c0458-b8eb-4f3d-9f3b-86d04447a909",
1887
+ metadata: {},
1888
+ subtype: null,
1889
+ text: "At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium"
1890
+ }
1891
+ ],
1892
+ "card-updated-at": 1601277247407,
1893
+ "content-version-id": "49686375-3b2c-4f02-93a8-e47d1a063e1f",
1894
+ "card-added-at": 1601277247407,
1895
+ status: "draft",
1896
+ id: "ea05dbab-e2d7-41f2-9055-5287bb659c6f",
1897
+ "content-id": "ea05dbab-e2d7-41f2-9055-5287bb659c6f",
1898
+ version: 1,
1899
+ metadata: {
1900
+ "social-share": {
1901
+ shareable: false,
1902
+ title: "Live Updates",
1903
+ message: null,
1904
+ image: {
1905
+ key: "ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1906
+ url: "https://thumbor-stg.assettype.com/ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1907
+ attribution: "Google",
1908
+ caption: "Saque ipsa quae ab illo inventore veritatis et quip",
1909
+ metadata: { "mime-type": "image/jpeg", "focus-point": [975, 375], width: 1682, height: 820 }
1910
+ }
1911
+ },
1912
+ attributes: { "key-event": true }
1913
+ }
1914
+ },
1915
+ {
1916
+ "story-elements": [
1917
+ {
1918
+ description: "",
1919
+ "page-url": "/story/4270e6db-f238-46d4-8b6d-788ede41760e/element/3ca72d69-09d3-47be-8921-a993c111fd9e",
1920
+ type: "title",
1921
+ "family-id": "6ddbc420-4f89-488e-9332-d16ed4e4c481",
1922
+ title: "",
1923
+ id: "3ca72d69-09d3-47be-8921-a993c111fd9e",
1924
+ metadata: {},
1925
+ subtype: null,
1926
+ text: "Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus"
1927
+ },
1928
+ {
1929
+ id: "00000000-0000-0000-0000-000000000000",
1930
+ description: "",
1931
+ title: "",
1932
+ subtype: null,
1933
+ type: "text",
1934
+ text: ' <p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1935
+ metadata: { "promotional-message": true }
1936
+ }
1937
+ ],
1938
+ "card-updated-at": 1601277247407,
1939
+ "content-version-id": "0acfbcb5-c770-498e-8439-a137e031dede",
1940
+ "card-added-at": 1601277247407,
1941
+ status: "draft",
1942
+ id: "e4bf3f6e-cb5f-4a3e-b1cd-965b523da0e3",
1943
+ "content-id": "e4bf3f6e-cb5f-4a3e-b1cd-965b523da0e3",
1944
+ version: 1,
1945
+ metadata: {
1946
+ "social-share": {
1947
+ shareable: false,
1948
+ title: "Live Updates",
1949
+ message: null,
1950
+ image: {
1951
+ key: "ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1952
+ url: "https://thumbor-stg.assettype.com/ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
1953
+ attribution: "Google",
1954
+ caption: "Saque ipsa quae ab illo inventore veritatis et quip",
1955
+ metadata: { "mime-type": "image/jpeg", "focus-point": [975, 375], width: 1682, height: 820 }
1956
+ }
1957
+ },
1958
+ attributes: { "key-event": true }
1959
+ }
1960
+ }
1961
+ ],
1962
+ url: "https://ace-web.qtstage.io/entertainment/2020/09/28/live-blog-story-3",
1963
+ "story-version-id": "dbc68251-e21d-4b1f-b8d2-e6ec972249ce",
1964
+ "content-type": "story",
1965
+ "content-updated-at": 1601431232290,
1966
+ "author-id": 425675,
1967
+ "owner-id": 425675,
1968
+ "linked-story-ids": [],
1969
+ "promotional-message": ' <p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
1970
+ "asana-project-id": null,
1971
+ "first-published-at": 1671083514919,
1972
+ "hero-image-caption": "Saque ipsa quae ab illo inventore veritatis et quip",
1973
+ version: 10,
1974
+ "story-template": "live-blog",
1975
+ "sequence-no": null,
1976
+ "created-at": 1601431229862,
1977
+ authors: [
1978
+ {
1979
+ slug: "bindiya-h",
1980
+ social: { twitter: { handle: "h_bindiya" } },
1981
+ name: "Bindiya H",
1982
+ "contributor-role": { id: 873, name: "Author" },
1983
+ "avatar-url":
1984
+ "https://lh6.googleusercontent.com/-T9_sTsD4Qco/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rc0KarItXiZkh68r6sgS4QwAApcbg/photo.jpg",
1985
+ bio: "Biooo ?",
1986
+ id: 425675,
1987
+ "avatar-s3-key": null,
1988
+ "twitter-handle": "h_bindiya"
1989
+ },
1990
+ {
1991
+ slug: "bindiya-h",
1992
+ social: { twitter: { handle: "h_bindiya" } },
1993
+ name: "Raman V",
1994
+ "contributor-role": { id: 873, name: "Guest Author" },
1995
+ "avatar-url":
1996
+ "https://lh6.googleusercontent.com/-T9_sTsD4Qco/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rc0KarItXiZkh68r6sgS4QwAApcbg/photo.jpg",
1997
+ bio: "Biooo ?",
1998
+ id: 425676,
1999
+ "avatar-s3-key": null,
2000
+ "twitter-handle": "h_bindiya"
2001
+ }
2002
+ ],
2003
+ metadata: { "is-closed": false, "card-share": { shareable: false } },
2004
+ "hero-image-url": "https://thumbor-stg.assettype.com/ace/2019-03/f25cc9c1-917c-4a19-9c9a-fa498f84f17b/test.jpg",
2005
+ "publish-at": null,
2006
+ "assignee-name": "Bindiya H"
2007
+ };
2008
+
2009
+ export const dummyListicleStory = {
2010
+ access: "subscription",
2011
+ "updated-at": 1602234193104,
2012
+ seo: { "claim-reviews": { story: null } },
2013
+ "assignee-id": 927927,
2014
+ "author-name": "Pravin Atigre",
2015
+ "hero-image-hyperlink": "https://www.google.com",
2016
+ tags: [
2017
+ { id: 1421524, name: "health", "meta-description": null, "meta-title": null, slug: "health", "tag-type": "Tag" },
2018
+ { id: 1421525, name: "culture", "meta-description": null, "meta-title": null, slug: "culture", "tag-type": "Tag" },
2019
+ {
2020
+ id: 1421526,
2021
+ name: "workplace",
2022
+ "meta-description": null,
2023
+ "meta-title": null,
2024
+ slug: "workplace",
2025
+ "tag-type": "Tag"
2026
+ }
2027
+ ],
2028
+ customSlotAfterStory: {
2029
+ config: { targetingId: "" },
2030
+ layout: "Leaderboard",
2031
+ layoutLabel: "Leaderboard",
2032
+ type: "ad"
2033
+ },
2034
+ headline: "It pays to be kind: improving workplace culture through kindness",
2035
+ "storyline-id": null,
2036
+ votes: {},
2037
+ "story-content-id": "307e5a1b-5cf0-4321-8193-827b2add174f",
2038
+ slug: "health/2020/10/08/it-pays-to-be-kind-improving-workplace-culture-through-kindness",
2039
+ "last-published-at": 1602234199516,
2040
+ subheadline: "Neque porro quisquam est, qui dolorem ipsum quia dolor sit.",
2041
+ alternative: {},
2042
+ sections: [
2043
+ {
2044
+ "domain-slug": null,
2045
+ slug: "health",
2046
+ name: "Health",
2047
+ "section-url": "https://ace-web.qtstage.io/news/health",
2048
+ id: 11181,
2049
+ "parent-id": 38586,
2050
+ "display-name": "Health",
2051
+ collection: { slug: "health", name: "Health", id: 15603 },
2052
+ data: null
2053
+ }
2054
+ ],
2055
+ "story-audio": {
2056
+ "s3-key": "ace/story-audio/2020-10/307e5a1b-5cf0-4321-8193-827b2add174f/.0e6d9a89-3bb7-47b0-8bee-a34b5f75f5e9.mp3"
2057
+ },
2058
+ "read-time": 2,
2059
+ "access-level-value": null,
2060
+ "content-created-at": 1602154991378,
2061
+ "owner-name": "Pravin Atigre",
2062
+ "custom-slug": null,
2063
+ "push-notification": null,
2064
+ "publisher-id": 97,
2065
+ "hero-image-metadata": {
2066
+ width: 1600,
2067
+ height: 900,
2068
+ "mime-type": "image/jpeg",
2069
+ "file-size": 228062,
2070
+ "file-name": "seo.jpg"
2071
+ },
2072
+ comments: null,
2073
+ "word-count": 232,
2074
+ entities: {},
2075
+ "published-at": 1602234199516,
2076
+ "is-live-blog": false,
2077
+ "breaking-news-linked-story-id": null,
2078
+ "storyline-title": null,
2079
+ summary: null,
2080
+ "push-notification-title": null,
2081
+ "external-id": null,
2082
+ "canonical-url": null,
2083
+ "is-amp-supported": true,
2084
+ autotags: [],
2085
+ "linked-entities": [],
2086
+ status: "published",
2087
+ "hero-image-attribution": "Credits: Asif Asharaf",
2088
+ "bullet-type": "123",
2089
+ id: "307e5a1b-5cf0-4321-8193-827b2add174f",
2090
+ "hero-image-s3-key": "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
2091
+ contributors: [],
2092
+ "associated-series-collection-ids": [],
2093
+ cards: [
2094
+ {
2095
+ "story-elements": [
2096
+ {
2097
+ description: "",
2098
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/5ffad09b-7db1-489a-8308-f7d63c745c70",
2099
+ type: "title",
2100
+ "family-id": "d3bf6239-6723-4291-a7d1-6164c808d07d",
2101
+ title: "",
2102
+ id: "5ffad09b-7db1-489a-8308-f7d63c745c70",
2103
+ metadata: {},
2104
+ subtype: null,
2105
+ text: "Nemo enim ipsam voluptatem quia volup tas sit aspernatur aut odit aut fugit"
2106
+ },
2107
+ {
2108
+ description: "",
2109
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/f24c83a4-dd3d-47fe-8d05-90f6ada10632",
2110
+ type: "text",
2111
+ "family-id": "0a4af70b-2434-4038-8134-87cdc60fc379",
2112
+ title: "",
2113
+ id: "f24c83a4-dd3d-47fe-8d05-90f6ada10632",
2114
+ metadata: {},
2115
+ subtype: null,
2116
+ text:
2117
+ "<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>"
2118
+ }
2119
+ ],
2120
+ "card-updated-at": 1602234185925,
2121
+ "content-version-id": "9378abd6-2cec-4bdd-88b2-005cc6d1775f",
2122
+ "card-added-at": 1602155475842,
2123
+ status: "draft",
2124
+ id: "aeb377da-eb9f-4013-ae19-fb6fb821e926",
2125
+ "content-id": "aeb377da-eb9f-4013-ae19-fb6fb821e926",
2126
+ version: 9,
2127
+ metadata: {
2128
+ "social-share": {
2129
+ shareable: false,
2130
+ title: "It pays to be kind: improving workplace culture through kindness",
2131
+ message: null,
2132
+ image: {
2133
+ key: "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
2134
+ url: null,
2135
+ attribution: "Credits: Asif Asharaf",
2136
+ caption: "Saque ipsa quae ab illo inventore veritatis et quip",
2137
+ metadata: {
2138
+ width: 1600,
2139
+ height: 900,
2140
+ "mime-type": "image/jpeg",
2141
+ "file-size": 228062,
2142
+ "file-name": "seo.jpg"
2143
+ }
2144
+ }
2145
+ },
2146
+ attributes: {}
2147
+ }
2148
+ },
2149
+ {
2150
+ "story-elements": [
2151
+ {
2152
+ description: "",
2153
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/82244bcd-c453-41c4-a215-bb038f569375",
2154
+ type: "title",
2155
+ "family-id": "11f060e0-a1aa-4963-9778-24f6b6eca401",
2156
+ title: "",
2157
+ id: "82244bcd-c453-41c4-a215-bb038f569375",
2158
+ metadata: {},
2159
+ subtype: null,
2160
+ text: "Nemo enim ipsam voluptatem quia volup tas sit aspernatur aut odit aut fugit"
2161
+ },
2162
+ {
2163
+ description: "",
2164
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/ae7131f6-450a-4589-9995-812ba5832c58",
2165
+ type: "text",
2166
+ "family-id": "a970d458-c7d8-4512-8420-4bf3a4046caf",
2167
+ title: "",
2168
+ id: "ae7131f6-450a-4589-9995-812ba5832c58",
2169
+ metadata: {},
2170
+ subtype: null,
2171
+ text:
2172
+ "<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>"
2173
+ }
2174
+ ],
2175
+ "card-updated-at": 1602155725655,
2176
+ "content-version-id": "43ff8777-4176-4294-95a3-5aaee8e34537",
2177
+ "card-added-at": 1602155520864,
2178
+ status: "draft",
2179
+ id: "70988ea9-90a0-42ea-b2b1-1f7374de06e1",
2180
+ "content-id": "70988ea9-90a0-42ea-b2b1-1f7374de06e1",
2181
+ version: 7,
2182
+ metadata: {
2183
+ "social-share": {
2184
+ shareable: false,
2185
+ title: "It pays to be kind: improving workplace culture through kindness",
2186
+ message: null,
2187
+ image: {
2188
+ key: "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
2189
+ url: null,
2190
+ attribution: "Credits: Asif Asharaf",
2191
+ caption: "Saque ipsa quae ab illo inventore veritatis et quip",
2192
+ metadata: {
2193
+ width: 1600,
2194
+ height: 900,
2195
+ "mime-type": "image/jpeg",
2196
+ "file-size": 228062,
2197
+ "file-name": "seo.jpg"
2198
+ }
2199
+ }
2200
+ },
2201
+ attributes: {}
2202
+ }
2203
+ },
2204
+ {
2205
+ "story-elements": [
2206
+ {
2207
+ description: "",
2208
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/d3cbfcce-a503-499d-80cd-52fce2215ef3",
2209
+ type: "title",
2210
+ "family-id": "1b8bcf8e-19cb-4d16-ac0e-bb4f0939dbbf",
2211
+ title: "",
2212
+ id: "d3cbfcce-a503-499d-80cd-52fce2215ef3",
2213
+ metadata: {},
2214
+ subtype: null,
2215
+ text: "Nemo enim ipsam voluptatem quia volup tas sit aspernatur aut odit aut fugit"
2216
+ },
2217
+ {
2218
+ description: "",
2219
+ "image-metadata": {
2220
+ width: 960,
2221
+ height: 540,
2222
+ "mime-type": "image/jpeg",
2223
+ "file-size": 26544,
2224
+ "file-name": "quintype-website_2020-01_2f2ba42d-7a45-4a60-b4af-7d4758f27f5d_Untitled_presentation.jpg"
2225
+ },
2226
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/a7f79ffa-4be0-4207-a495-a035a020cac3",
2227
+ type: "image",
2228
+ "family-id": "6d5d82b8-f879-476d-84a2-1f62f74acdd5",
2229
+ "image-attribution": "Jon Doe",
2230
+ title: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.",
2231
+ id: "a7f79ffa-4be0-4207-a495-a035a020cac3",
2232
+ "image-s3-key":
2233
+ "ace/2020-10/920f35b9-023e-44d2-b4de-69dce8587bf7/quintype_website_2020_01_2f2ba42d_7a45_4a60_b4af_7d4758f27f5d_Untitled_presentation.jpg",
2234
+ metadata: {},
2235
+ subtype: null,
2236
+ hyperlink: "https://www.google.com/"
2237
+ },
2238
+ {
2239
+ description: "",
2240
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/2a248f86-3181-4456-9f96-f7e56668fbc1",
2241
+ type: "text",
2242
+ "family-id": "b9a1fdd8-5727-4e5a-86a6-467922aa155f",
2243
+ title: "",
2244
+ id: "2a248f86-3181-4456-9f96-f7e56668fbc1",
2245
+ metadata: {},
2246
+ subtype: null,
2247
+ text:
2248
+ "<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>"
2249
+ }
2250
+ ],
2251
+ "card-updated-at": 1602156067786,
2252
+ "content-version-id": "dbfeb570-f9aa-4875-9c3d-f48bf551dd91",
2253
+ "card-added-at": 1602155541845,
2254
+ status: "draft",
2255
+ id: "d6876a49-9319-4c24-9bf9-881ea454b967",
2256
+ "content-id": "d6876a49-9319-4c24-9bf9-881ea454b967",
2257
+ version: 10,
2258
+ metadata: {
2259
+ "social-share": {
2260
+ shareable: false,
2261
+ title: "It pays to be kind: improving workplace culture through kindness",
2262
+ message: null,
2263
+ image: {
2264
+ key:
2265
+ "ace/2020-10/920f35b9-023e-44d2-b4de-69dce8587bf7/quintype_website_2020_01_2f2ba42d_7a45_4a60_b4af_7d4758f27f5d_Untitled_presentation.jpg",
2266
+ url: null,
2267
+ attribution: "Jon Doe",
2268
+ caption: null,
2269
+ metadata: {
2270
+ width: 960,
2271
+ height: 540,
2272
+ "mime-type": "image/jpeg",
2273
+ "file-size": 26544,
2274
+ "file-name": "quintype-website_2020-01_2f2ba42d-7a45-4a60-b4af-7d4758f27f5d_Untitled_presentation.jpg"
2275
+ }
2276
+ }
2277
+ },
2278
+ attributes: {}
2279
+ }
2280
+ },
2281
+ {
2282
+ "story-elements": [
2283
+ {
2284
+ description: "",
2285
+ "page-url": "/story/307e5a1b-5cf0-4321-8193-827b2add174f/element/20db973e-4612-4933-9acd-5a6d4c3d281d",
2286
+ type: "text",
2287
+ "family-id": "b8f84eb7-4a91-45ba-a5d3-95d5f48c7772",
2288
+ title: "",
2289
+ id: "20db973e-4612-4933-9acd-5a6d4c3d281d",
2290
+ metadata: {},
2291
+ subtype: null,
2292
+ text:
2293
+ "<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>"
2294
+ },
2295
+ {
2296
+ id: "00000000-0000-0000-0000-000000000000",
2297
+ description: "",
2298
+ title: "",
2299
+ subtype: null,
2300
+ type: "text",
2301
+ text: ' <p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
2302
+ metadata: { "promotional-message": true }
2303
+ }
2304
+ ],
2305
+ "card-updated-at": 1602156067786,
2306
+ "content-version-id": "dc523cfa-dcf2-41b5-ab7a-b5c3577e11f7",
2307
+ "card-added-at": 1602156035607,
2308
+ status: "draft",
2309
+ id: "539c1ed1-79e5-4771-a304-60b46d8376c6",
2310
+ "content-id": "539c1ed1-79e5-4771-a304-60b46d8376c6",
2311
+ version: 2,
2312
+ metadata: {
2313
+ "social-share": {
2314
+ shareable: false,
2315
+ title: "It pays to be kind: improving workplace culture through kindness",
2316
+ message: null,
2317
+ image: {
2318
+ key: "ace/2020-10/ec88fad0-ed4d-44ec-9930-72e9d897bdd0/seo.jpg",
2319
+ url: null,
2320
+ attribution: "Credits: Asif Asharaf",
2321
+ caption: "Saque ipsa quae ab illo inventore veritatis et quip",
2322
+ metadata: {
2323
+ width: 1600,
2324
+ height: 900,
2325
+ "mime-type": "image/jpeg",
2326
+ "file-size": 228062,
2327
+ "file-name": "seo.jpg"
2328
+ }
2329
+ }
2330
+ },
2331
+ attributes: {}
2332
+ }
2333
+ }
2334
+ ],
2335
+ url: "https://ace-web.qtstage.io/health/2020/10/08/it-pays-to-be-kind-improving-workplace-culture-through-kindness",
2336
+ "story-version-id": "8768d161-6433-4f1e-b8ef-e632d180ede9",
2337
+ "content-type": "story",
2338
+ "content-updated-at": 1602234199729,
2339
+ "author-id": 927927,
2340
+ "owner-id": 927927,
2341
+ "linked-story-ids": [],
2342
+ "promotional-message": ' <p>text <a href="https://ace-web.qtstage.io/">promotional</a> message</p>',
2343
+ "asana-project-id": null,
2344
+ "first-published-at": 1671083514919,
2345
+ "hero-image-caption": "Saque ipsa quae ab illo inventore veritatis et quip",
2346
+ version: 18,
2347
+ "story-template": "listicle",
2348
+ "sequence-no": null,
2349
+ "created-at": 1602234185901,
2350
+ authors: [
2351
+ {
2352
+ slug: "pravin-atigre",
2353
+ social: null,
2354
+ name: "Virat Kohli",
2355
+ "contributor-role": { id: 873, name: "Author" },
2356
+ "avatar-url":
2357
+ "https://lh3.googleusercontent.com/-I9kNTMFkn3E/AAAAAAAAAAI/AAAAAAAAAAA/ACHi3rdZeM4LMMdylmULvtrAvmeVF9DmAQ/photo.jpg",
2358
+ bio:
2359
+ "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.",
2360
+ id: 927927,
2361
+ "avatar-s3-key": null,
2362
+ "twitter-handle": null
2363
+ }
2364
+ ],
2365
+ metadata: { "card-share": { shareable: false } },
2366
+ "publish-at": null,
2367
+ "assignee-name": "Pravin Atigre"
2368
+ };