@blaze-cms/react-page-builder 0.146.0-node18-core-styles-tooltips.45 → 0.146.0-node18-tooltips.38

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 (895) hide show
  1. package/CHANGELOG.md +45 -105
  2. package/lib/components/Menu/Menu.js +1 -4
  3. package/lib/components/Menu/Menu.js.map +1 -1
  4. package/lib/components/Menu/MenuContext.js +1 -2
  5. package/lib/components/Menu/MenuContext.js.map +1 -1
  6. package/lib/components/MenuItem/MenuItemRender.js +12 -27
  7. package/lib/components/MenuItem/MenuItemRender.js.map +1 -1
  8. package/lib/components/MenuItem/helpers/index.js +0 -14
  9. package/lib/components/MenuItem/helpers/index.js.map +1 -1
  10. package/lib-es/BannerContext/helpers/index.js +3 -0
  11. package/lib-es/BannerContext/helpers/index.js.map +1 -0
  12. package/lib-es/BannerContext/helpers/set-initial-banner-counters.js +17 -0
  13. package/lib-es/BannerContext/helpers/set-initial-banner-counters.js.map +1 -0
  14. package/lib-es/BannerContext/index.js +29 -0
  15. package/lib-es/BannerContext/index.js.map +1 -0
  16. package/lib-es/HOC/index.js +3 -0
  17. package/lib-es/HOC/index.js.map +1 -0
  18. package/lib-es/HOC/recreateOnNavigation.js +20 -0
  19. package/lib-es/HOC/recreateOnNavigation.js.map +1 -0
  20. package/lib-es/HOC/withInfiniteScroll.js +62 -0
  21. package/lib-es/HOC/withInfiniteScroll.js.map +1 -0
  22. package/lib-es/HOC/withTitle.js +36 -0
  23. package/lib-es/HOC/withTitle.js.map +1 -0
  24. package/lib-es/PBContext/index.js +6 -0
  25. package/lib-es/PBContext/index.js.map +1 -0
  26. package/lib-es/application/query/index.js +178 -0
  27. package/lib-es/application/query/index.js.map +1 -0
  28. package/lib-es/components/BackToTop/BackToTop.js +38 -0
  29. package/lib-es/components/BackToTop/BackToTop.js.map +1 -0
  30. package/lib-es/components/BackToTop/index.js +3 -0
  31. package/lib-es/components/BackToTop/index.js.map +1 -0
  32. package/lib-es/components/Banner/AdSlotRender.js +73 -0
  33. package/lib-es/components/Banner/AdSlotRender.js.map +1 -0
  34. package/lib-es/components/Banner/Banner.js +94 -0
  35. package/lib-es/components/Banner/Banner.js.map +1 -0
  36. package/lib-es/components/Banner/BannerRender.js +125 -0
  37. package/lib-es/components/Banner/BannerRender.js.map +1 -0
  38. package/lib-es/components/Banner/helpers.js +155 -0
  39. package/lib-es/components/Banner/helpers.js.map +1 -0
  40. package/lib-es/components/Banner/index.js +3 -0
  41. package/lib-es/components/Banner/index.js.map +1 -0
  42. package/lib-es/components/BlazeLink.js +68 -0
  43. package/lib-es/components/BlazeLink.js.map +1 -0
  44. package/lib-es/components/Breadcrumb/Breadcrumb.js +88 -0
  45. package/lib-es/components/Breadcrumb/Breadcrumb.js.map +1 -0
  46. package/lib-es/components/Breadcrumb/index.js +3 -0
  47. package/lib-es/components/Breadcrumb/index.js.map +1 -0
  48. package/lib-es/components/Button.js +134 -0
  49. package/lib-es/components/Button.js.map +1 -0
  50. package/lib-es/components/Card/Card.js +290 -0
  51. package/lib-es/components/Card/Card.js.map +1 -0
  52. package/lib-es/components/Card/CardsContainer.js +186 -0
  53. package/lib-es/components/Card/CardsContainer.js.map +1 -0
  54. package/lib-es/components/Card/CardsFactory.js +99 -0
  55. package/lib-es/components/Card/CardsFactory.js.map +1 -0
  56. package/lib-es/components/Card/CardsRender.js +194 -0
  57. package/lib-es/components/Card/CardsRender.js.map +1 -0
  58. package/lib-es/components/Card/constants.js +4 -0
  59. package/lib-es/components/Card/constants.js.map +1 -0
  60. package/lib-es/components/Card/helpers/get-dynamic-grid-classes.js +21 -0
  61. package/lib-es/components/Card/helpers/get-dynamic-grid-classes.js.map +1 -0
  62. package/lib-es/components/Card/helpers/get-published-listing-url.js +3 -0
  63. package/lib-es/components/Card/helpers/get-published-listing-url.js.map +1 -0
  64. package/lib-es/components/Card/helpers/index.js +10 -0
  65. package/lib-es/components/Card/helpers/index.js.map +1 -0
  66. package/lib-es/components/Card/helpers/use-dynamic-size-key.js +6 -0
  67. package/lib-es/components/Card/helpers/use-dynamic-size-key.js.map +1 -0
  68. package/lib-es/components/Card/index.js +3 -0
  69. package/lib-es/components/Card/index.js.map +1 -0
  70. package/lib-es/components/Carousel/Carousel.js +78 -0
  71. package/lib-es/components/Carousel/Carousel.js.map +1 -0
  72. package/lib-es/components/Carousel/CarouselImage/CarouselImage.js +59 -0
  73. package/lib-es/components/Carousel/CarouselImage/CarouselImage.js.map +1 -0
  74. package/lib-es/components/Carousel/CarouselImage/constants.js +2 -0
  75. package/lib-es/components/Carousel/CarouselImage/constants.js.map +1 -0
  76. package/lib-es/components/Carousel/CarouselImage/index.js +3 -0
  77. package/lib-es/components/Carousel/CarouselImage/index.js.map +1 -0
  78. package/lib-es/components/Carousel/CarouselRender/CarouselRender.js +74 -0
  79. package/lib-es/components/Carousel/CarouselRender/CarouselRender.js.map +1 -0
  80. package/lib-es/components/Carousel/CarouselRender/index.js +3 -0
  81. package/lib-es/components/Carousel/CarouselRender/index.js.map +1 -0
  82. package/lib-es/components/Carousel/hooks/useCarouselNavigation.js +49 -0
  83. package/lib-es/components/Carousel/hooks/useCarouselNavigation.js.map +1 -0
  84. package/lib-es/components/Carousel/index.js +3 -0
  85. package/lib-es/components/Carousel/index.js.map +1 -0
  86. package/lib-es/components/CarouselWrapper/CarouselWrapper.js +22 -0
  87. package/lib-es/components/CarouselWrapper/CarouselWrapper.js.map +1 -0
  88. package/lib-es/components/CarouselWrapper/DefaultCarousel.js +140 -0
  89. package/lib-es/components/CarouselWrapper/DefaultCarousel.js.map +1 -0
  90. package/lib-es/components/CarouselWrapper/SmoothScrollCarousel.js +43 -0
  91. package/lib-es/components/CarouselWrapper/SmoothScrollCarousel.js.map +1 -0
  92. package/lib-es/components/CarouselWrapper/index.js +3 -0
  93. package/lib-es/components/CarouselWrapper/index.js.map +1 -0
  94. package/lib-es/components/ClickWrapper.js +40 -0
  95. package/lib-es/components/ClickWrapper.js.map +1 -0
  96. package/lib-es/components/Code/Code.js +43 -0
  97. package/lib-es/components/Code/Code.js.map +1 -0
  98. package/lib-es/components/Code/ScriptTag.js +32 -0
  99. package/lib-es/components/Code/ScriptTag.js.map +1 -0
  100. package/lib-es/components/Code/helpers/index.js +2 -0
  101. package/lib-es/components/Code/helpers/index.js.map +1 -0
  102. package/lib-es/components/Code/helpers/wrap-script-tags.js +36 -0
  103. package/lib-es/components/Code/helpers/wrap-script-tags.js.map +1 -0
  104. package/lib-es/components/Code/index.js +3 -0
  105. package/lib-es/components/Code/index.js.map +1 -0
  106. package/lib-es/components/ContentGroup/ContentGroup.js +46 -0
  107. package/lib-es/components/ContentGroup/ContentGroup.js.map +1 -0
  108. package/lib-es/components/ContentGroup/ContentGroupAccordion.js +138 -0
  109. package/lib-es/components/ContentGroup/ContentGroupAccordion.js.map +1 -0
  110. package/lib-es/components/ContentGroup/ContentGroupTabs.js +83 -0
  111. package/lib-es/components/ContentGroup/ContentGroupTabs.js.map +1 -0
  112. package/lib-es/components/ContentGroup/constants.js +18 -0
  113. package/lib-es/components/ContentGroup/constants.js.map +1 -0
  114. package/lib-es/components/ContentGroup/helpers/get-active-tab.js +9 -0
  115. package/lib-es/components/ContentGroup/helpers/get-active-tab.js.map +1 -0
  116. package/lib-es/components/ContentGroup/helpers/get-sections-data.js +15 -0
  117. package/lib-es/components/ContentGroup/helpers/get-sections-data.js.map +1 -0
  118. package/lib-es/components/ContentGroup/helpers/get-structured-data-properties.js +33 -0
  119. package/lib-es/components/ContentGroup/helpers/get-structured-data-properties.js.map +1 -0
  120. package/lib-es/components/ContentGroup/helpers/index.js +4 -0
  121. package/lib-es/components/ContentGroup/helpers/index.js.map +1 -0
  122. package/lib-es/components/ContentGroup/index.js +3 -0
  123. package/lib-es/components/ContentGroup/index.js.map +1 -0
  124. package/lib-es/components/ContentGroupSection/ContentGroupSection.js +23 -0
  125. package/lib-es/components/ContentGroupSection/ContentGroupSection.js.map +1 -0
  126. package/lib-es/components/ContentGroupSection/index.js +3 -0
  127. package/lib-es/components/ContentGroupSection/index.js.map +1 -0
  128. package/lib-es/components/DataSummary/DataSummaryFactory.js +93 -0
  129. package/lib-es/components/DataSummary/DataSummaryFactory.js.map +1 -0
  130. package/lib-es/components/DataSummary/DataSummaryRender.js +92 -0
  131. package/lib-es/components/DataSummary/DataSummaryRender.js.map +1 -0
  132. package/lib-es/components/DataSummary/DataSummaryTypes/HeadingLargeSummary/HeadingLargeSummary.js +24 -0
  133. package/lib-es/components/DataSummary/DataSummaryTypes/HeadingLargeSummary/HeadingLargeSummary.js.map +1 -0
  134. package/lib-es/components/DataSummary/DataSummaryTypes/HeadingLargeSummary/HeadingLargeSummaryContent.js +24 -0
  135. package/lib-es/components/DataSummary/DataSummaryTypes/HeadingLargeSummary/HeadingLargeSummaryContent.js.map +1 -0
  136. package/lib-es/components/DataSummary/DataSummaryTypes/HeadingLargeSummary/index.js +3 -0
  137. package/lib-es/components/DataSummary/DataSummaryTypes/HeadingLargeSummary/index.js.map +1 -0
  138. package/lib-es/components/DataSummary/DataSummaryTypes/ItemDetailsSummary/ItemDetailsSummary.js +23 -0
  139. package/lib-es/components/DataSummary/DataSummaryTypes/ItemDetailsSummary/ItemDetailsSummary.js.map +1 -0
  140. package/lib-es/components/DataSummary/DataSummaryTypes/ItemDetailsSummary/ItemDetailsSummaryContent.js +28 -0
  141. package/lib-es/components/DataSummary/DataSummaryTypes/ItemDetailsSummary/ItemDetailsSummaryContent.js.map +1 -0
  142. package/lib-es/components/DataSummary/DataSummaryTypes/ItemDetailsSummary/index.js +3 -0
  143. package/lib-es/components/DataSummary/DataSummaryTypes/ItemDetailsSummary/index.js.map +1 -0
  144. package/lib-es/components/DataSummary/DataSummaryTypes/LargeSummary/LargeSummary.js +23 -0
  145. package/lib-es/components/DataSummary/DataSummaryTypes/LargeSummary/LargeSummary.js.map +1 -0
  146. package/lib-es/components/DataSummary/DataSummaryTypes/LargeSummary/LargeSummaryContent.js +35 -0
  147. package/lib-es/components/DataSummary/DataSummaryTypes/LargeSummary/LargeSummaryContent.js.map +1 -0
  148. package/lib-es/components/DataSummary/DataSummaryTypes/LargeSummary/index.js +3 -0
  149. package/lib-es/components/DataSummary/DataSummaryTypes/LargeSummary/index.js.map +1 -0
  150. package/lib-es/components/DataSummary/DataSummaryTypes/ListSummary/ListSummary.js +23 -0
  151. package/lib-es/components/DataSummary/DataSummaryTypes/ListSummary/ListSummary.js.map +1 -0
  152. package/lib-es/components/DataSummary/DataSummaryTypes/ListSummary/ListSummaryContent.js +34 -0
  153. package/lib-es/components/DataSummary/DataSummaryTypes/ListSummary/ListSummaryContent.js.map +1 -0
  154. package/lib-es/components/DataSummary/DataSummaryTypes/ListSummary/index.js +3 -0
  155. package/lib-es/components/DataSummary/DataSummaryTypes/ListSummary/index.js.map +1 -0
  156. package/lib-es/components/DataSummary/DataSummaryTypes/TextSummary/TextSummary.js +23 -0
  157. package/lib-es/components/DataSummary/DataSummaryTypes/TextSummary/TextSummary.js.map +1 -0
  158. package/lib-es/components/DataSummary/DataSummaryTypes/TextSummary/TextSummaryContent.js +29 -0
  159. package/lib-es/components/DataSummary/DataSummaryTypes/TextSummary/TextSummaryContent.js.map +1 -0
  160. package/lib-es/components/DataSummary/DataSummaryTypes/TextSummary/index.js +3 -0
  161. package/lib-es/components/DataSummary/DataSummaryTypes/TextSummary/index.js.map +1 -0
  162. package/lib-es/components/DataSummary/DataSummaryTypes/index.js +9 -0
  163. package/lib-es/components/DataSummary/DataSummaryTypes/index.js.map +1 -0
  164. package/lib-es/components/DataSummary/helpers/build-loop-props-content.js +61 -0
  165. package/lib-es/components/DataSummary/helpers/build-loop-props-content.js.map +1 -0
  166. package/lib-es/components/DataSummary/helpers/build-props-to-display-with-content.js +45 -0
  167. package/lib-es/components/DataSummary/helpers/build-props-to-display-with-content.js.map +1 -0
  168. package/lib-es/components/DataSummary/helpers/get-data-summary-query.js +19 -0
  169. package/lib-es/components/DataSummary/helpers/get-data-summary-query.js.map +1 -0
  170. package/lib-es/components/DataSummary/helpers/get-link-based-on-value.js +15 -0
  171. package/lib-es/components/DataSummary/helpers/get-link-based-on-value.js.map +1 -0
  172. package/lib-es/components/DataSummary/helpers/get-link-props.js +6 -0
  173. package/lib-es/components/DataSummary/helpers/get-link-props.js.map +1 -0
  174. package/lib-es/components/DataSummary/helpers/get-link-to-published-content.js +9 -0
  175. package/lib-es/components/DataSummary/helpers/get-link-to-published-content.js.map +1 -0
  176. package/lib-es/components/DataSummary/helpers/get-loop-props-limit.js +12 -0
  177. package/lib-es/components/DataSummary/helpers/get-loop-props-limit.js.map +1 -0
  178. package/lib-es/components/DataSummary/helpers/get-prop-value.js +20 -0
  179. package/lib-es/components/DataSummary/helpers/get-prop-value.js.map +1 -0
  180. package/lib-es/components/DataSummary/helpers/get-record-id.js +14 -0
  181. package/lib-es/components/DataSummary/helpers/get-record-id.js.map +1 -0
  182. package/lib-es/components/DataSummary/helpers/get-value-from-array.js +17 -0
  183. package/lib-es/components/DataSummary/helpers/get-value-from-array.js.map +1 -0
  184. package/lib-es/components/DataSummary/helpers/index.js +11 -0
  185. package/lib-es/components/DataSummary/helpers/index.js.map +1 -0
  186. package/lib-es/components/DataSummary/helpers/parse-boolean-values.js +7 -0
  187. package/lib-es/components/DataSummary/helpers/parse-boolean-values.js.map +1 -0
  188. package/lib-es/components/DataSummary/helpers/strip-summary-props-content.js +14 -0
  189. package/lib-es/components/DataSummary/helpers/strip-summary-props-content.js.map +1 -0
  190. package/lib-es/components/DataSummary/index.js +3 -0
  191. package/lib-es/components/DataSummary/index.js.map +1 -0
  192. package/lib-es/components/DateTime/DateTime.js +36 -0
  193. package/lib-es/components/DateTime/DateTime.js.map +1 -0
  194. package/lib-es/components/DateTime/index.js +3 -0
  195. package/lib-es/components/DateTime/index.js.map +1 -0
  196. package/lib-es/components/EmailConfirm/EmailConfirm.js +71 -0
  197. package/lib-es/components/EmailConfirm/EmailConfirm.js.map +1 -0
  198. package/lib-es/components/EmailConfirm/index.js +3 -0
  199. package/lib-es/components/EmailConfirm/index.js.map +1 -0
  200. package/lib-es/components/EmailConfirm/mutation.js +13 -0
  201. package/lib-es/components/EmailConfirm/mutation.js.map +1 -0
  202. package/lib-es/components/ErrorMessage/ErrorMessage.js +30 -0
  203. package/lib-es/components/ErrorMessage/ErrorMessage.js.map +1 -0
  204. package/lib-es/components/ErrorMessage/index.js +3 -0
  205. package/lib-es/components/ErrorMessage/index.js.map +1 -0
  206. package/lib-es/components/Iframe/Iframe.js +42 -0
  207. package/lib-es/components/Iframe/Iframe.js.map +1 -0
  208. package/lib-es/components/Iframe/constants.js +7 -0
  209. package/lib-es/components/Iframe/constants.js.map +1 -0
  210. package/lib-es/components/Iframe/index.js +3 -0
  211. package/lib-es/components/Iframe/index.js.map +1 -0
  212. package/lib-es/components/Image/GlobalLightbox/GlobalLightbox.js +161 -0
  213. package/lib-es/components/Image/GlobalLightbox/GlobalLightbox.js.map +1 -0
  214. package/lib-es/components/Image/GlobalLightbox/NavButton.js +24 -0
  215. package/lib-es/components/Image/GlobalLightbox/NavButton.js.map +1 -0
  216. package/lib-es/components/Image/GlobalLightbox/index.js +3 -0
  217. package/lib-es/components/Image/GlobalLightbox/index.js.map +1 -0
  218. package/lib-es/components/Image/Image.js +173 -0
  219. package/lib-es/components/Image/Image.js.map +1 -0
  220. package/lib-es/components/Image/ImageDetails.js +27 -0
  221. package/lib-es/components/Image/ImageDetails.js.map +1 -0
  222. package/lib-es/components/Image/ImageFactory.js +86 -0
  223. package/lib-es/components/Image/ImageFactory.js.map +1 -0
  224. package/lib-es/components/Image/ImageRender.js +86 -0
  225. package/lib-es/components/Image/ImageRender.js.map +1 -0
  226. package/lib-es/components/Image/Lightbox/Lightbox.js +63 -0
  227. package/lib-es/components/Image/Lightbox/Lightbox.js.map +1 -0
  228. package/lib-es/components/Image/Lightbox/index.js +3 -0
  229. package/lib-es/components/Image/Lightbox/index.js.map +1 -0
  230. package/lib-es/components/Image/index.js +3 -0
  231. package/lib-es/components/Image/index.js.map +1 -0
  232. package/lib-es/components/ItemList/ItemListButton/ItemListButton.js +107 -0
  233. package/lib-es/components/ItemList/ItemListButton/ItemListButton.js.map +1 -0
  234. package/lib-es/components/ItemList/ItemListButton/index.js +3 -0
  235. package/lib-es/components/ItemList/ItemListButton/index.js.map +1 -0
  236. package/lib-es/components/ItemList/ItemListCounter/ItemListCounter.js +57 -0
  237. package/lib-es/components/ItemList/ItemListCounter/ItemListCounter.js.map +1 -0
  238. package/lib-es/components/ItemList/ItemListCounter/index.js +3 -0
  239. package/lib-es/components/ItemList/ItemListCounter/index.js.map +1 -0
  240. package/lib-es/components/ItemList/ItemListNew/ItemListNew.js +60 -0
  241. package/lib-es/components/ItemList/ItemListNew/ItemListNew.js.map +1 -0
  242. package/lib-es/components/ItemList/ItemListNew/index.js +3 -0
  243. package/lib-es/components/ItemList/ItemListNew/index.js.map +1 -0
  244. package/lib-es/components/ItemList/constants.js +6 -0
  245. package/lib-es/components/ItemList/constants.js.map +1 -0
  246. package/lib-es/components/ItemList/helpers/get-item-list-data.js +6 -0
  247. package/lib-es/components/ItemList/helpers/get-item-list-data.js.map +1 -0
  248. package/lib-es/components/ItemList/helpers/get-item-list-id.js +9 -0
  249. package/lib-es/components/ItemList/helpers/get-item-list-id.js.map +1 -0
  250. package/lib-es/components/ItemList/helpers/get-item-list-ids.js +11 -0
  251. package/lib-es/components/ItemList/helpers/get-item-list-ids.js.map +1 -0
  252. package/lib-es/components/ItemList/helpers/index.js +6 -0
  253. package/lib-es/components/ItemList/helpers/index.js.map +1 -0
  254. package/lib-es/components/ItemList/helpers/set-item-list-id.js +8 -0
  255. package/lib-es/components/ItemList/helpers/set-item-list-id.js.map +1 -0
  256. package/lib-es/components/ItemList/helpers/set-param-and-redirect.js +17 -0
  257. package/lib-es/components/ItemList/helpers/set-param-and-redirect.js.map +1 -0
  258. package/lib-es/components/ItemList/hooks/index.js +2 -0
  259. package/lib-es/components/ItemList/hooks/index.js.map +1 -0
  260. package/lib-es/components/ItemList/hooks/use-item-list-id.js +23 -0
  261. package/lib-es/components/ItemList/hooks/use-item-list-id.js.map +1 -0
  262. package/lib-es/components/ItemList/icons/AddedBookmark.js +33 -0
  263. package/lib-es/components/ItemList/icons/AddedBookmark.js.map +1 -0
  264. package/lib-es/components/ItemList/icons/BaseBookmark.js +37 -0
  265. package/lib-es/components/ItemList/icons/BaseBookmark.js.map +1 -0
  266. package/lib-es/components/ItemList/icons/HoverBookmark.js +35 -0
  267. package/lib-es/components/ItemList/icons/HoverBookmark.js.map +1 -0
  268. package/lib-es/components/ItemList/icons/RemoveBookmark.js +33 -0
  269. package/lib-es/components/ItemList/icons/RemoveBookmark.js.map +1 -0
  270. package/lib-es/components/ItemList/icons/index.js +5 -0
  271. package/lib-es/components/ItemList/icons/index.js.map +1 -0
  272. package/lib-es/components/Layout/Layout.js +85 -0
  273. package/lib-es/components/Layout/Layout.js.map +1 -0
  274. package/lib-es/components/Layout/LayoutFactory.js +14 -0
  275. package/lib-es/components/Layout/LayoutFactory.js.map +1 -0
  276. package/lib-es/components/Layout/LayoutWithStickyTimer.js +42 -0
  277. package/lib-es/components/Layout/LayoutWithStickyTimer.js.map +1 -0
  278. package/lib-es/components/Layout/constants.js +6 -0
  279. package/lib-es/components/Layout/constants.js.map +1 -0
  280. package/lib-es/components/Layout/helpers/check-if-row-has-columns.js +19 -0
  281. package/lib-es/components/Layout/helpers/check-if-row-has-columns.js.map +1 -0
  282. package/lib-es/components/Layout/helpers/get-styles-to-update.js +10 -0
  283. package/lib-es/components/Layout/helpers/get-styles-to-update.js.map +1 -0
  284. package/lib-es/components/Layout/helpers/index.js +4 -0
  285. package/lib-es/components/Layout/helpers/index.js.map +1 -0
  286. package/lib-es/components/Layout/index.js +3 -0
  287. package/lib-es/components/Layout/index.js.map +1 -0
  288. package/lib-es/components/LazyImage/LazyImage.js +41 -0
  289. package/lib-es/components/LazyImage/LazyImage.js.map +1 -0
  290. package/lib-es/components/LazyImage/index.js +3 -0
  291. package/lib-es/components/LazyImage/index.js.map +1 -0
  292. package/lib-es/components/List/ListBuilder.js +206 -0
  293. package/lib-es/components/List/ListBuilder.js.map +1 -0
  294. package/lib-es/components/List/ListFactory.js +213 -0
  295. package/lib-es/components/List/ListFactory.js.map +1 -0
  296. package/lib-es/components/List/ListRender.js +134 -0
  297. package/lib-es/components/List/ListRender.js.map +1 -0
  298. package/lib-es/components/List/components/Cards/CardRenderWithInfiniteScroll.js +4 -0
  299. package/lib-es/components/List/components/Cards/CardRenderWithInfiniteScroll.js.map +1 -0
  300. package/lib-es/components/List/components/Cards/CardsRender.js +106 -0
  301. package/lib-es/components/List/components/Cards/CardsRender.js.map +1 -0
  302. package/lib-es/components/List/components/Cards/CardsRenderItem.js +121 -0
  303. package/lib-es/components/List/components/Cards/CardsRenderItem.js.map +1 -0
  304. package/lib-es/components/List/components/Cards/CardsRenderWrapper.js +59 -0
  305. package/lib-es/components/List/components/Cards/CardsRenderWrapper.js.map +1 -0
  306. package/lib-es/components/List/components/Cards/index.js +3 -0
  307. package/lib-es/components/List/components/Cards/index.js.map +1 -0
  308. package/lib-es/components/List/components/Full/FullRender.js +92 -0
  309. package/lib-es/components/List/components/Full/FullRender.js.map +1 -0
  310. package/lib-es/components/List/components/Full/FullRenderItem.js +95 -0
  311. package/lib-es/components/List/components/Full/FullRenderItem.js.map +1 -0
  312. package/lib-es/components/List/components/Full/FullRenderWithInfiniteScroll.js +4 -0
  313. package/lib-es/components/List/components/Full/FullRenderWithInfiniteScroll.js.map +1 -0
  314. package/lib-es/components/List/components/Full/index.js +3 -0
  315. package/lib-es/components/List/components/Full/index.js.map +1 -0
  316. package/lib-es/components/List/components/Header/ListHeader.js +64 -0
  317. package/lib-es/components/List/components/Header/ListHeader.js.map +1 -0
  318. package/lib-es/components/List/components/Header/index.js +3 -0
  319. package/lib-es/components/List/components/Header/index.js.map +1 -0
  320. package/lib-es/components/List/components/Pagination/Classic.js +55 -0
  321. package/lib-es/components/List/components/Pagination/Classic.js.map +1 -0
  322. package/lib-es/components/List/components/Pagination/ListPagination.js +63 -0
  323. package/lib-es/components/List/components/Pagination/ListPagination.js.map +1 -0
  324. package/lib-es/components/List/components/Pagination/LoadMore.js +37 -0
  325. package/lib-es/components/List/components/Pagination/LoadMore.js.map +1 -0
  326. package/lib-es/components/List/components/Pagination/index.js +3 -0
  327. package/lib-es/components/List/components/Pagination/index.js.map +1 -0
  328. package/lib-es/components/List/components/helpers/check-if-should-render-banner.js +42 -0
  329. package/lib-es/components/List/components/helpers/check-if-should-render-banner.js.map +1 -0
  330. package/lib-es/components/List/components/helpers/check-if-should-render-gtm.js +14 -0
  331. package/lib-es/components/List/components/helpers/check-if-should-render-gtm.js.map +1 -0
  332. package/lib-es/components/List/components/helpers/index.js +4 -0
  333. package/lib-es/components/List/components/helpers/index.js.map +1 -0
  334. package/lib-es/components/List/components/index.js +5 -0
  335. package/lib-es/components/List/components/index.js.map +1 -0
  336. package/lib-es/components/List/constants.js +10 -0
  337. package/lib-es/components/List/constants.js.map +1 -0
  338. package/lib-es/components/List/helpers/build-az-aggregations.js +25 -0
  339. package/lib-es/components/List/helpers/build-az-aggregations.js.map +1 -0
  340. package/lib-es/components/List/helpers/build-az-url.js +26 -0
  341. package/lib-es/components/List/helpers/build-az-url.js.map +1 -0
  342. package/lib-es/components/List/helpers/build-pagination-items.js +39 -0
  343. package/lib-es/components/List/helpers/build-pagination-items.js.map +1 -0
  344. package/lib-es/components/List/helpers/build-pagination-url.js +14 -0
  345. package/lib-es/components/List/helpers/build-pagination-url.js.map +1 -0
  346. package/lib-es/components/List/helpers/build-query-booster.js +41 -0
  347. package/lib-es/components/List/helpers/build-query-booster.js.map +1 -0
  348. package/lib-es/components/List/helpers/get-az-query-filter.js +7 -0
  349. package/lib-es/components/List/helpers/get-az-query-filter.js.map +1 -0
  350. package/lib-es/components/List/helpers/get-items-per-page-to-use.js +7 -0
  351. package/lib-es/components/List/helpers/get-items-per-page-to-use.js.map +1 -0
  352. package/lib-es/components/List/helpers/get-list-component.js +9 -0
  353. package/lib-es/components/List/helpers/get-list-component.js.map +1 -0
  354. package/lib-es/components/List/helpers/get-list-query.js +27 -0
  355. package/lib-es/components/List/helpers/get-list-query.js.map +1 -0
  356. package/lib-es/components/List/helpers/get-list-specific-search-filter.js +12 -0
  357. package/lib-es/components/List/helpers/get-list-specific-search-filter.js.map +1 -0
  358. package/lib-es/components/List/helpers/get-sort-props.js +32 -0
  359. package/lib-es/components/List/helpers/get-sort-props.js.map +1 -0
  360. package/lib-es/components/List/helpers/has-required-item-list-details.js +16 -0
  361. package/lib-es/components/List/helpers/has-required-item-list-details.js.map +1 -0
  362. package/lib-es/components/List/helpers/index.js +13 -0
  363. package/lib-es/components/List/helpers/index.js.map +1 -0
  364. package/lib-es/components/List/helpers/sort-aggs.js +22 -0
  365. package/lib-es/components/List/helpers/sort-aggs.js.map +1 -0
  366. package/lib-es/components/List/helpers/strip-query-key.js +6 -0
  367. package/lib-es/components/List/helpers/strip-query-key.js.map +1 -0
  368. package/lib-es/components/List/index.js +3 -0
  369. package/lib-es/components/List/index.js.map +1 -0
  370. package/lib-es/components/Loading/Loading.js +27 -0
  371. package/lib-es/components/Loading/Loading.js.map +1 -0
  372. package/lib-es/components/Loading/constants.js +5 -0
  373. package/lib-es/components/Loading/constants.js.map +1 -0
  374. package/lib-es/components/Loading/helpers.js +8 -0
  375. package/lib-es/components/Loading/helpers.js.map +1 -0
  376. package/lib-es/components/Loading/index.js +3 -0
  377. package/lib-es/components/Loading/index.js.map +1 -0
  378. package/lib-es/components/Menu/Menu.js +117 -0
  379. package/lib-es/components/Menu/Menu.js.map +1 -0
  380. package/lib-es/components/Menu/MenuContext.js +6 -0
  381. package/lib-es/components/Menu/MenuContext.js.map +1 -0
  382. package/lib-es/components/Menu/index.js +3 -0
  383. package/lib-es/components/Menu/index.js.map +1 -0
  384. package/lib-es/components/MenuItem/MenuEntitiesItem.js +178 -0
  385. package/lib-es/components/MenuItem/MenuEntitiesItem.js.map +1 -0
  386. package/lib-es/components/MenuItem/MenuItem.js +41 -0
  387. package/lib-es/components/MenuItem/MenuItem.js.map +1 -0
  388. package/lib-es/components/MenuItem/MenuItemRender.js +100 -0
  389. package/lib-es/components/MenuItem/MenuItemRender.js.map +1 -0
  390. package/lib-es/components/MenuItem/helpers/index.js +3 -0
  391. package/lib-es/components/MenuItem/helpers/index.js.map +1 -0
  392. package/lib-es/components/MenuItem/helpers/inject-helper-into-template.js +20 -0
  393. package/lib-es/components/MenuItem/helpers/inject-helper-into-template.js.map +1 -0
  394. package/lib-es/components/MenuItem/index.js +3 -0
  395. package/lib-es/components/MenuItem/index.js.map +1 -0
  396. package/lib-es/components/Modal/Modal.js +32 -0
  397. package/lib-es/components/Modal/Modal.js.map +1 -0
  398. package/lib-es/components/Modal/index.js +3 -0
  399. package/lib-es/components/Modal/index.js.map +1 -0
  400. package/lib-es/components/ModalAdapter/ModalAdapter.js +13 -0
  401. package/lib-es/components/ModalAdapter/ModalAdapter.js.map +1 -0
  402. package/lib-es/components/ModalAdapter/index.js +3 -0
  403. package/lib-es/components/ModalAdapter/index.js.map +1 -0
  404. package/lib-es/components/SearchContent/SearchContent.js +152 -0
  405. package/lib-es/components/SearchContent/SearchContent.js.map +1 -0
  406. package/lib-es/components/SearchContent/SearchContentItems.js +31 -0
  407. package/lib-es/components/SearchContent/SearchContentItems.js.map +1 -0
  408. package/lib-es/components/SearchContent/SearchContentResults.js +28 -0
  409. package/lib-es/components/SearchContent/SearchContentResults.js.map +1 -0
  410. package/lib-es/components/SearchContent/SearchContentToggleIcon.js +17 -0
  411. package/lib-es/components/SearchContent/SearchContentToggleIcon.js.map +1 -0
  412. package/lib-es/components/SearchContent/constants.js +4 -0
  413. package/lib-es/components/SearchContent/constants.js.map +1 -0
  414. package/lib-es/components/SearchContent/index.js +3 -0
  415. package/lib-es/components/SearchContent/index.js.map +1 -0
  416. package/lib-es/components/SearchFilter/SearchFilter/CloseMobileForm.js +24 -0
  417. package/lib-es/components/SearchFilter/SearchFilter/CloseMobileForm.js.map +1 -0
  418. package/lib-es/components/SearchFilter/SearchFilter/FiltersList.js +110 -0
  419. package/lib-es/components/SearchFilter/SearchFilter/FiltersList.js.map +1 -0
  420. package/lib-es/components/SearchFilter/SearchFilter/MobileFormToolbar.js +31 -0
  421. package/lib-es/components/SearchFilter/SearchFilter/MobileFormToolbar.js.map +1 -0
  422. package/lib-es/components/SearchFilter/SearchFilter/ResetDesktopForm.js +31 -0
  423. package/lib-es/components/SearchFilter/SearchFilter/ResetDesktopForm.js.map +1 -0
  424. package/lib-es/components/SearchFilter/SearchFilter/SearchFilter.js +209 -0
  425. package/lib-es/components/SearchFilter/SearchFilter/SearchFilter.js.map +1 -0
  426. package/lib-es/components/SearchFilter/SearchFilter/index.js +3 -0
  427. package/lib-es/components/SearchFilter/SearchFilter/index.js.map +1 -0
  428. package/lib-es/components/SearchFilter/SearchFilterContainer.js +227 -0
  429. package/lib-es/components/SearchFilter/SearchFilterContainer.js.map +1 -0
  430. package/lib-es/components/SearchFilter/components/Checkbox.js +102 -0
  431. package/lib-es/components/SearchFilter/components/Checkbox.js.map +1 -0
  432. package/lib-es/components/SearchFilter/components/Range.js +130 -0
  433. package/lib-es/components/SearchFilter/components/Range.js.map +1 -0
  434. package/lib-es/components/SearchFilter/components/Select.js +78 -0
  435. package/lib-es/components/SearchFilter/components/Select.js.map +1 -0
  436. package/lib-es/components/SearchFilter/components/TextSearch.js +52 -0
  437. package/lib-es/components/SearchFilter/components/TextSearch.js.map +1 -0
  438. package/lib-es/components/SearchFilter/components/index.js +6 -0
  439. package/lib-es/components/SearchFilter/components/index.js.map +1 -0
  440. package/lib-es/components/SearchFilter/constants.js +32 -0
  441. package/lib-es/components/SearchFilter/constants.js.map +1 -0
  442. package/lib-es/components/SearchFilter/helpers/build-list-name-query.js +15 -0
  443. package/lib-es/components/SearchFilter/helpers/build-list-name-query.js.map +1 -0
  444. package/lib-es/components/SearchFilter/helpers/build-new-url.js +9 -0
  445. package/lib-es/components/SearchFilter/helpers/build-new-url.js.map +1 -0
  446. package/lib-es/components/SearchFilter/helpers/build-url-query.js +37 -0
  447. package/lib-es/components/SearchFilter/helpers/build-url-query.js.map +1 -0
  448. package/lib-es/components/SearchFilter/helpers/calculate-min-max.js +18 -0
  449. package/lib-es/components/SearchFilter/helpers/calculate-min-max.js.map +1 -0
  450. package/lib-es/components/SearchFilter/helpers/calculate-step.js +3 -0
  451. package/lib-es/components/SearchFilter/helpers/calculate-step.js.map +1 -0
  452. package/lib-es/components/SearchFilter/helpers/check-if-range-updated.js +10 -0
  453. package/lib-es/components/SearchFilter/helpers/check-if-range-updated.js.map +1 -0
  454. package/lib-es/components/SearchFilter/helpers/decode-encode.js +4 -0
  455. package/lib-es/components/SearchFilter/helpers/decode-encode.js.map +1 -0
  456. package/lib-es/components/SearchFilter/helpers/get-display-value.js +6 -0
  457. package/lib-es/components/SearchFilter/helpers/get-display-value.js.map +1 -0
  458. package/lib-es/components/SearchFilter/helpers/get-filter-ranges-and-checkboxes-values.js +18 -0
  459. package/lib-es/components/SearchFilter/helpers/get-filter-ranges-and-checkboxes-values.js.map +1 -0
  460. package/lib-es/components/SearchFilter/helpers/get-filter-value-from-query.js +27 -0
  461. package/lib-es/components/SearchFilter/helpers/get-filter-value-from-query.js.map +1 -0
  462. package/lib-es/components/SearchFilter/helpers/get-filter-values.js +19 -0
  463. package/lib-es/components/SearchFilter/helpers/get-filter-values.js.map +1 -0
  464. package/lib-es/components/SearchFilter/helpers/get-initial-filter-values.js +21 -0
  465. package/lib-es/components/SearchFilter/helpers/get-initial-filter-values.js.map +1 -0
  466. package/lib-es/components/SearchFilter/helpers/get-intersected-prop.js +4 -0
  467. package/lib-es/components/SearchFilter/helpers/get-intersected-prop.js.map +1 -0
  468. package/lib-es/components/SearchFilter/helpers/get-range-value.js +33 -0
  469. package/lib-es/components/SearchFilter/helpers/get-range-value.js.map +1 -0
  470. package/lib-es/components/SearchFilter/helpers/get-responsive-filter-classnames.js +18 -0
  471. package/lib-es/components/SearchFilter/helpers/get-responsive-filter-classnames.js.map +1 -0
  472. package/lib-es/components/SearchFilter/helpers/get-select-options.js +14 -0
  473. package/lib-es/components/SearchFilter/helpers/get-select-options.js.map +1 -0
  474. package/lib-es/components/SearchFilter/helpers/get-updated-filter-by.js +19 -0
  475. package/lib-es/components/SearchFilter/helpers/get-updated-filter-by.js.map +1 -0
  476. package/lib-es/components/SearchFilter/helpers/index.js +19 -0
  477. package/lib-es/components/SearchFilter/helpers/index.js.map +1 -0
  478. package/lib-es/components/SearchFilter/helpers/is-device-desktop.js +4 -0
  479. package/lib-es/components/SearchFilter/helpers/is-device-desktop.js.map +1 -0
  480. package/lib-es/components/SearchFilter/helpers/parse-filter-value.js +21 -0
  481. package/lib-es/components/SearchFilter/helpers/parse-filter-value.js.map +1 -0
  482. package/lib-es/components/SearchFilter/index.js +3 -0
  483. package/lib-es/components/SearchFilter/index.js.map +1 -0
  484. package/lib-es/components/SearchFilter/searchFilterReducer.js +26 -0
  485. package/lib-es/components/SearchFilter/searchFilterReducer.js.map +1 -0
  486. package/lib-es/components/SearchFilterSort/SearchFilterSort.js +79 -0
  487. package/lib-es/components/SearchFilterSort/SearchFilterSort.js.map +1 -0
  488. package/lib-es/components/SearchFilterSort/constants.js +6 -0
  489. package/lib-es/components/SearchFilterSort/constants.js.map +1 -0
  490. package/lib-es/components/SearchFilterSort/helpers/handle-sort-update.js +39 -0
  491. package/lib-es/components/SearchFilterSort/helpers/handle-sort-update.js.map +1 -0
  492. package/lib-es/components/SearchFilterSort/helpers/index.js +3 -0
  493. package/lib-es/components/SearchFilterSort/helpers/index.js.map +1 -0
  494. package/lib-es/components/SearchFilterSort/helpers/update-sort.js +19 -0
  495. package/lib-es/components/SearchFilterSort/helpers/update-sort.js.map +1 -0
  496. package/lib-es/components/SearchFilterSort/index.js +3 -0
  497. package/lib-es/components/SearchFilterSort/index.js.map +1 -0
  498. package/lib-es/components/SocialFollow/SFItem.js +33 -0
  499. package/lib-es/components/SocialFollow/SFItem.js.map +1 -0
  500. package/lib-es/components/SocialFollow/SocialFollow.js +38 -0
  501. package/lib-es/components/SocialFollow/SocialFollow.js.map +1 -0
  502. package/lib-es/components/SocialFollow/SocialFollowRender.js +33 -0
  503. package/lib-es/components/SocialFollow/SocialFollowRender.js.map +1 -0
  504. package/lib-es/components/SocialFollow/index.js +3 -0
  505. package/lib-es/components/SocialFollow/index.js.map +1 -0
  506. package/lib-es/components/SocialFollow/sf.config.js +50 -0
  507. package/lib-es/components/SocialFollow/sf.config.js.map +1 -0
  508. package/lib-es/components/SubMenu/SubMenu.js +23 -0
  509. package/lib-es/components/SubMenu/SubMenu.js.map +1 -0
  510. package/lib-es/components/SubMenu/index.js +3 -0
  511. package/lib-es/components/SubMenu/index.js.map +1 -0
  512. package/lib-es/components/TextBlock/TextBlockRender.js +20 -0
  513. package/lib-es/components/TextBlock/TextBlockRender.js.map +1 -0
  514. package/lib-es/components/TextBlock/index.js +53 -0
  515. package/lib-es/components/TextBlock/index.js.map +1 -0
  516. package/lib-es/components/Video/Video.js +98 -0
  517. package/lib-es/components/Video/Video.js.map +1 -0
  518. package/lib-es/components/Video/VideoContext.js +6 -0
  519. package/lib-es/components/Video/VideoContext.js.map +1 -0
  520. package/lib-es/components/Video/VideoModal.js +30 -0
  521. package/lib-es/components/Video/VideoModal.js.map +1 -0
  522. package/lib-es/components/Video/VideoRender.js +44 -0
  523. package/lib-es/components/Video/VideoRender.js.map +1 -0
  524. package/lib-es/components/Video/constants.js +7 -0
  525. package/lib-es/components/Video/constants.js.map +1 -0
  526. package/lib-es/components/Video/helpers/emit-gtm-event.js +25 -0
  527. package/lib-es/components/Video/helpers/emit-gtm-event.js.map +1 -0
  528. package/lib-es/components/Video/index.js +3 -0
  529. package/lib-es/components/Video/index.js.map +1 -0
  530. package/lib-es/components/Video/providers/Default.js +36 -0
  531. package/lib-es/components/Video/providers/Default.js.map +1 -0
  532. package/lib-es/components/Video/providers/JWPlayer/JWPlayerController.js +65 -0
  533. package/lib-es/components/Video/providers/JWPlayer/JWPlayerController.js.map +1 -0
  534. package/lib-es/components/Video/providers/JWPlayer/JWPlayerProvider.js +87 -0
  535. package/lib-es/components/Video/providers/JWPlayer/JWPlayerProvider.js.map +1 -0
  536. package/lib-es/components/Video/providers/Vimeo/VimeoProvider.js +68 -0
  537. package/lib-es/components/Video/providers/Vimeo/VimeoProvider.js.map +1 -0
  538. package/lib-es/components/Video/providers/Vimeo/helpers/add-extra-params-to-url.js +14 -0
  539. package/lib-es/components/Video/providers/Vimeo/helpers/add-extra-params-to-url.js.map +1 -0
  540. package/lib-es/components/Video/providers/Vimeo/helpers/index.js +3 -0
  541. package/lib-es/components/Video/providers/Vimeo/helpers/index.js.map +1 -0
  542. package/lib-es/components/Video/providers/YouTube/YouTubeProvider.js +40 -0
  543. package/lib-es/components/Video/providers/YouTube/YouTubeProvider.js.map +1 -0
  544. package/lib-es/components/Video/providers/YouTube/YoutubeEmbeded.js +213 -0
  545. package/lib-es/components/Video/providers/YouTube/YoutubeEmbeded.js.map +1 -0
  546. package/lib-es/components/Video/providers/YouTube/helpers/index.js +26 -0
  547. package/lib-es/components/Video/providers/YouTube/helpers/index.js.map +1 -0
  548. package/lib-es/components/Video/providers/get-provider.js +13 -0
  549. package/lib-es/components/Video/providers/get-provider.js.map +1 -0
  550. package/lib-es/components/Video/providers/index.js +3 -0
  551. package/lib-es/components/Video/providers/index.js.map +1 -0
  552. package/lib-es/components/Wrapper.js +36 -0
  553. package/lib-es/components/Wrapper.js.map +1 -0
  554. package/lib-es/components/index.js +36 -0
  555. package/lib-es/components/index.js.map +1 -0
  556. package/lib-es/constants/componentsDefaultValues.js +20 -0
  557. package/lib-es/constants/componentsDefaultValues.js.map +1 -0
  558. package/lib-es/constants/index.js +143 -0
  559. package/lib-es/constants/index.js.map +1 -0
  560. package/lib-es/helpers/append-images.js +28 -0
  561. package/lib-es/helpers/append-images.js.map +1 -0
  562. package/lib-es/helpers/build-az-filter.js +16 -0
  563. package/lib-es/helpers/build-az-filter.js.map +1 -0
  564. package/lib-es/helpers/build-checkbox-filters.js +28 -0
  565. package/lib-es/helpers/build-checkbox-filters.js.map +1 -0
  566. package/lib-es/helpers/build-filters-query.js +86 -0
  567. package/lib-es/helpers/build-filters-query.js.map +1 -0
  568. package/lib-es/helpers/build-image-properties.js +29 -0
  569. package/lib-es/helpers/build-image-properties.js.map +1 -0
  570. package/lib-es/helpers/build-inherited-filters.js +67 -0
  571. package/lib-es/helpers/build-inherited-filters.js.map +1 -0
  572. package/lib-es/helpers/build-link-extra-props.js +17 -0
  573. package/lib-es/helpers/build-link-extra-props.js.map +1 -0
  574. package/lib-es/helpers/build-props-query.js +98 -0
  575. package/lib-es/helpers/build-props-query.js.map +1 -0
  576. package/lib-es/helpers/build-query-fields.js +13 -0
  577. package/lib-es/helpers/build-query-fields.js.map +1 -0
  578. package/lib-es/helpers/build-query-key.js +7 -0
  579. package/lib-es/helpers/build-query-key.js.map +1 -0
  580. package/lib-es/helpers/build-raw-query-base.js +113 -0
  581. package/lib-es/helpers/build-raw-query-base.js.map +1 -0
  582. package/lib-es/helpers/build-raw-query-stringified.js +44 -0
  583. package/lib-es/helpers/build-raw-query-stringified.js.map +1 -0
  584. package/lib-es/helpers/build-raw-query.js +132 -0
  585. package/lib-es/helpers/build-raw-query.js.map +1 -0
  586. package/lib-es/helpers/build-search-values-checkbox-select.js +64 -0
  587. package/lib-es/helpers/build-search-values-checkbox-select.js.map +1 -0
  588. package/lib-es/helpers/build-search-values-text.js +34 -0
  589. package/lib-es/helpers/build-search-values-text.js.map +1 -0
  590. package/lib-es/helpers/build-set-filters.js +32 -0
  591. package/lib-es/helpers/build-set-filters.js.map +1 -0
  592. package/lib-es/helpers/build-sort-values.js +34 -0
  593. package/lib-es/helpers/build-sort-values.js.map +1 -0
  594. package/lib-es/helpers/check-for-error.js +11 -0
  595. package/lib-es/helpers/check-for-error.js.map +1 -0
  596. package/lib-es/helpers/check-props-to-use.js +9 -0
  597. package/lib-es/helpers/check-props-to-use.js.map +1 -0
  598. package/lib-es/helpers/entities/constants.js +11 -0
  599. package/lib-es/helpers/entities/constants.js.map +1 -0
  600. package/lib-es/helpers/filter-query-setup.js +61 -0
  601. package/lib-es/helpers/filter-query-setup.js.map +1 -0
  602. package/lib-es/helpers/filters-setup.js +41 -0
  603. package/lib-es/helpers/filters-setup.js.map +1 -0
  604. package/lib-es/helpers/get-banner-data.js +17 -0
  605. package/lib-es/helpers/get-banner-data.js.map +1 -0
  606. package/lib-es/helpers/get-checkbox-filters.js +7 -0
  607. package/lib-es/helpers/get-checkbox-filters.js.map +1 -0
  608. package/lib-es/helpers/get-click-wrapper-options.js +43 -0
  609. package/lib-es/helpers/get-click-wrapper-options.js.map +1 -0
  610. package/lib-es/helpers/get-component-id.js +7 -0
  611. package/lib-es/helpers/get-component-id.js.map +1 -0
  612. package/lib-es/helpers/get-current-offset.js +7 -0
  613. package/lib-es/helpers/get-current-offset.js.map +1 -0
  614. package/lib-es/helpers/get-dictionary-match.js +11 -0
  615. package/lib-es/helpers/get-dictionary-match.js.map +1 -0
  616. package/lib-es/helpers/get-display-count-data.js +13 -0
  617. package/lib-es/helpers/get-display-count-data.js.map +1 -0
  618. package/lib-es/helpers/get-elasticsearch-operator.js +6 -0
  619. package/lib-es/helpers/get-elasticsearch-operator.js.map +1 -0
  620. package/lib-es/helpers/get-entities-with-banner.js +33 -0
  621. package/lib-es/helpers/get-entities-with-banner.js.map +1 -0
  622. package/lib-es/helpers/get-entity-data.js +29 -0
  623. package/lib-es/helpers/get-entity-data.js.map +1 -0
  624. package/lib-es/helpers/get-entity-render-props.js +21 -0
  625. package/lib-es/helpers/get-entity-render-props.js.map +1 -0
  626. package/lib-es/helpers/get-extra-az-bits.js +54 -0
  627. package/lib-es/helpers/get-extra-az-bits.js.map +1 -0
  628. package/lib-es/helpers/get-filter-props.js +60 -0
  629. package/lib-es/helpers/get-filter-props.js.map +1 -0
  630. package/lib-es/helpers/get-filter-relation-keys.js +8 -0
  631. package/lib-es/helpers/get-filter-relation-keys.js.map +1 -0
  632. package/lib-es/helpers/get-generic-props.js +16 -0
  633. package/lib-es/helpers/get-generic-props.js.map +1 -0
  634. package/lib-es/helpers/get-generic-render-variables.js +64 -0
  635. package/lib-es/helpers/get-generic-render-variables.js.map +1 -0
  636. package/lib-es/helpers/get-image-ids.js +26 -0
  637. package/lib-es/helpers/get-image-ids.js.map +1 -0
  638. package/lib-es/helpers/get-inherited-filters.js +12 -0
  639. package/lib-es/helpers/get-inherited-filters.js.map +1 -0
  640. package/lib-es/helpers/get-items-to-display-ids.js +12 -0
  641. package/lib-es/helpers/get-items-to-display-ids.js.map +1 -0
  642. package/lib-es/helpers/get-modifiers.js +16 -0
  643. package/lib-es/helpers/get-modifiers.js.map +1 -0
  644. package/lib-es/helpers/get-not-equal-query.js +9 -0
  645. package/lib-es/helpers/get-not-equal-query.js.map +1 -0
  646. package/lib-es/helpers/get-pagination-index.js +8 -0
  647. package/lib-es/helpers/get-pagination-index.js.map +1 -0
  648. package/lib-es/helpers/get-parsed-prop-values.js +32 -0
  649. package/lib-es/helpers/get-parsed-prop-values.js.map +1 -0
  650. package/lib-es/helpers/get-parsed-summary-value.js +13 -0
  651. package/lib-es/helpers/get-parsed-summary-value.js.map +1 -0
  652. package/lib-es/helpers/get-prop-values.js +14 -0
  653. package/lib-es/helpers/get-prop-values.js.map +1 -0
  654. package/lib-es/helpers/get-query-filters.js +22 -0
  655. package/lib-es/helpers/get-query-filters.js.map +1 -0
  656. package/lib-es/helpers/get-query-props.js +37 -0
  657. package/lib-es/helpers/get-query-props.js.map +1 -0
  658. package/lib-es/helpers/get-required-schemas.js +20 -0
  659. package/lib-es/helpers/get-required-schemas.js.map +1 -0
  660. package/lib-es/helpers/get-sanitized-prop-values.js +3 -0
  661. package/lib-es/helpers/get-sanitized-prop-values.js.map +1 -0
  662. package/lib-es/helpers/get-search-filter-type.js +12 -0
  663. package/lib-es/helpers/get-search-filter-type.js.map +1 -0
  664. package/lib-es/helpers/get-sort-by-field-name.js +20 -0
  665. package/lib-es/helpers/get-sort-by-field-name.js.map +1 -0
  666. package/lib-es/helpers/get-unpublished-entity-name.js +5 -0
  667. package/lib-es/helpers/get-unpublished-entity-name.js.map +1 -0
  668. package/lib-es/helpers/get-updated-filter-by.js +11 -0
  669. package/lib-es/helpers/get-updated-filter-by.js.map +1 -0
  670. package/lib-es/helpers/get-updated-items-to-display.js +32 -0
  671. package/lib-es/helpers/get-updated-items-to-display.js.map +1 -0
  672. package/lib-es/helpers/get-updated-sort-properties.js +15 -0
  673. package/lib-es/helpers/get-updated-sort-properties.js.map +1 -0
  674. package/lib-es/helpers/get-wrapped-value-with-link.js +25 -0
  675. package/lib-es/helpers/get-wrapped-value-with-link.js.map +1 -0
  676. package/lib-es/helpers/group-entities.js +10 -0
  677. package/lib-es/helpers/group-entities.js.map +1 -0
  678. package/lib-es/helpers/has-children.js +10 -0
  679. package/lib-es/helpers/has-children.js.map +1 -0
  680. package/lib-es/helpers/index.js +65 -0
  681. package/lib-es/helpers/index.js.map +1 -0
  682. package/lib-es/helpers/inject-banner.js +15 -0
  683. package/lib-es/helpers/inject-banner.js.map +1 -0
  684. package/lib-es/helpers/inject-banners-to-entities.js +19 -0
  685. package/lib-es/helpers/inject-banners-to-entities.js.map +1 -0
  686. package/lib-es/helpers/inject-multiple-banners/get-banners-for-entities/get-banners-for-entities.js +15 -0
  687. package/lib-es/helpers/inject-multiple-banners/get-banners-for-entities/get-banners-for-entities.js.map +1 -0
  688. package/lib-es/helpers/inject-multiple-banners/get-banners-for-entities/index.js +3 -0
  689. package/lib-es/helpers/inject-multiple-banners/get-banners-for-entities/index.js.map +1 -0
  690. package/lib-es/helpers/inject-multiple-banners/get-banners-for-nodes/get-banners-for-nodes.js +19 -0
  691. package/lib-es/helpers/inject-multiple-banners/get-banners-for-nodes/get-banners-for-nodes.js.map +1 -0
  692. package/lib-es/helpers/inject-multiple-banners/get-banners-for-nodes/helpers/group-node-entities.js +26 -0
  693. package/lib-es/helpers/inject-multiple-banners/get-banners-for-nodes/helpers/group-node-entities.js.map +1 -0
  694. package/lib-es/helpers/inject-multiple-banners/get-banners-for-nodes/helpers/index.js +3 -0
  695. package/lib-es/helpers/inject-multiple-banners/get-banners-for-nodes/helpers/index.js.map +1 -0
  696. package/lib-es/helpers/inject-multiple-banners/get-banners-for-nodes/index.js +3 -0
  697. package/lib-es/helpers/inject-multiple-banners/get-banners-for-nodes/index.js.map +1 -0
  698. package/lib-es/helpers/inject-multiple-banners/index.js +3 -0
  699. package/lib-es/helpers/inject-multiple-banners/index.js.map +1 -0
  700. package/lib-es/helpers/inject-multiple-banners/inject-multiple-banners.js +11 -0
  701. package/lib-es/helpers/inject-multiple-banners/inject-multiple-banners.js.map +1 -0
  702. package/lib-es/helpers/is-browser.js +3 -0
  703. package/lib-es/helpers/is-browser.js.map +1 -0
  704. package/lib-es/helpers/is-filter-entitys-id.js +8 -0
  705. package/lib-es/helpers/is-filter-entitys-id.js.map +1 -0
  706. package/lib-es/helpers/is-object.js +3 -0
  707. package/lib-es/helpers/is-object.js.map +1 -0
  708. package/lib-es/helpers/is-using-relation-image.js +3 -0
  709. package/lib-es/helpers/is-using-relation-image.js.map +1 -0
  710. package/lib-es/helpers/parse-TextBlock.js +30 -0
  711. package/lib-es/helpers/parse-TextBlock.js.map +1 -0
  712. package/lib-es/helpers/parse-interval.js +4 -0
  713. package/lib-es/helpers/parse-interval.js.map +1 -0
  714. package/lib-es/helpers/parse-props-to-display.js +36 -0
  715. package/lib-es/helpers/parse-props-to-display.js.map +1 -0
  716. package/lib-es/helpers/process-data-summary-value.js +36 -0
  717. package/lib-es/helpers/process-data-summary-value.js.map +1 -0
  718. package/lib-es/helpers/remove-extra-items.js +13 -0
  719. package/lib-es/helpers/remove-extra-items.js.map +1 -0
  720. package/lib-es/helpers/remove-unwanted-characters.js +21 -0
  721. package/lib-es/helpers/remove-unwanted-characters.js.map +1 -0
  722. package/lib-es/helpers/render-children.js +21 -0
  723. package/lib-es/helpers/render-children.js.map +1 -0
  724. package/lib-es/helpers/should-render-waypoint.js +3 -0
  725. package/lib-es/helpers/should-render-waypoint.js.map +1 -0
  726. package/lib-es/helpers/should-return.js +3 -0
  727. package/lib-es/helpers/should-return.js.map +1 -0
  728. package/lib-es/helpers/should-show-property.js +6 -0
  729. package/lib-es/helpers/should-show-property.js.map +1 -0
  730. package/lib-es/helpers/should-skip-single-query.js +4 -0
  731. package/lib-es/helpers/should-skip-single-query.js.map +1 -0
  732. package/lib-es/helpers/sort-response-data.js +10 -0
  733. package/lib-es/helpers/sort-response-data.js.map +1 -0
  734. package/lib-es/helpers/split-children.js +69 -0
  735. package/lib-es/helpers/split-children.js.map +1 -0
  736. package/lib-es/helpers/update-childrens-parent.js +17 -0
  737. package/lib-es/helpers/update-childrens-parent.js.map +1 -0
  738. package/lib-es/hooks/helpers/RenderComponent.js +80 -0
  739. package/lib-es/hooks/helpers/RenderComponent.js.map +1 -0
  740. package/lib-es/hooks/helpers/StoreImages.js +56 -0
  741. package/lib-es/hooks/helpers/StoreImages.js.map +1 -0
  742. package/lib-es/hooks/helpers/append-gtm-classname.js +38 -0
  743. package/lib-es/hooks/helpers/append-gtm-classname.js.map +1 -0
  744. package/lib-es/hooks/helpers/buildPBComponents.js +88 -0
  745. package/lib-es/hooks/helpers/buildPBComponents.js.map +1 -0
  746. package/lib-es/hooks/helpers/check-banner-insertion-set.js +17 -0
  747. package/lib-es/hooks/helpers/check-banner-insertion-set.js.map +1 -0
  748. package/lib-es/hooks/helpers/check-collisions.js +30 -0
  749. package/lib-es/hooks/helpers/check-collisions.js.map +1 -0
  750. package/lib-es/hooks/helpers/constants.js +6 -0
  751. package/lib-es/hooks/helpers/constants.js.map +1 -0
  752. package/lib-es/hooks/helpers/get-banner-index.js +3 -0
  753. package/lib-es/hooks/helpers/get-banner-index.js.map +1 -0
  754. package/lib-es/hooks/helpers/get-components-to-insert-by-type.js +27 -0
  755. package/lib-es/hooks/helpers/get-components-to-insert-by-type.js.map +1 -0
  756. package/lib-es/hooks/helpers/get-lightbox-images.js +40 -0
  757. package/lib-es/hooks/helpers/get-lightbox-images.js.map +1 -0
  758. package/lib-es/hooks/helpers/getComponent.js +5 -0
  759. package/lib-es/hooks/helpers/getComponent.js.map +1 -0
  760. package/lib-es/hooks/helpers/getVariant.js +14 -0
  761. package/lib-es/hooks/helpers/getVariant.js.map +1 -0
  762. package/lib-es/hooks/helpers/index.js +3 -0
  763. package/lib-es/hooks/helpers/index.js.map +1 -0
  764. package/lib-es/hooks/helpers/inject-element-components.js +59 -0
  765. package/lib-es/hooks/helpers/inject-element-components.js.map +1 -0
  766. package/lib-es/hooks/helpers/inject-textblock-banners.js +95 -0
  767. package/lib-es/hooks/helpers/inject-textblock-banners.js.map +1 -0
  768. package/lib-es/hooks/helpers/insert-banners.js +83 -0
  769. package/lib-es/hooks/helpers/insert-banners.js.map +1 -0
  770. package/lib-es/hooks/helpers/update-targetings.js +15 -0
  771. package/lib-es/hooks/helpers/update-targetings.js.map +1 -0
  772. package/lib-es/hooks/index.js +12 -0
  773. package/lib-es/hooks/index.js.map +1 -0
  774. package/lib-es/hooks/use-app-sync-event-hook.js +37 -0
  775. package/lib-es/hooks/use-app-sync-event-hook.js.map +1 -0
  776. package/lib-es/hooks/use-banner-insertion.js +22 -0
  777. package/lib-es/hooks/use-banner-insertion.js.map +1 -0
  778. package/lib-es/hooks/use-check-mobile-screen.js +29 -0
  779. package/lib-es/hooks/use-check-mobile-screen.js.map +1 -0
  780. package/lib-es/hooks/use-filter-aggregation-values.js +31 -0
  781. package/lib-es/hooks/use-filter-aggregation-values.js.map +1 -0
  782. package/lib-es/hooks/use-get-entity-schema.js +39 -0
  783. package/lib-es/hooks/use-get-entity-schema.js.map +1 -0
  784. package/lib-es/hooks/use-get-entity-schemas-as-obj.js +13 -0
  785. package/lib-es/hooks/use-get-entity-schemas-as-obj.js.map +1 -0
  786. package/lib-es/hooks/use-get-image-id-from-relation.js +37 -0
  787. package/lib-es/hooks/use-get-image-id-from-relation.js.map +1 -0
  788. package/lib-es/hooks/use-get-images.js +37 -0
  789. package/lib-es/hooks/use-get-images.js.map +1 -0
  790. package/lib-es/hooks/use-get-single-entity-schema.js +21 -0
  791. package/lib-es/hooks/use-get-single-entity-schema.js.map +1 -0
  792. package/lib-es/hooks/use-page-builder.js +17 -0
  793. package/lib-es/hooks/use-page-builder.js.map +1 -0
  794. package/lib-es/hooks/use-portal.js +14 -0
  795. package/lib-es/hooks/use-portal.js.map +1 -0
  796. package/lib-es/index.js +17 -0
  797. package/lib-es/index.js.map +1 -0
  798. package/lib-es/system-components/EditorMode/BlazeLogo.js +67 -0
  799. package/lib-es/system-components/EditorMode/BlazeLogo.js.map +1 -0
  800. package/lib-es/system-components/EditorMode/PbWrapper.js +34 -0
  801. package/lib-es/system-components/EditorMode/PbWrapper.js.map +1 -0
  802. package/lib-es/system-components/EditorMode/constants.js +3 -0
  803. package/lib-es/system-components/EditorMode/constants.js.map +1 -0
  804. package/lib-es/system-components/EditorMode/helpers/add-editor-mode-event-listeners.js +93 -0
  805. package/lib-es/system-components/EditorMode/helpers/add-editor-mode-event-listeners.js.map +1 -0
  806. package/lib-es/system-components/EditorMode/helpers/check-is-over-blaze-icon.js +19 -0
  807. package/lib-es/system-components/EditorMode/helpers/check-is-over-blaze-icon.js.map +1 -0
  808. package/lib-es/system-components/index.js +3 -0
  809. package/lib-es/system-components/index.js.map +1 -0
  810. package/lib-es/translations.js +37 -0
  811. package/lib-es/translations.js.map +1 -0
  812. package/lib-es/utils/component-map.js +30 -0
  813. package/lib-es/utils/component-map.js.map +1 -0
  814. package/lib-es/utils/get-class-modifiers.js +81 -0
  815. package/lib-es/utils/get-class-modifiers.js.map +1 -0
  816. package/lib-es/utils/get-image-data.js +16 -0
  817. package/lib-es/utils/get-image-data.js.map +1 -0
  818. package/lib-es/utils/get-props-to-display-modifiers.js +5 -0
  819. package/lib-es/utils/get-props-to-display-modifiers.js.map +1 -0
  820. package/lib-es/utils/index.js +8 -0
  821. package/lib-es/utils/index.js.map +1 -0
  822. package/lib-es/utils/is-object-empty.js +4 -0
  823. package/lib-es/utils/is-object-empty.js.map +1 -0
  824. package/lib-es/utils/variant-handler.js +27 -0
  825. package/lib-es/utils/variant-handler.js.map +1 -0
  826. package/lib-es/variants/FloatingSideButton/index.js +10 -0
  827. package/lib-es/variants/FloatingSideButton/index.js.map +1 -0
  828. package/lib-es/variants/HeroImage/index.js +10 -0
  829. package/lib-es/variants/HeroImage/index.js.map +1 -0
  830. package/lib-es/variants/Infographic/Infographic.js +16 -0
  831. package/lib-es/variants/Infographic/Infographic.js.map +1 -0
  832. package/lib-es/variants/Infographic/index.js +10 -0
  833. package/lib-es/variants/Infographic/index.js.map +1 -0
  834. package/lib-es/variants/Infographic/useInfographic.js +23 -0
  835. package/lib-es/variants/Infographic/useInfographic.js.map +1 -0
  836. package/lib-es/variants/LiveBlogList/LiveBlogList.js +80 -0
  837. package/lib-es/variants/LiveBlogList/LiveBlogList.js.map +1 -0
  838. package/lib-es/variants/LiveBlogList/index.js +12 -0
  839. package/lib-es/variants/LiveBlogList/index.js.map +1 -0
  840. package/lib-es/variants/LongformGallery/LongformGallery.js +40 -0
  841. package/lib-es/variants/LongformGallery/LongformGallery.js.map +1 -0
  842. package/lib-es/variants/LongformGallery/LongformGalleryImage.js +59 -0
  843. package/lib-es/variants/LongformGallery/LongformGalleryImage.js.map +1 -0
  844. package/lib-es/variants/LongformGallery/constants.js +18 -0
  845. package/lib-es/variants/LongformGallery/constants.js.map +1 -0
  846. package/lib-es/variants/LongformGallery/helpers/index.js +5 -0
  847. package/lib-es/variants/LongformGallery/helpers/index.js.map +1 -0
  848. package/lib-es/variants/LongformGallery/helpers/parseImageData.js +26 -0
  849. package/lib-es/variants/LongformGallery/helpers/parseImageData.js.map +1 -0
  850. package/lib-es/variants/LongformGallery/helpers/separateImages.js +25 -0
  851. package/lib-es/variants/LongformGallery/helpers/separateImages.js.map +1 -0
  852. package/lib-es/variants/LongformGallery/helpers/shouldSkip.js +3 -0
  853. package/lib-es/variants/LongformGallery/helpers/shouldSkip.js.map +1 -0
  854. package/lib-es/variants/LongformGallery/index.js +12 -0
  855. package/lib-es/variants/LongformGallery/index.js.map +1 -0
  856. package/lib-es/variants/LongformGallery/useLongformGallery.js +47 -0
  857. package/lib-es/variants/LongformGallery/useLongformGallery.js.map +1 -0
  858. package/lib-es/variants/LongformRow/index.js +10 -0
  859. package/lib-es/variants/LongformRow/index.js.map +1 -0
  860. package/lib-es/variants/ParallaxImageTextRight/index.js +11 -0
  861. package/lib-es/variants/ParallaxImageTextRight/index.js.map +1 -0
  862. package/lib-es/variants/SlideSummary/SlideSummary.js +23 -0
  863. package/lib-es/variants/SlideSummary/SlideSummary.js.map +1 -0
  864. package/lib-es/variants/SlideSummary/index.js +10 -0
  865. package/lib-es/variants/SlideSummary/index.js.map +1 -0
  866. package/lib-es/variants/ThumbnailCarousel/ThumbnailCarousel.js +49 -0
  867. package/lib-es/variants/ThumbnailCarousel/ThumbnailCarousel.js.map +1 -0
  868. package/lib-es/variants/ThumbnailCarousel/ThumbnailImage/ThumbnailImage.js +30 -0
  869. package/lib-es/variants/ThumbnailCarousel/ThumbnailImage/ThumbnailImage.js.map +1 -0
  870. package/lib-es/variants/ThumbnailCarousel/ThumbnailImage/index.js +3 -0
  871. package/lib-es/variants/ThumbnailCarousel/ThumbnailImage/index.js.map +1 -0
  872. package/lib-es/variants/ThumbnailCarousel/ThumbnailImage/useThumbnailImage.js +62 -0
  873. package/lib-es/variants/ThumbnailCarousel/ThumbnailImage/useThumbnailImage.js.map +1 -0
  874. package/lib-es/variants/ThumbnailCarousel/index.js +10 -0
  875. package/lib-es/variants/ThumbnailCarousel/index.js.map +1 -0
  876. package/lib-es/variants/ThumbnailCarousel/useThumbnailCarousel.js +47 -0
  877. package/lib-es/variants/ThumbnailCarousel/useThumbnailCarousel.js.map +1 -0
  878. package/lib-es/variants/index.js +21 -0
  879. package/lib-es/variants/index.js.map +1 -0
  880. package/package.json +11 -10
  881. package/src/components/Menu/Menu.js +1 -3
  882. package/src/components/Menu/MenuContext.js +1 -1
  883. package/src/components/MenuItem/MenuItemRender.js +12 -40
  884. package/src/components/MenuItem/helpers/index.js +1 -3
  885. package/tests/unit/src/components/MenuItem/MenuItem.test.js +0 -5
  886. package/tests/unit/src/components/MenuItem/MenuItemRender.test.js +3 -11
  887. package/lib/components/MenuItem/helpers/has-active-child.js +0 -19
  888. package/lib/components/MenuItem/helpers/has-active-child.js.map +0 -1
  889. package/lib/components/MenuItem/helpers/isUrlPathMatch.js +0 -18
  890. package/lib/components/MenuItem/helpers/isUrlPathMatch.js.map +0 -1
  891. package/src/components/MenuItem/helpers/has-active-child.js +0 -10
  892. package/src/components/MenuItem/helpers/isUrlPathMatch.js +0 -10
  893. package/tests/unit/src/components/MenuItem/helpers/constants.js +0 -73
  894. package/tests/unit/src/components/MenuItem/helpers/has-active-child.test.js +0 -35
  895. package/tests/unit/src/components/MenuItem/helpers/is-url-path-match.test.js +0 -53
@@ -0,0 +1,23 @@
1
+ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
2
+ const _excluded = ["modifier"];
3
+ import React from 'react';
4
+ import PropTypes from 'prop-types';
5
+ import { getModifiers } from '../../../../helpers';
6
+ import TextSummaryContent from './TextSummaryContent';
7
+ const TextSummary = _ref => {
8
+ let {
9
+ modifier
10
+ } = _ref,
11
+ otherProps = _objectWithoutProperties(_ref, _excluded);
12
+ return /*#__PURE__*/React.createElement("div", {
13
+ className: getModifiers('stats', modifier)
14
+ }, /*#__PURE__*/React.createElement(TextSummaryContent, otherProps));
15
+ };
16
+ TextSummary.propTypes = {
17
+ modifier: PropTypes.string
18
+ };
19
+ TextSummary.defaultProps = {
20
+ modifier: ''
21
+ };
22
+ export default TextSummary;
23
+ //# sourceMappingURL=TextSummary.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextSummary.js","names":["React","PropTypes","getModifiers","TextSummaryContent","TextSummary","_ref","modifier","otherProps","_objectWithoutProperties","_excluded","createElement","className","propTypes","string","defaultProps"],"sources":["../../../../../src/components/DataSummary/DataSummaryTypes/TextSummary/TextSummary.js"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport { getModifiers } from '../../../../helpers';\nimport TextSummaryContent from './TextSummaryContent';\n\nconst TextSummary = ({ modifier, ...otherProps }) => (\n <div className={getModifiers('stats', modifier)}>\n <TextSummaryContent {...otherProps} />\n </div>\n);\n\nTextSummary.propTypes = {\n modifier: PropTypes.string\n};\n\nTextSummary.defaultProps = {\n modifier: ''\n};\n\nexport default TextSummary;\n"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAOC,SAAS,MAAM,YAAY;AAClC,SAASC,YAAY,QAAQ,qBAAqB;AAClD,OAAOC,kBAAkB,MAAM,sBAAsB;AAErD,MAAMC,WAAW,GAAGC,IAAA;EAAA,IAAC;MAAEC;IAAwB,CAAC,GAAAD,IAAA;IAAZE,UAAU,GAAAC,wBAAA,CAAAH,IAAA,EAAAI,SAAA;EAAA,oBAC5CT,KAAA,CAAAU,aAAA;IAAKC,SAAS,EAAET,YAAY,CAAC,OAAO,EAAEI,QAAQ;EAAE,gBAC9CN,KAAA,CAAAU,aAAA,CAACP,kBAAkB,EAAKI,UAAa,CAClC,CAAC;AAAA,CACP;AAEDH,WAAW,CAACQ,SAAS,GAAG;EACtBN,QAAQ,EAAEL,SAAS,CAACY;AACtB,CAAC;AAEDT,WAAW,CAACU,YAAY,GAAG;EACzBR,QAAQ,EAAE;AACZ,CAAC;AAED,eAAeF,WAAW","ignoreList":[]}
@@ -0,0 +1,29 @@
1
+ import React, { useContext } from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { MainContext } from '@blaze-cms/nextjs-components';
4
+ import { getWrappedValueWithLink } from '../../../../helpers';
5
+ import { parseBooleanValues } from '../../helpers';
6
+ import { withTitle } from '../../../../HOC';
7
+ const TextSummaryContent = ({
8
+ summaryPropsWithContent
9
+ }) => {
10
+ const {
11
+ itemId
12
+ } = useContext(MainContext);
13
+ return /*#__PURE__*/React.createElement("div", {
14
+ className: "stats__heading"
15
+ }, summaryPropsWithContent.map(([key, value, link, modifier], index) => {
16
+ const wrappedValue = parseBooleanValues(getWrappedValueWithLink(value, link, itemId), key);
17
+ const dynamicKey = [itemId, index].join('-');
18
+ if (!wrappedValue) return null;
19
+ return /*#__PURE__*/React.createElement("span", {
20
+ className: modifier,
21
+ key: dynamicKey
22
+ }, wrappedValue);
23
+ }));
24
+ };
25
+ TextSummaryContent.propTypes = {
26
+ summaryPropsWithContent: PropTypes.array.isRequired
27
+ };
28
+ export default withTitle(TextSummaryContent);
29
+ //# sourceMappingURL=TextSummaryContent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TextSummaryContent.js","names":["React","useContext","PropTypes","MainContext","getWrappedValueWithLink","parseBooleanValues","withTitle","TextSummaryContent","summaryPropsWithContent","itemId","createElement","className","map","key","value","link","modifier","index","wrappedValue","dynamicKey","join","propTypes","array","isRequired"],"sources":["../../../../../src/components/DataSummary/DataSummaryTypes/TextSummary/TextSummaryContent.js"],"sourcesContent":["import React, { useContext } from 'react';\nimport PropTypes from 'prop-types';\nimport { MainContext } from '@blaze-cms/nextjs-components';\nimport { getWrappedValueWithLink } from '../../../../helpers';\nimport { parseBooleanValues } from '../../helpers';\nimport { withTitle } from '../../../../HOC';\n\nconst TextSummaryContent = ({ summaryPropsWithContent }) => {\n const { itemId } = useContext(MainContext);\n\n return (\n <div className=\"stats__heading\">\n {summaryPropsWithContent.map(([key, value, link, modifier], index) => {\n const wrappedValue = parseBooleanValues(getWrappedValueWithLink(value, link, itemId), key);\n const dynamicKey = [itemId, index].join('-');\n\n if (!wrappedValue) return null;\n\n return (\n <span className={modifier} key={dynamicKey}>\n {wrappedValue}\n </span>\n );\n })}\n </div>\n );\n};\n\nTextSummaryContent.propTypes = {\n summaryPropsWithContent: PropTypes.array.isRequired\n};\n\nexport default withTitle(TextSummaryContent);\n"],"mappings":"AAAA,OAAOA,KAAK,IAAIC,UAAU,QAAQ,OAAO;AACzC,OAAOC,SAAS,MAAM,YAAY;AAClC,SAASC,WAAW,QAAQ,8BAA8B;AAC1D,SAASC,uBAAuB,QAAQ,qBAAqB;AAC7D,SAASC,kBAAkB,QAAQ,eAAe;AAClD,SAASC,SAAS,QAAQ,iBAAiB;AAE3C,MAAMC,kBAAkB,GAAGA,CAAC;EAAEC;AAAwB,CAAC,KAAK;EAC1D,MAAM;IAAEC;EAAO,CAAC,GAAGR,UAAU,CAACE,WAAW,CAAC;EAE1C,oBACEH,KAAA,CAAAU,aAAA;IAAKC,SAAS,EAAC;EAAgB,GAC5BH,uBAAuB,CAACI,GAAG,CAAC,CAAC,CAACC,GAAG,EAAEC,KAAK,EAAEC,IAAI,EAAEC,QAAQ,CAAC,EAAEC,KAAK,KAAK;IACpE,MAAMC,YAAY,GAAGb,kBAAkB,CAACD,uBAAuB,CAACU,KAAK,EAAEC,IAAI,EAAEN,MAAM,CAAC,EAAEI,GAAG,CAAC;IAC1F,MAAMM,UAAU,GAAG,CAACV,MAAM,EAAEQ,KAAK,CAAC,CAACG,IAAI,CAAC,GAAG,CAAC;IAE5C,IAAI,CAACF,YAAY,EAAE,OAAO,IAAI;IAE9B,oBACElB,KAAA,CAAAU,aAAA;MAAMC,SAAS,EAAEK,QAAS;MAACH,GAAG,EAAEM;IAAW,GACxCD,YACG,CAAC;EAEX,CAAC,CACE,CAAC;AAEV,CAAC;AAEDX,kBAAkB,CAACc,SAAS,GAAG;EAC7Bb,uBAAuB,EAAEN,SAAS,CAACoB,KAAK,CAACC;AAC3C,CAAC;AAED,eAAejB,SAAS,CAACC,kBAAkB,CAAC","ignoreList":[]}
@@ -0,0 +1,3 @@
1
+ import TextSummary from './TextSummary';
2
+ export default TextSummary;
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":["TextSummary"],"sources":["../../../../../src/components/DataSummary/DataSummaryTypes/TextSummary/index.js"],"sourcesContent":["import TextSummary from './TextSummary';\n\nexport default TextSummary;\n"],"mappings":"AAAA,OAAOA,WAAW,MAAM,eAAe;AAEvC,eAAeA,WAAW","ignoreList":[]}
@@ -0,0 +1,9 @@
1
+ import dynamic from 'next/dynamic';
2
+ export const summaryComponents = {
3
+ list: dynamic(() => import(/* webpackChunkName: "blazePbDataSummaryListSummary" */'./ListSummary')),
4
+ large: dynamic(() => import(/* webpackChunkName: "blazePbDataSummaryLargeSummary" */'./LargeSummary')),
5
+ text: dynamic(() => import(/* webpackChunkName: "blazePbDataSummaryTextSummary" */'./TextSummary')),
6
+ heading_large: dynamic(() => import(/* webpackChunkName: "blazePbDataSummaryHeadingLargeSummary" */'./HeadingLargeSummary')),
7
+ item_details: dynamic(() => import(/* webpackChunkName: "blazePbDataSummaryItemDetailsSummary" */'./ItemDetailsSummary'))
8
+ };
9
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":["dynamic","summaryComponents","list","large","text","heading_large","item_details"],"sources":["../../../../src/components/DataSummary/DataSummaryTypes/index.js"],"sourcesContent":["import dynamic from 'next/dynamic';\n\nexport const summaryComponents = {\n list: dynamic(\n () => import(/* webpackChunkName: \"blazePbDataSummaryListSummary\" */ './ListSummary')\n ),\n large: dynamic(\n () => import(/* webpackChunkName: \"blazePbDataSummaryLargeSummary\" */ './LargeSummary')\n ),\n text: dynamic(\n () => import(/* webpackChunkName: \"blazePbDataSummaryTextSummary\" */ './TextSummary')\n ),\n heading_large: dynamic(\n () =>\n import(\n /* webpackChunkName: \"blazePbDataSummaryHeadingLargeSummary\" */ './HeadingLargeSummary'\n )\n ),\n item_details: dynamic(\n () =>\n import(/* webpackChunkName: \"blazePbDataSummaryItemDetailsSummary\" */ './ItemDetailsSummary')\n )\n};\n"],"mappings":"AAAA,OAAOA,OAAO,MAAM,cAAc;AAElC,OAAO,MAAMC,iBAAiB,GAAG;EAC/BC,IAAI,EAAEF,OAAO,CACX,MAAM,MAAM,CAAC,uDAAwD,eAAe,CACtF,CAAC;EACDG,KAAK,EAAEH,OAAO,CACZ,MAAM,MAAM,CAAC,wDAAyD,gBAAgB,CACxF,CAAC;EACDI,IAAI,EAAEJ,OAAO,CACX,MAAM,MAAM,CAAC,uDAAwD,eAAe,CACtF,CAAC;EACDK,aAAa,EAAEL,OAAO,CACpB,MACE,MAAM,CACJ,+DAAgE,uBAClE,CACJ,CAAC;EACDM,YAAY,EAAEN,OAAO,CACnB,MACE,MAAM,CAAC,8DAA+D,sBAAsB,CAChG;AACF,CAAC","ignoreList":[]}
@@ -0,0 +1,61 @@
1
+ import upperFirst from 'lodash.upperfirst';
2
+ import flatten from 'lodash.flatten';
3
+ import getLinkToPublishedContent from './get-link-to-published-content';
4
+ import getLoopPropsLimit from './get-loop-props-limit';
5
+ import getPropValue from './get-prop-value';
6
+ import { processDataSummaryValue } from '../../../helpers';
7
+ const getLoopValue = value => {
8
+ const {
9
+ keyField
10
+ } = value;
11
+ return value[keyField];
12
+ };
13
+ const separateValues = (propsToDisplay, loopProps, data) => {
14
+ const regularValues = {};
15
+ const loopValues = {};
16
+ propsToDisplay.forEach(options => {
17
+ const {
18
+ propertiesToDisplay
19
+ } = options;
20
+ propertiesToDisplay.forEach(prop => {
21
+ const value = getPropValue(prop, data, options);
22
+ const isArrayValue = Array.isArray(value);
23
+ if (!value) return;
24
+ const isLoopableProp = loopProps.includes(prop) && isArrayValue;
25
+ if (isLoopableProp) {
26
+ loopValues[prop] = value;
27
+ } else {
28
+ regularValues[prop] = value;
29
+ }
30
+ });
31
+ });
32
+ return [regularValues, loopValues];
33
+ };
34
+ const buildLoopPropsContent = (loopProps = [], propsToDisplay = [], limit = 0, data = {}, isSlider = false) => {
35
+ const loopPropsWithContent = [];
36
+ const [regularValues, loopValues] = separateValues(propsToDisplay, loopProps, data);
37
+ const loopLimit = getLoopPropsLimit(loopValues, limit);
38
+ for (let i = 0; i < loopLimit; i += 1) {
39
+ const propsArray = flatten(propsToDisplay.map(options => {
40
+ const {
41
+ propertiesToDisplay,
42
+ label,
43
+ modifier = ''
44
+ } = options;
45
+ return propertiesToDisplay.map(key => {
46
+ const loopValue = loopValues[key];
47
+ const loopValueItem = loopValue && loopValue[i];
48
+ const propValue = loopValueItem ? getLoopValue(loopValueItem) : regularValues[key];
49
+ if (!propValue) return null;
50
+ const processedValue = processDataSummaryValue(propValue, options);
51
+ const linkToPublishedContent = getLinkToPublishedContent(key, data, loopValueItem);
52
+ return [upperFirst(label), processedValue, linkToPublishedContent, modifier];
53
+ });
54
+ })).filter(Boolean);
55
+ loopPropsWithContent.push(propsArray);
56
+ }
57
+ if (isSlider) return loopPropsWithContent;
58
+ return flatten(loopPropsWithContent);
59
+ };
60
+ export default buildLoopPropsContent;
61
+ //# sourceMappingURL=build-loop-props-content.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"build-loop-props-content.js","names":["upperFirst","flatten","getLinkToPublishedContent","getLoopPropsLimit","getPropValue","processDataSummaryValue","getLoopValue","value","keyField","separateValues","propsToDisplay","loopProps","data","regularValues","loopValues","forEach","options","propertiesToDisplay","prop","isArrayValue","Array","isArray","isLoopableProp","includes","buildLoopPropsContent","limit","isSlider","loopPropsWithContent","loopLimit","i","propsArray","map","label","modifier","key","loopValue","loopValueItem","propValue","processedValue","linkToPublishedContent","filter","Boolean","push"],"sources":["../../../../src/components/DataSummary/helpers/build-loop-props-content.js"],"sourcesContent":["import upperFirst from 'lodash.upperfirst';\nimport flatten from 'lodash.flatten';\nimport getLinkToPublishedContent from './get-link-to-published-content';\nimport getLoopPropsLimit from './get-loop-props-limit';\nimport getPropValue from './get-prop-value';\nimport { processDataSummaryValue } from '../../../helpers';\n\nconst getLoopValue = value => {\n const { keyField } = value;\n return value[keyField];\n};\n\nconst separateValues = (propsToDisplay, loopProps, data) => {\n const regularValues = {};\n const loopValues = {};\n\n propsToDisplay.forEach(options => {\n const { propertiesToDisplay } = options;\n propertiesToDisplay.forEach(prop => {\n const value = getPropValue(prop, data, options);\n const isArrayValue = Array.isArray(value);\n if (!value) return;\n const isLoopableProp = loopProps.includes(prop) && isArrayValue;\n\n if (isLoopableProp) {\n loopValues[prop] = value;\n } else {\n regularValues[prop] = value;\n }\n });\n });\n return [regularValues, loopValues];\n};\n\nconst buildLoopPropsContent = (\n loopProps = [],\n propsToDisplay = [],\n limit = 0,\n data = {},\n isSlider = false\n) => {\n const loopPropsWithContent = [];\n const [regularValues, loopValues] = separateValues(propsToDisplay, loopProps, data);\n const loopLimit = getLoopPropsLimit(loopValues, limit);\n\n for (let i = 0; i < loopLimit; i += 1) {\n const propsArray = flatten(\n propsToDisplay.map(options => {\n const { propertiesToDisplay, label, modifier = '' } = options;\n\n return propertiesToDisplay.map(key => {\n const loopValue = loopValues[key];\n const loopValueItem = loopValue && loopValue[i];\n const propValue = loopValueItem ? getLoopValue(loopValueItem) : regularValues[key];\n if (!propValue) return null;\n\n const processedValue = processDataSummaryValue(propValue, options);\n const linkToPublishedContent = getLinkToPublishedContent(key, data, loopValueItem);\n return [upperFirst(label), processedValue, linkToPublishedContent, modifier];\n });\n })\n ).filter(Boolean);\n loopPropsWithContent.push(propsArray);\n }\n if (isSlider) return loopPropsWithContent;\n return flatten(loopPropsWithContent);\n};\n\nexport default buildLoopPropsContent;\n"],"mappings":"AAAA,OAAOA,UAAU,MAAM,mBAAmB;AAC1C,OAAOC,OAAO,MAAM,gBAAgB;AACpC,OAAOC,yBAAyB,MAAM,iCAAiC;AACvE,OAAOC,iBAAiB,MAAM,wBAAwB;AACtD,OAAOC,YAAY,MAAM,kBAAkB;AAC3C,SAASC,uBAAuB,QAAQ,kBAAkB;AAE1D,MAAMC,YAAY,GAAGC,KAAK,IAAI;EAC5B,MAAM;IAAEC;EAAS,CAAC,GAAGD,KAAK;EAC1B,OAAOA,KAAK,CAACC,QAAQ,CAAC;AACxB,CAAC;AAED,MAAMC,cAAc,GAAGA,CAACC,cAAc,EAAEC,SAAS,EAAEC,IAAI,KAAK;EAC1D,MAAMC,aAAa,GAAG,CAAC,CAAC;EACxB,MAAMC,UAAU,GAAG,CAAC,CAAC;EAErBJ,cAAc,CAACK,OAAO,CAACC,OAAO,IAAI;IAChC,MAAM;MAAEC;IAAoB,CAAC,GAAGD,OAAO;IACvCC,mBAAmB,CAACF,OAAO,CAACG,IAAI,IAAI;MAClC,MAAMX,KAAK,GAAGH,YAAY,CAACc,IAAI,EAAEN,IAAI,EAAEI,OAAO,CAAC;MAC/C,MAAMG,YAAY,GAAGC,KAAK,CAACC,OAAO,CAACd,KAAK,CAAC;MACzC,IAAI,CAACA,KAAK,EAAE;MACZ,MAAMe,cAAc,GAAGX,SAAS,CAACY,QAAQ,CAACL,IAAI,CAAC,IAAIC,YAAY;MAE/D,IAAIG,cAAc,EAAE;QAClBR,UAAU,CAACI,IAAI,CAAC,GAAGX,KAAK;MAC1B,CAAC,MAAM;QACLM,aAAa,CAACK,IAAI,CAAC,GAAGX,KAAK;MAC7B;IACF,CAAC,CAAC;EACJ,CAAC,CAAC;EACF,OAAO,CAACM,aAAa,EAAEC,UAAU,CAAC;AACpC,CAAC;AAED,MAAMU,qBAAqB,GAAGA,CAC5Bb,SAAS,GAAG,EAAE,EACdD,cAAc,GAAG,EAAE,EACnBe,KAAK,GAAG,CAAC,EACTb,IAAI,GAAG,CAAC,CAAC,EACTc,QAAQ,GAAG,KAAK,KACb;EACH,MAAMC,oBAAoB,GAAG,EAAE;EAC/B,MAAM,CAACd,aAAa,EAAEC,UAAU,CAAC,GAAGL,cAAc,CAACC,cAAc,EAAEC,SAAS,EAAEC,IAAI,CAAC;EACnF,MAAMgB,SAAS,GAAGzB,iBAAiB,CAACW,UAAU,EAAEW,KAAK,CAAC;EAEtD,KAAK,IAAII,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGD,SAAS,EAAEC,CAAC,IAAI,CAAC,EAAE;IACrC,MAAMC,UAAU,GAAG7B,OAAO,CACxBS,cAAc,CAACqB,GAAG,CAACf,OAAO,IAAI;MAC5B,MAAM;QAAEC,mBAAmB;QAAEe,KAAK;QAAEC,QAAQ,GAAG;MAAG,CAAC,GAAGjB,OAAO;MAE7D,OAAOC,mBAAmB,CAACc,GAAG,CAACG,GAAG,IAAI;QACpC,MAAMC,SAAS,GAAGrB,UAAU,CAACoB,GAAG,CAAC;QACjC,MAAME,aAAa,GAAGD,SAAS,IAAIA,SAAS,CAACN,CAAC,CAAC;QAC/C,MAAMQ,SAAS,GAAGD,aAAa,GAAG9B,YAAY,CAAC8B,aAAa,CAAC,GAAGvB,aAAa,CAACqB,GAAG,CAAC;QAClF,IAAI,CAACG,SAAS,EAAE,OAAO,IAAI;QAE3B,MAAMC,cAAc,GAAGjC,uBAAuB,CAACgC,SAAS,EAAErB,OAAO,CAAC;QAClE,MAAMuB,sBAAsB,GAAGrC,yBAAyB,CAACgC,GAAG,EAAEtB,IAAI,EAAEwB,aAAa,CAAC;QAClF,OAAO,CAACpC,UAAU,CAACgC,KAAK,CAAC,EAAEM,cAAc,EAAEC,sBAAsB,EAAEN,QAAQ,CAAC;MAC9E,CAAC,CAAC;IACJ,CAAC,CACH,CAAC,CAACO,MAAM,CAACC,OAAO,CAAC;IACjBd,oBAAoB,CAACe,IAAI,CAACZ,UAAU,CAAC;EACvC;EACA,IAAIJ,QAAQ,EAAE,OAAOC,oBAAoB;EACzC,OAAO1B,OAAO,CAAC0B,oBAAoB,CAAC;AACtC,CAAC;AAED,eAAeH,qBAAqB","ignoreList":[]}
@@ -0,0 +1,45 @@
1
+ import upperFirst from 'lodash.upperfirst';
2
+ import flatten from 'lodash.flatten';
3
+ import { isObject, processDataSummaryValue } from '../../../helpers';
4
+ import getLinkToPublishedContent from './get-link-to-published-content';
5
+ import getPropValue from './get-prop-value';
6
+ import getLinkBasedOnValue from './get-link-based-on-value';
7
+ const buildPropsToDisplayWithContent = (props, propsToDisplay = []) => {
8
+ if (!isObject(propsToDisplay[0])) {
9
+ return propsToDisplay.map(key => {
10
+ if (!key) return null;
11
+ const propValue = getPropValue(key, props);
12
+ if (!propValue) return null;
13
+ const propName = key.split('.').join(' ');
14
+ return [upperFirst(propName), propValue, '', ''];
15
+ }).filter(Boolean);
16
+ }
17
+ return flatten(propsToDisplay.map(options => {
18
+ const {
19
+ propertiesToDisplay,
20
+ label,
21
+ modifier = '',
22
+ enableLink
23
+ } = options;
24
+ return propertiesToDisplay.map(key => {
25
+ if (!key) return null;
26
+ const objPropValue = getPropValue(key, props, options);
27
+ if (!objPropValue) return null;
28
+ const processedValue = processDataSummaryValue(objPropValue, options);
29
+ const link = getLink(enableLink, key, props, processedValue);
30
+ return [upperFirst(label), processedValue, link, modifier];
31
+ });
32
+ })).filter(Boolean);
33
+ };
34
+ export default buildPropsToDisplayWithContent;
35
+ function getLink(enableLink, key, props, objPropValue) {
36
+ let link = '';
37
+ if (enableLink) {
38
+ link = getLinkToPublishedContent(key, props);
39
+ if (!link) {
40
+ link = getLinkBasedOnValue(objPropValue);
41
+ }
42
+ }
43
+ return link;
44
+ }
45
+ //# sourceMappingURL=build-props-to-display-with-content.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"build-props-to-display-with-content.js","names":["upperFirst","flatten","isObject","processDataSummaryValue","getLinkToPublishedContent","getPropValue","getLinkBasedOnValue","buildPropsToDisplayWithContent","props","propsToDisplay","map","key","propValue","propName","split","join","filter","Boolean","options","propertiesToDisplay","label","modifier","enableLink","objPropValue","processedValue","link","getLink"],"sources":["../../../../src/components/DataSummary/helpers/build-props-to-display-with-content.js"],"sourcesContent":["import upperFirst from 'lodash.upperfirst';\nimport flatten from 'lodash.flatten';\nimport { isObject, processDataSummaryValue } from '../../../helpers';\nimport getLinkToPublishedContent from './get-link-to-published-content';\nimport getPropValue from './get-prop-value';\nimport getLinkBasedOnValue from './get-link-based-on-value';\n\nconst buildPropsToDisplayWithContent = (props, propsToDisplay = []) => {\n if (!isObject(propsToDisplay[0])) {\n return propsToDisplay\n .map(key => {\n if (!key) return null;\n const propValue = getPropValue(key, props);\n if (!propValue) return null;\n const propName = key.split('.').join(' ');\n return [upperFirst(propName), propValue, '', ''];\n })\n .filter(Boolean);\n }\n\n return flatten(\n propsToDisplay.map(options => {\n const { propertiesToDisplay, label, modifier = '', enableLink } = options;\n return propertiesToDisplay.map(key => {\n if (!key) return null;\n\n const objPropValue = getPropValue(key, props, options);\n if (!objPropValue) return null;\n\n const processedValue = processDataSummaryValue(objPropValue, options);\n\n const link = getLink(enableLink, key, props, processedValue);\n\n return [upperFirst(label), processedValue, link, modifier];\n });\n })\n ).filter(Boolean);\n};\n\nexport default buildPropsToDisplayWithContent;\n\nfunction getLink(enableLink, key, props, objPropValue) {\n let link = '';\n if (enableLink) {\n link = getLinkToPublishedContent(key, props);\n if (!link) {\n link = getLinkBasedOnValue(objPropValue);\n }\n }\n return link;\n}\n"],"mappings":"AAAA,OAAOA,UAAU,MAAM,mBAAmB;AAC1C,OAAOC,OAAO,MAAM,gBAAgB;AACpC,SAASC,QAAQ,EAAEC,uBAAuB,QAAQ,kBAAkB;AACpE,OAAOC,yBAAyB,MAAM,iCAAiC;AACvE,OAAOC,YAAY,MAAM,kBAAkB;AAC3C,OAAOC,mBAAmB,MAAM,2BAA2B;AAE3D,MAAMC,8BAA8B,GAAGA,CAACC,KAAK,EAAEC,cAAc,GAAG,EAAE,KAAK;EACrE,IAAI,CAACP,QAAQ,CAACO,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE;IAChC,OAAOA,cAAc,CAClBC,GAAG,CAACC,GAAG,IAAI;MACV,IAAI,CAACA,GAAG,EAAE,OAAO,IAAI;MACrB,MAAMC,SAAS,GAAGP,YAAY,CAACM,GAAG,EAAEH,KAAK,CAAC;MAC1C,IAAI,CAACI,SAAS,EAAE,OAAO,IAAI;MAC3B,MAAMC,QAAQ,GAAGF,GAAG,CAACG,KAAK,CAAC,GAAG,CAAC,CAACC,IAAI,CAAC,GAAG,CAAC;MACzC,OAAO,CAACf,UAAU,CAACa,QAAQ,CAAC,EAAED,SAAS,EAAE,EAAE,EAAE,EAAE,CAAC;IAClD,CAAC,CAAC,CACDI,MAAM,CAACC,OAAO,CAAC;EACpB;EAEA,OAAOhB,OAAO,CACZQ,cAAc,CAACC,GAAG,CAACQ,OAAO,IAAI;IAC5B,MAAM;MAAEC,mBAAmB;MAAEC,KAAK;MAAEC,QAAQ,GAAG,EAAE;MAAEC;IAAW,CAAC,GAAGJ,OAAO;IACzE,OAAOC,mBAAmB,CAACT,GAAG,CAACC,GAAG,IAAI;MACpC,IAAI,CAACA,GAAG,EAAE,OAAO,IAAI;MAErB,MAAMY,YAAY,GAAGlB,YAAY,CAACM,GAAG,EAAEH,KAAK,EAAEU,OAAO,CAAC;MACtD,IAAI,CAACK,YAAY,EAAE,OAAO,IAAI;MAE9B,MAAMC,cAAc,GAAGrB,uBAAuB,CAACoB,YAAY,EAAEL,OAAO,CAAC;MAErE,MAAMO,IAAI,GAAGC,OAAO,CAACJ,UAAU,EAAEX,GAAG,EAAEH,KAAK,EAAEgB,cAAc,CAAC;MAE5D,OAAO,CAACxB,UAAU,CAACoB,KAAK,CAAC,EAAEI,cAAc,EAAEC,IAAI,EAAEJ,QAAQ,CAAC;IAC5D,CAAC,CAAC;EACJ,CAAC,CACH,CAAC,CAACL,MAAM,CAACC,OAAO,CAAC;AACnB,CAAC;AAED,eAAeV,8BAA8B;AAE7C,SAASmB,OAAOA,CAACJ,UAAU,EAAEX,GAAG,EAAEH,KAAK,EAAEe,YAAY,EAAE;EACrD,IAAIE,IAAI,GAAG,EAAE;EACb,IAAIH,UAAU,EAAE;IACdG,IAAI,GAAGrB,yBAAyB,CAACO,GAAG,EAAEH,KAAK,CAAC;IAC5C,IAAI,CAACiB,IAAI,EAAE;MACTA,IAAI,GAAGnB,mBAAmB,CAACiB,YAAY,CAAC;IAC1C;EACF;EACA,OAAOE,IAAI;AACb","ignoreList":[]}
@@ -0,0 +1,19 @@
1
+ import { generateSingleItemQuery } from '../../../application/query';
2
+ const getDataSummaryQuery = (data, isPreview, extraProps = '') => {
3
+ if (!data) {
4
+ return null;
5
+ }
6
+ const {
7
+ getEntitySchema
8
+ } = data;
9
+ const {
10
+ actions: {
11
+ getPublished,
12
+ get
13
+ }
14
+ } = getEntitySchema;
15
+ const actionKey = isPreview ? get : getPublished || get;
16
+ return generateSingleItemQuery(actionKey, extraProps);
17
+ };
18
+ export default getDataSummaryQuery;
19
+ //# sourceMappingURL=get-data-summary-query.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-data-summary-query.js","names":["generateSingleItemQuery","getDataSummaryQuery","data","isPreview","extraProps","getEntitySchema","actions","getPublished","get","actionKey"],"sources":["../../../../src/components/DataSummary/helpers/get-data-summary-query.js"],"sourcesContent":["import { generateSingleItemQuery } from '../../../application/query';\n\nconst getDataSummaryQuery = (data, isPreview, extraProps = '') => {\n if (!data) {\n return null;\n }\n\n const { getEntitySchema } = data;\n const {\n actions: { getPublished, get }\n } = getEntitySchema;\n const actionKey = isPreview ? get : getPublished || get;\n\n return generateSingleItemQuery(actionKey, extraProps);\n};\n\nexport default getDataSummaryQuery;\n"],"mappings":"AAAA,SAASA,uBAAuB,QAAQ,4BAA4B;AAEpE,MAAMC,mBAAmB,GAAGA,CAACC,IAAI,EAAEC,SAAS,EAAEC,UAAU,GAAG,EAAE,KAAK;EAChE,IAAI,CAACF,IAAI,EAAE;IACT,OAAO,IAAI;EACb;EAEA,MAAM;IAAEG;EAAgB,CAAC,GAAGH,IAAI;EAChC,MAAM;IACJI,OAAO,EAAE;MAAEC,YAAY;MAAEC;IAAI;EAC/B,CAAC,GAAGH,eAAe;EACnB,MAAMI,SAAS,GAAGN,SAAS,GAAGK,GAAG,GAAGD,YAAY,IAAIC,GAAG;EAEvD,OAAOR,uBAAuB,CAACS,SAAS,EAAEL,UAAU,CAAC;AACvD,CAAC;AAED,eAAeH,mBAAmB","ignoreList":[]}
@@ -0,0 +1,15 @@
1
+ import { DATA_SUMMARY_EMAIL_REGEX, DATA_SUMMARY_URL_REGEX, DATA_SUMMARY_TEL_REGEX } from '../../../constants';
2
+ function getLinkBasedOnValue(value) {
3
+ if (DATA_SUMMARY_EMAIL_REGEX.test(value)) {
4
+ return `mailto:${value}`;
5
+ }
6
+ if (DATA_SUMMARY_URL_REGEX.test(value)) {
7
+ return value;
8
+ }
9
+ if (DATA_SUMMARY_TEL_REGEX.test(value)) {
10
+ return `tel:${value}`;
11
+ }
12
+ return '';
13
+ }
14
+ export default getLinkBasedOnValue;
15
+ //# sourceMappingURL=get-link-based-on-value.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-link-based-on-value.js","names":["DATA_SUMMARY_EMAIL_REGEX","DATA_SUMMARY_URL_REGEX","DATA_SUMMARY_TEL_REGEX","getLinkBasedOnValue","value","test"],"sources":["../../../../src/components/DataSummary/helpers/get-link-based-on-value.js"],"sourcesContent":["import {\n DATA_SUMMARY_EMAIL_REGEX,\n DATA_SUMMARY_URL_REGEX,\n DATA_SUMMARY_TEL_REGEX\n} from '../../../constants';\n\nfunction getLinkBasedOnValue(value) {\n if (DATA_SUMMARY_EMAIL_REGEX.test(value)) {\n return `mailto:${value}`;\n }\n if (DATA_SUMMARY_URL_REGEX.test(value)) {\n return value;\n }\n\n if (DATA_SUMMARY_TEL_REGEX.test(value)) {\n return `tel:${value}`;\n }\n\n return '';\n}\n\nexport default getLinkBasedOnValue;\n"],"mappings":"AAAA,SACEA,wBAAwB,EACxBC,sBAAsB,EACtBC,sBAAsB,QACjB,oBAAoB;AAE3B,SAASC,mBAAmBA,CAACC,KAAK,EAAE;EAClC,IAAIJ,wBAAwB,CAACK,IAAI,CAACD,KAAK,CAAC,EAAE;IACxC,OAAO,UAAUA,KAAK,EAAE;EAC1B;EACA,IAAIH,sBAAsB,CAACI,IAAI,CAACD,KAAK,CAAC,EAAE;IACtC,OAAOA,KAAK;EACd;EAEA,IAAIF,sBAAsB,CAACG,IAAI,CAACD,KAAK,CAAC,EAAE;IACtC,OAAO,OAAOA,KAAK,EAAE;EACvB;EAEA,OAAO,EAAE;AACX;AAEA,eAAeD,mBAAmB","ignoreList":[]}
@@ -0,0 +1,6 @@
1
+ const getLinkProps = (props = []) => props.map(({
2
+ propertiesToDisplay,
3
+ enableLink
4
+ }) => enableLink && propertiesToDisplay).flat().filter(Boolean);
5
+ export default getLinkProps;
6
+ //# sourceMappingURL=get-link-props.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-link-props.js","names":["getLinkProps","props","map","propertiesToDisplay","enableLink","flat","filter","Boolean"],"sources":["../../../../src/components/DataSummary/helpers/get-link-props.js"],"sourcesContent":["const getLinkProps = (props = []) =>\n props\n .map(({ propertiesToDisplay, enableLink }) => enableLink && propertiesToDisplay)\n .flat()\n .filter(Boolean);\n\nexport default getLinkProps;\n"],"mappings":"AAAA,MAAMA,YAAY,GAAGA,CAACC,KAAK,GAAG,EAAE,KAC9BA,KAAK,CACFC,GAAG,CAAC,CAAC;EAAEC,mBAAmB;EAAEC;AAAW,CAAC,KAAKA,UAAU,IAAID,mBAAmB,CAAC,CAC/EE,IAAI,CAAC,CAAC,CACNC,MAAM,CAACC,OAAO,CAAC;AAEpB,eAAeP,YAAY","ignoreList":[]}
@@ -0,0 +1,9 @@
1
+ const getLinkToPublishedContent = (key = '', props = {}, currentValue = null) => {
2
+ const [baseKey] = key.split('.');
3
+ if (!props[baseKey]) return '';
4
+ if (currentValue && typeof currentValue.url !== 'undefined') return currentValue.url;
5
+ const content = Array.isArray(props[baseKey]) ? props[baseKey][0] : props[baseKey];
6
+ return content && content.url ? content.url : '';
7
+ };
8
+ export default getLinkToPublishedContent;
9
+ //# sourceMappingURL=get-link-to-published-content.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-link-to-published-content.js","names":["getLinkToPublishedContent","key","props","currentValue","baseKey","split","url","content","Array","isArray"],"sources":["../../../../src/components/DataSummary/helpers/get-link-to-published-content.js"],"sourcesContent":["const getLinkToPublishedContent = (key = '', props = {}, currentValue = null) => {\n const [baseKey] = key.split('.');\n if (!props[baseKey]) return '';\n\n if (currentValue && typeof currentValue.url !== 'undefined') return currentValue.url;\n\n const content = Array.isArray(props[baseKey]) ? props[baseKey][0] : props[baseKey];\n return content && content.url ? content.url : '';\n};\n\nexport default getLinkToPublishedContent;\n"],"mappings":"AAAA,MAAMA,yBAAyB,GAAGA,CAACC,GAAG,GAAG,EAAE,EAAEC,KAAK,GAAG,CAAC,CAAC,EAAEC,YAAY,GAAG,IAAI,KAAK;EAC/E,MAAM,CAACC,OAAO,CAAC,GAAGH,GAAG,CAACI,KAAK,CAAC,GAAG,CAAC;EAChC,IAAI,CAACH,KAAK,CAACE,OAAO,CAAC,EAAE,OAAO,EAAE;EAE9B,IAAID,YAAY,IAAI,OAAOA,YAAY,CAACG,GAAG,KAAK,WAAW,EAAE,OAAOH,YAAY,CAACG,GAAG;EAEpF,MAAMC,OAAO,GAAGC,KAAK,CAACC,OAAO,CAACP,KAAK,CAACE,OAAO,CAAC,CAAC,GAAGF,KAAK,CAACE,OAAO,CAAC,CAAC,CAAC,CAAC,GAAGF,KAAK,CAACE,OAAO,CAAC;EAClF,OAAOG,OAAO,IAAIA,OAAO,CAACD,GAAG,GAAGC,OAAO,CAACD,GAAG,GAAG,EAAE;AAClD,CAAC;AAED,eAAeN,yBAAyB","ignoreList":[]}
@@ -0,0 +1,12 @@
1
+ const getLoopPropsLimit = (values, limit) => {
2
+ let valuesLimit = 1;
3
+ if (!values) return valuesLimit;
4
+ Object.keys(values).forEach(key => {
5
+ const value = values[key];
6
+ if (value && Array.isArray(value) && value.length > valuesLimit) valuesLimit = value.length;
7
+ });
8
+ if (!limit || valuesLimit < limit) return valuesLimit;
9
+ return limit;
10
+ };
11
+ export default getLoopPropsLimit;
12
+ //# sourceMappingURL=get-loop-props-limit.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-loop-props-limit.js","names":["getLoopPropsLimit","values","limit","valuesLimit","Object","keys","forEach","key","value","Array","isArray","length"],"sources":["../../../../src/components/DataSummary/helpers/get-loop-props-limit.js"],"sourcesContent":["const getLoopPropsLimit = (values, limit) => {\n let valuesLimit = 1;\n if (!values) return valuesLimit;\n Object.keys(values).forEach(key => {\n const value = values[key];\n if (value && Array.isArray(value) && value.length > valuesLimit) valuesLimit = value.length;\n });\n if (!limit || valuesLimit < limit) return valuesLimit;\n return limit;\n};\n\nexport default getLoopPropsLimit;\n"],"mappings":"AAAA,MAAMA,iBAAiB,GAAGA,CAACC,MAAM,EAAEC,KAAK,KAAK;EAC3C,IAAIC,WAAW,GAAG,CAAC;EACnB,IAAI,CAACF,MAAM,EAAE,OAAOE,WAAW;EAC/BC,MAAM,CAACC,IAAI,CAACJ,MAAM,CAAC,CAACK,OAAO,CAACC,GAAG,IAAI;IACjC,MAAMC,KAAK,GAAGP,MAAM,CAACM,GAAG,CAAC;IACzB,IAAIC,KAAK,IAAIC,KAAK,CAACC,OAAO,CAACF,KAAK,CAAC,IAAIA,KAAK,CAACG,MAAM,GAAGR,WAAW,EAAEA,WAAW,GAAGK,KAAK,CAACG,MAAM;EAC7F,CAAC,CAAC;EACF,IAAI,CAACT,KAAK,IAAIC,WAAW,GAAGD,KAAK,EAAE,OAAOC,WAAW;EACrD,OAAOD,KAAK;AACd,CAAC;AAED,eAAeF,iBAAiB","ignoreList":[]}
@@ -0,0 +1,20 @@
1
+ import getValueFromArray from './get-value-from-array';
2
+ const getPropValue = (key, props, options = {}) => {
3
+ const baseKey = key.split('.')[0];
4
+ const nestedKey = key.split('.').filter((_, i) => i !== 0).join('.');
5
+ const {
6
+ prefix = '',
7
+ suffix = ''
8
+ } = options;
9
+ const value = props[baseKey];
10
+ if (typeof value !== 'boolean' && !value) return null;
11
+ if (nestedKey) {
12
+ const valueIsArray = Array.isArray(value);
13
+ const nestedValue = !valueIsArray ? value[nestedKey] : '';
14
+ if (valueIsArray) return getValueFromArray(nestedKey, value, prefix, suffix);
15
+ return nestedValue ? `${prefix} ${nestedValue} ${suffix}`.trim() : null;
16
+ }
17
+ return `${prefix} ${value} ${suffix}`.trim();
18
+ };
19
+ export default getPropValue;
20
+ //# sourceMappingURL=get-prop-value.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-prop-value.js","names":["getValueFromArray","getPropValue","key","props","options","baseKey","split","nestedKey","filter","_","i","join","prefix","suffix","value","valueIsArray","Array","isArray","nestedValue","trim"],"sources":["../../../../src/components/DataSummary/helpers/get-prop-value.js"],"sourcesContent":["import getValueFromArray from './get-value-from-array';\n\nconst getPropValue = (key, props, options = {}) => {\n const baseKey = key.split('.')[0];\n const nestedKey = key\n .split('.')\n .filter((_, i) => i !== 0)\n .join('.');\n const { prefix = '', suffix = '' } = options;\n const value = props[baseKey];\n\n if (typeof value !== 'boolean' && !value) return null;\n\n if (nestedKey) {\n const valueIsArray = Array.isArray(value);\n const nestedValue = !valueIsArray ? value[nestedKey] : '';\n if (valueIsArray) return getValueFromArray(nestedKey, value, prefix, suffix);\n return nestedValue ? `${prefix} ${nestedValue} ${suffix}`.trim() : null;\n }\n\n return `${prefix} ${value} ${suffix}`.trim();\n};\n\nexport default getPropValue;\n"],"mappings":"AAAA,OAAOA,iBAAiB,MAAM,wBAAwB;AAEtD,MAAMC,YAAY,GAAGA,CAACC,GAAG,EAAEC,KAAK,EAAEC,OAAO,GAAG,CAAC,CAAC,KAAK;EACjD,MAAMC,OAAO,GAAGH,GAAG,CAACI,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;EACjC,MAAMC,SAAS,GAAGL,GAAG,CAClBI,KAAK,CAAC,GAAG,CAAC,CACVE,MAAM,CAAC,CAACC,CAAC,EAAEC,CAAC,KAAKA,CAAC,KAAK,CAAC,CAAC,CACzBC,IAAI,CAAC,GAAG,CAAC;EACZ,MAAM;IAAEC,MAAM,GAAG,EAAE;IAAEC,MAAM,GAAG;EAAG,CAAC,GAAGT,OAAO;EAC5C,MAAMU,KAAK,GAAGX,KAAK,CAACE,OAAO,CAAC;EAE5B,IAAI,OAAOS,KAAK,KAAK,SAAS,IAAI,CAACA,KAAK,EAAE,OAAO,IAAI;EAErD,IAAIP,SAAS,EAAE;IACb,MAAMQ,YAAY,GAAGC,KAAK,CAACC,OAAO,CAACH,KAAK,CAAC;IACzC,MAAMI,WAAW,GAAG,CAACH,YAAY,GAAGD,KAAK,CAACP,SAAS,CAAC,GAAG,EAAE;IACzD,IAAIQ,YAAY,EAAE,OAAOf,iBAAiB,CAACO,SAAS,EAAEO,KAAK,EAAEF,MAAM,EAAEC,MAAM,CAAC;IAC5E,OAAOK,WAAW,GAAG,GAAGN,MAAM,IAAIM,WAAW,IAAIL,MAAM,EAAE,CAACM,IAAI,CAAC,CAAC,GAAG,IAAI;EACzE;EAEA,OAAO,GAAGP,MAAM,IAAIE,KAAK,IAAID,MAAM,EAAE,CAACM,IAAI,CAAC,CAAC;AAC9C,CAAC;AAED,eAAelB,YAAY","ignoreList":[]}
@@ -0,0 +1,14 @@
1
+ import { checkIfLoggedIn } from '@blaze-cms/core-auth-ui';
2
+ const getRecordId = (entityForQuery, dataRecordId, parent) => {
3
+ const [recordId] = dataRecordId;
4
+ let foundUserId;
5
+ if (entityForQuery === 'user' && !recordId) {
6
+ const {
7
+ id: userId
8
+ } = checkIfLoggedIn();
9
+ foundUserId = userId;
10
+ }
11
+ return foundUserId || recordId || parent && parent.itemId;
12
+ };
13
+ export default getRecordId;
14
+ //# sourceMappingURL=get-record-id.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-record-id.js","names":["checkIfLoggedIn","getRecordId","entityForQuery","dataRecordId","parent","recordId","foundUserId","id","userId","itemId"],"sources":["../../../../src/components/DataSummary/helpers/get-record-id.js"],"sourcesContent":["import { checkIfLoggedIn } from '@blaze-cms/core-auth-ui';\n\nconst getRecordId = (entityForQuery, dataRecordId, parent) => {\n const [recordId] = dataRecordId;\n let foundUserId;\n\n if (entityForQuery === 'user' && !recordId) {\n const { id: userId } = checkIfLoggedIn();\n foundUserId = userId;\n }\n return foundUserId || recordId || (parent && parent.itemId);\n};\n\nexport default getRecordId;\n"],"mappings":"AAAA,SAASA,eAAe,QAAQ,yBAAyB;AAEzD,MAAMC,WAAW,GAAGA,CAACC,cAAc,EAAEC,YAAY,EAAEC,MAAM,KAAK;EAC5D,MAAM,CAACC,QAAQ,CAAC,GAAGF,YAAY;EAC/B,IAAIG,WAAW;EAEf,IAAIJ,cAAc,KAAK,MAAM,IAAI,CAACG,QAAQ,EAAE;IAC1C,MAAM;MAAEE,EAAE,EAAEC;IAAO,CAAC,GAAGR,eAAe,CAAC,CAAC;IACxCM,WAAW,GAAGE,MAAM;EACtB;EACA,OAAOF,WAAW,IAAID,QAAQ,IAAKD,MAAM,IAAIA,MAAM,CAACK,MAAO;AAC7D,CAAC;AAED,eAAeR,WAAW","ignoreList":[]}
@@ -0,0 +1,17 @@
1
+ import { isObject } from '../../../helpers';
2
+ const getValueFromArray = (key, arr, prefix, suffix) => {
3
+ const valuesFromArray = arr.map(obj => {
4
+ const value = isObject(obj) ? obj[key] : obj;
5
+ if (typeof value !== 'boolean' && !value) return null;
6
+ const objValueWithPrefixSuffix = `${prefix}${value}${suffix}`;
7
+ const objValueLink = obj.url || '';
8
+ return {
9
+ keyField: key,
10
+ [key]: objValueWithPrefixSuffix,
11
+ url: objValueLink
12
+ };
13
+ }).filter(Boolean);
14
+ return valuesFromArray.length ? valuesFromArray : null;
15
+ };
16
+ export default getValueFromArray;
17
+ //# sourceMappingURL=get-value-from-array.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-value-from-array.js","names":["isObject","getValueFromArray","key","arr","prefix","suffix","valuesFromArray","map","obj","value","objValueWithPrefixSuffix","objValueLink","url","keyField","filter","Boolean","length"],"sources":["../../../../src/components/DataSummary/helpers/get-value-from-array.js"],"sourcesContent":["import { isObject } from '../../../helpers';\n\nconst getValueFromArray = (key, arr, prefix, suffix) => {\n const valuesFromArray = arr\n .map(obj => {\n const value = isObject(obj) ? obj[key] : obj;\n if (typeof value !== 'boolean' && !value) return null;\n const objValueWithPrefixSuffix = `${prefix}${value}${suffix}`;\n const objValueLink = obj.url || '';\n\n return { keyField: key, [key]: objValueWithPrefixSuffix, url: objValueLink };\n })\n .filter(Boolean);\n return valuesFromArray.length ? valuesFromArray : null;\n};\n\nexport default getValueFromArray;\n"],"mappings":"AAAA,SAASA,QAAQ,QAAQ,kBAAkB;AAE3C,MAAMC,iBAAiB,GAAGA,CAACC,GAAG,EAAEC,GAAG,EAAEC,MAAM,EAAEC,MAAM,KAAK;EACtD,MAAMC,eAAe,GAAGH,GAAG,CACxBI,GAAG,CAACC,GAAG,IAAI;IACV,MAAMC,KAAK,GAAGT,QAAQ,CAACQ,GAAG,CAAC,GAAGA,GAAG,CAACN,GAAG,CAAC,GAAGM,GAAG;IAC5C,IAAI,OAAOC,KAAK,KAAK,SAAS,IAAI,CAACA,KAAK,EAAE,OAAO,IAAI;IACrD,MAAMC,wBAAwB,GAAG,GAAGN,MAAM,GAAGK,KAAK,GAAGJ,MAAM,EAAE;IAC7D,MAAMM,YAAY,GAAGH,GAAG,CAACI,GAAG,IAAI,EAAE;IAElC,OAAO;MAAEC,QAAQ,EAAEX,GAAG;MAAE,CAACA,GAAG,GAAGQ,wBAAwB;MAAEE,GAAG,EAAED;IAAa,CAAC;EAC9E,CAAC,CAAC,CACDG,MAAM,CAACC,OAAO,CAAC;EAClB,OAAOT,eAAe,CAACU,MAAM,GAAGV,eAAe,GAAG,IAAI;AACxD,CAAC;AAED,eAAeL,iBAAiB","ignoreList":[]}
@@ -0,0 +1,11 @@
1
+ import getDataSummaryQuery from './get-data-summary-query';
2
+ import buildPropsToDisplayWithContent from './build-props-to-display-with-content';
3
+ import getLinkToPublishedContent from './get-link-to-published-content';
4
+ import stripSummaryPropsContent from './strip-summary-props-content';
5
+ import buildLoopPropsContent from './build-loop-props-content';
6
+ import parseBooleanValues from './parse-boolean-values';
7
+ import getLinkBasedOnValue from './get-link-based-on-value';
8
+ import getLinkProps from './get-link-props';
9
+ import getRecordId from './get-record-id';
10
+ export { getDataSummaryQuery, buildPropsToDisplayWithContent, getLinkToPublishedContent, stripSummaryPropsContent, buildLoopPropsContent, parseBooleanValues, getLinkBasedOnValue, getLinkProps, getRecordId };
11
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":["getDataSummaryQuery","buildPropsToDisplayWithContent","getLinkToPublishedContent","stripSummaryPropsContent","buildLoopPropsContent","parseBooleanValues","getLinkBasedOnValue","getLinkProps","getRecordId"],"sources":["../../../../src/components/DataSummary/helpers/index.js"],"sourcesContent":["import getDataSummaryQuery from './get-data-summary-query';\nimport buildPropsToDisplayWithContent from './build-props-to-display-with-content';\nimport getLinkToPublishedContent from './get-link-to-published-content';\nimport stripSummaryPropsContent from './strip-summary-props-content';\nimport buildLoopPropsContent from './build-loop-props-content';\nimport parseBooleanValues from './parse-boolean-values';\nimport getLinkBasedOnValue from './get-link-based-on-value';\nimport getLinkProps from './get-link-props';\nimport getRecordId from './get-record-id';\n\nexport {\n getDataSummaryQuery,\n buildPropsToDisplayWithContent,\n getLinkToPublishedContent,\n stripSummaryPropsContent,\n buildLoopPropsContent,\n parseBooleanValues,\n getLinkBasedOnValue,\n getLinkProps,\n getRecordId\n};\n"],"mappings":"AAAA,OAAOA,mBAAmB,MAAM,0BAA0B;AAC1D,OAAOC,8BAA8B,MAAM,uCAAuC;AAClF,OAAOC,yBAAyB,MAAM,iCAAiC;AACvE,OAAOC,wBAAwB,MAAM,+BAA+B;AACpE,OAAOC,qBAAqB,MAAM,4BAA4B;AAC9D,OAAOC,kBAAkB,MAAM,wBAAwB;AACvD,OAAOC,mBAAmB,MAAM,2BAA2B;AAC3D,OAAOC,YAAY,MAAM,kBAAkB;AAC3C,OAAOC,WAAW,MAAM,iBAAiB;AAEzC,SACER,mBAAmB,EACnBC,8BAA8B,EAC9BC,yBAAyB,EACzBC,wBAAwB,EACxBC,qBAAqB,EACrBC,kBAAkB,EAClBC,mBAAmB,EACnBC,YAAY,EACZC,WAAW","ignoreList":[]}
@@ -0,0 +1,7 @@
1
+ const parseBooleanValues = (wrappedValue, summaryTitle) => {
2
+ if (wrappedValue === 'false') return null;
3
+ if (wrappedValue === 'true') return summaryTitle;
4
+ return wrappedValue;
5
+ };
6
+ export default parseBooleanValues;
7
+ //# sourceMappingURL=parse-boolean-values.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parse-boolean-values.js","names":["parseBooleanValues","wrappedValue","summaryTitle"],"sources":["../../../../src/components/DataSummary/helpers/parse-boolean-values.js"],"sourcesContent":["const parseBooleanValues = (wrappedValue, summaryTitle) => {\n if (wrappedValue === 'false') return null;\n if (wrappedValue === 'true') return summaryTitle;\n return wrappedValue;\n};\nexport default parseBooleanValues;\n"],"mappings":"AAAA,MAAMA,kBAAkB,GAAGA,CAACC,YAAY,EAAEC,YAAY,KAAK;EACzD,IAAID,YAAY,KAAK,OAAO,EAAE,OAAO,IAAI;EACzC,IAAIA,YAAY,KAAK,MAAM,EAAE,OAAOC,YAAY;EAChD,OAAOD,YAAY;AACrB,CAAC;AACD,eAAeD,kBAAkB","ignoreList":[]}
@@ -0,0 +1,14 @@
1
+ import { removeUnwantedCharacters } from '../../../helpers';
2
+ function stripSummaryPropsContent(propsToDisplay, summaryPropsWithContent) {
3
+ if (!propsToDisplay || !propsToDisplay[0] || !propsToDisplay[0].shouldStrip) return summaryPropsWithContent;
4
+ return summaryPropsWithContent.reduce((acc, summaryProp) => {
5
+ const [, contentWithUnwantedCharacters] = summaryProp;
6
+ const sanitizedContent = removeUnwantedCharacters(contentWithUnwantedCharacters);
7
+ const summaryPropsCopy = [...summaryProp];
8
+ summaryPropsCopy[1] = sanitizedContent;
9
+ acc.push(summaryPropsCopy);
10
+ return acc;
11
+ }, []);
12
+ }
13
+ export default stripSummaryPropsContent;
14
+ //# sourceMappingURL=strip-summary-props-content.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"strip-summary-props-content.js","names":["removeUnwantedCharacters","stripSummaryPropsContent","propsToDisplay","summaryPropsWithContent","shouldStrip","reduce","acc","summaryProp","contentWithUnwantedCharacters","sanitizedContent","summaryPropsCopy","push"],"sources":["../../../../src/components/DataSummary/helpers/strip-summary-props-content.js"],"sourcesContent":["import { removeUnwantedCharacters } from '../../../helpers';\n\nfunction stripSummaryPropsContent(propsToDisplay, summaryPropsWithContent) {\n if (!propsToDisplay || !propsToDisplay[0] || !propsToDisplay[0].shouldStrip)\n return summaryPropsWithContent;\n\n return summaryPropsWithContent.reduce((acc, summaryProp) => {\n const [, contentWithUnwantedCharacters] = summaryProp;\n const sanitizedContent = removeUnwantedCharacters(contentWithUnwantedCharacters);\n\n const summaryPropsCopy = [...summaryProp];\n summaryPropsCopy[1] = sanitizedContent;\n\n acc.push(summaryPropsCopy);\n return acc;\n }, []);\n}\n\nexport default stripSummaryPropsContent;\n"],"mappings":"AAAA,SAASA,wBAAwB,QAAQ,kBAAkB;AAE3D,SAASC,wBAAwBA,CAACC,cAAc,EAAEC,uBAAuB,EAAE;EACzE,IAAI,CAACD,cAAc,IAAI,CAACA,cAAc,CAAC,CAAC,CAAC,IAAI,CAACA,cAAc,CAAC,CAAC,CAAC,CAACE,WAAW,EACzE,OAAOD,uBAAuB;EAEhC,OAAOA,uBAAuB,CAACE,MAAM,CAAC,CAACC,GAAG,EAAEC,WAAW,KAAK;IAC1D,MAAM,GAAGC,6BAA6B,CAAC,GAAGD,WAAW;IACrD,MAAME,gBAAgB,GAAGT,wBAAwB,CAACQ,6BAA6B,CAAC;IAEhF,MAAME,gBAAgB,GAAG,CAAC,GAAGH,WAAW,CAAC;IACzCG,gBAAgB,CAAC,CAAC,CAAC,GAAGD,gBAAgB;IAEtCH,GAAG,CAACK,IAAI,CAACD,gBAAgB,CAAC;IAC1B,OAAOJ,GAAG;EACZ,CAAC,EAAE,EAAE,CAAC;AACR;AAEA,eAAeL,wBAAwB","ignoreList":[]}
@@ -0,0 +1,3 @@
1
+ import DataSummaryFactory from './DataSummaryFactory';
2
+ export default DataSummaryFactory;
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":["DataSummaryFactory"],"sources":["../../../src/components/DataSummary/index.js"],"sourcesContent":["import DataSummaryFactory from './DataSummaryFactory';\n\nexport default DataSummaryFactory;\n"],"mappings":"AAAA,OAAOA,kBAAkB,MAAM,sBAAsB;AAErD,eAAeA,kBAAkB","ignoreList":[]}
@@ -0,0 +1,36 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import dayjs from 'dayjs';
4
+ import LocalizedFormat from 'dayjs/plugin/localizedFormat';
5
+ import Wrapper from '../Wrapper';
6
+ dayjs.extend(LocalizedFormat);
7
+ const DateTime = ({
8
+ format,
9
+ customFormat,
10
+ modifier,
11
+ prefix,
12
+ suffix
13
+ }) => {
14
+ const dateFormat = customFormat || format;
15
+ if (!dateFormat) return null;
16
+ const formattedDate = dayjs().format(dateFormat);
17
+ return /*#__PURE__*/React.createElement(Wrapper, {
18
+ className: "date",
19
+ modifiers: modifier
20
+ }, prefix, " ", formattedDate, " ", suffix);
21
+ };
22
+ DateTime.propTypes = {
23
+ format: PropTypes.string.isRequired,
24
+ customFormat: PropTypes.string,
25
+ modifier: PropTypes.string,
26
+ prefix: PropTypes.string,
27
+ suffix: PropTypes.string
28
+ };
29
+ DateTime.defaultProps = {
30
+ customFormat: '',
31
+ modifier: null,
32
+ prefix: '',
33
+ suffix: ''
34
+ };
35
+ export default DateTime;
36
+ //# sourceMappingURL=DateTime.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DateTime.js","names":["React","PropTypes","dayjs","LocalizedFormat","Wrapper","extend","DateTime","format","customFormat","modifier","prefix","suffix","dateFormat","formattedDate","createElement","className","modifiers","propTypes","string","isRequired","defaultProps"],"sources":["../../../src/components/DateTime/DateTime.js"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\nimport dayjs from 'dayjs';\nimport LocalizedFormat from 'dayjs/plugin/localizedFormat';\nimport Wrapper from '../Wrapper';\n\ndayjs.extend(LocalizedFormat);\n\nconst DateTime = ({ format, customFormat, modifier, prefix, suffix }) => {\n const dateFormat = customFormat || format;\n\n if (!dateFormat) return null;\n\n const formattedDate = dayjs().format(dateFormat);\n\n return (\n <Wrapper className=\"date\" modifiers={modifier}>\n {prefix} {formattedDate} {suffix}\n </Wrapper>\n );\n};\n\nDateTime.propTypes = {\n format: PropTypes.string.isRequired,\n customFormat: PropTypes.string,\n modifier: PropTypes.string,\n prefix: PropTypes.string,\n suffix: PropTypes.string\n};\n\nDateTime.defaultProps = {\n customFormat: '',\n modifier: null,\n prefix: '',\n suffix: ''\n};\n\nexport default DateTime;\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAOC,SAAS,MAAM,YAAY;AAClC,OAAOC,KAAK,MAAM,OAAO;AACzB,OAAOC,eAAe,MAAM,8BAA8B;AAC1D,OAAOC,OAAO,MAAM,YAAY;AAEhCF,KAAK,CAACG,MAAM,CAACF,eAAe,CAAC;AAE7B,MAAMG,QAAQ,GAAGA,CAAC;EAAEC,MAAM;EAAEC,YAAY;EAAEC,QAAQ;EAAEC,MAAM;EAAEC;AAAO,CAAC,KAAK;EACvE,MAAMC,UAAU,GAAGJ,YAAY,IAAID,MAAM;EAEzC,IAAI,CAACK,UAAU,EAAE,OAAO,IAAI;EAE5B,MAAMC,aAAa,GAAGX,KAAK,CAAC,CAAC,CAACK,MAAM,CAACK,UAAU,CAAC;EAEhD,oBACEZ,KAAA,CAAAc,aAAA,CAACV,OAAO;IAACW,SAAS,EAAC,MAAM;IAACC,SAAS,EAAEP;EAAS,GAC3CC,MAAM,EAAC,GAAC,EAACG,aAAa,EAAC,GAAC,EAACF,MACnB,CAAC;AAEd,CAAC;AAEDL,QAAQ,CAACW,SAAS,GAAG;EACnBV,MAAM,EAAEN,SAAS,CAACiB,MAAM,CAACC,UAAU;EACnCX,YAAY,EAAEP,SAAS,CAACiB,MAAM;EAC9BT,QAAQ,EAAER,SAAS,CAACiB,MAAM;EAC1BR,MAAM,EAAET,SAAS,CAACiB,MAAM;EACxBP,MAAM,EAAEV,SAAS,CAACiB;AACpB,CAAC;AAEDZ,QAAQ,CAACc,YAAY,GAAG;EACtBZ,YAAY,EAAE,EAAE;EAChBC,QAAQ,EAAE,IAAI;EACdC,MAAM,EAAE,EAAE;EACVC,MAAM,EAAE;AACV,CAAC;AAED,eAAeL,QAAQ","ignoreList":[]}
@@ -0,0 +1,3 @@
1
+ import DateTime from './DateTime';
2
+ export default DateTime;
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":["DateTime"],"sources":["../../../src/components/DateTime/index.js"],"sourcesContent":["import DateTime from './DateTime';\n\nexport default DateTime;\n"],"mappings":"AAAA,OAAOA,QAAQ,MAAM,YAAY;AAEjC,eAAeA,QAAQ","ignoreList":[]}
@@ -0,0 +1,71 @@
1
+ import React, { useEffect, useState } from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { useMutation } from '@apollo/client';
4
+ import { useRouter } from 'next/router';
5
+ import { parseUrl } from 'query-string';
6
+ import EMAIL_CONFIRM_MUTATION from './mutation';
7
+ import { renderChildren } from '../../helpers';
8
+ function EmailConfirm({
9
+ modifier,
10
+ errorMessage,
11
+ children
12
+ }) {
13
+ const router = useRouter();
14
+ const {
15
+ asPath
16
+ } = router;
17
+ const {
18
+ query: {
19
+ token,
20
+ redirectUrl: setRedirectUrl
21
+ } = {}
22
+ } = parseUrl(asPath);
23
+ const [displayError, setDisplayError] = useState(true);
24
+ const [emailConfirmMutation, {
25
+ loading,
26
+ called
27
+ }] = useMutation(EMAIL_CONFIRM_MUTATION, {
28
+ onCompleted: ({
29
+ confirmUserEmail
30
+ }) => {
31
+ const {
32
+ result: {
33
+ extras
34
+ }
35
+ } = confirmUserEmail || {};
36
+ const {
37
+ redirectUrl
38
+ } = extras || {};
39
+ setDisplayError(false);
40
+ if (redirectUrl && !setRedirectUrl) {
41
+ router.push(`/Resolver`, `${asPath}&redirectUrl=${redirectUrl}`, {
42
+ shallow: true
43
+ });
44
+ }
45
+ }
46
+ });
47
+ useEffect(() => {
48
+ if (token) emailConfirmMutation({
49
+ variables: {
50
+ token
51
+ }
52
+ });
53
+ }, [emailConfirmMutation, token]);
54
+ if (token && !called || loading) return null;
55
+ const renderedChildren = renderChildren(children);
56
+ return /*#__PURE__*/React.createElement("div", null, displayError ? /*#__PURE__*/React.createElement("span", {
57
+ className: modifier
58
+ }, errorMessage) : renderedChildren);
59
+ }
60
+ EmailConfirm.propTypes = {
61
+ modifier: PropTypes.string,
62
+ errorMessage: PropTypes.string,
63
+ children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node])
64
+ };
65
+ EmailConfirm.defaultProps = {
66
+ modifier: '',
67
+ errorMessage: '',
68
+ children: []
69
+ };
70
+ export default EmailConfirm;
71
+ //# sourceMappingURL=EmailConfirm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmailConfirm.js","names":["React","useEffect","useState","PropTypes","useMutation","useRouter","parseUrl","EMAIL_CONFIRM_MUTATION","renderChildren","EmailConfirm","modifier","errorMessage","children","router","asPath","query","token","redirectUrl","setRedirectUrl","displayError","setDisplayError","emailConfirmMutation","loading","called","onCompleted","confirmUserEmail","result","extras","push","shallow","variables","renderedChildren","createElement","className","propTypes","string","oneOfType","arrayOf","node","defaultProps"],"sources":["../../../src/components/EmailConfirm/EmailConfirm.js"],"sourcesContent":["import React, { useEffect, useState } from 'react';\nimport PropTypes from 'prop-types';\nimport { useMutation } from '@apollo/client';\nimport { useRouter } from 'next/router';\nimport { parseUrl } from 'query-string';\nimport EMAIL_CONFIRM_MUTATION from './mutation';\nimport { renderChildren } from '../../helpers';\n\nfunction EmailConfirm({ modifier, errorMessage, children }) {\n const router = useRouter();\n const { asPath } = router;\n\n const { query: { token, redirectUrl: setRedirectUrl } = {} } = parseUrl(asPath);\n const [displayError, setDisplayError] = useState(true);\n const [emailConfirmMutation, { loading, called }] = useMutation(EMAIL_CONFIRM_MUTATION, {\n onCompleted: ({ confirmUserEmail }) => {\n const {\n result: { extras }\n } = confirmUserEmail || {};\n const { redirectUrl } = extras || {};\n setDisplayError(false);\n if (redirectUrl && !setRedirectUrl) {\n router.push(`/Resolver`, `${asPath}&redirectUrl=${redirectUrl}`, { shallow: true });\n }\n }\n });\n\n useEffect(() => {\n if (token) emailConfirmMutation({ variables: { token } });\n }, [emailConfirmMutation, token]);\n\n if ((token && !called) || loading) return null;\n const renderedChildren = renderChildren(children);\n\n return (\n <div>{displayError ? <span className={modifier}>{errorMessage}</span> : renderedChildren}</div>\n );\n}\n\nEmailConfirm.propTypes = {\n modifier: PropTypes.string,\n errorMessage: PropTypes.string,\n children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node])\n};\n\nEmailConfirm.defaultProps = {\n modifier: '',\n errorMessage: '',\n children: []\n};\n\nexport default EmailConfirm;\n"],"mappings":"AAAA,OAAOA,KAAK,IAAIC,SAAS,EAAEC,QAAQ,QAAQ,OAAO;AAClD,OAAOC,SAAS,MAAM,YAAY;AAClC,SAASC,WAAW,QAAQ,gBAAgB;AAC5C,SAASC,SAAS,QAAQ,aAAa;AACvC,SAASC,QAAQ,QAAQ,cAAc;AACvC,OAAOC,sBAAsB,MAAM,YAAY;AAC/C,SAASC,cAAc,QAAQ,eAAe;AAE9C,SAASC,YAAYA,CAAC;EAAEC,QAAQ;EAAEC,YAAY;EAAEC;AAAS,CAAC,EAAE;EAC1D,MAAMC,MAAM,GAAGR,SAAS,CAAC,CAAC;EAC1B,MAAM;IAAES;EAAO,CAAC,GAAGD,MAAM;EAEzB,MAAM;IAAEE,KAAK,EAAE;MAAEC,KAAK;MAAEC,WAAW,EAAEC;IAAe,CAAC,GAAG,CAAC;EAAE,CAAC,GAAGZ,QAAQ,CAACQ,MAAM,CAAC;EAC/E,MAAM,CAACK,YAAY,EAAEC,eAAe,CAAC,GAAGlB,QAAQ,CAAC,IAAI,CAAC;EACtD,MAAM,CAACmB,oBAAoB,EAAE;IAAEC,OAAO;IAAEC;EAAO,CAAC,CAAC,GAAGnB,WAAW,CAACG,sBAAsB,EAAE;IACtFiB,WAAW,EAAEA,CAAC;MAAEC;IAAiB,CAAC,KAAK;MACrC,MAAM;QACJC,MAAM,EAAE;UAAEC;QAAO;MACnB,CAAC,GAAGF,gBAAgB,IAAI,CAAC,CAAC;MAC1B,MAAM;QAAER;MAAY,CAAC,GAAGU,MAAM,IAAI,CAAC,CAAC;MACpCP,eAAe,CAAC,KAAK,CAAC;MACtB,IAAIH,WAAW,IAAI,CAACC,cAAc,EAAE;QAClCL,MAAM,CAACe,IAAI,CAAC,WAAW,EAAE,GAAGd,MAAM,gBAAgBG,WAAW,EAAE,EAAE;UAAEY,OAAO,EAAE;QAAK,CAAC,CAAC;MACrF;IACF;EACF,CAAC,CAAC;EAEF5B,SAAS,CAAC,MAAM;IACd,IAAIe,KAAK,EAAEK,oBAAoB,CAAC;MAAES,SAAS,EAAE;QAAEd;MAAM;IAAE,CAAC,CAAC;EAC3D,CAAC,EAAE,CAACK,oBAAoB,EAAEL,KAAK,CAAC,CAAC;EAEjC,IAAKA,KAAK,IAAI,CAACO,MAAM,IAAKD,OAAO,EAAE,OAAO,IAAI;EAC9C,MAAMS,gBAAgB,GAAGvB,cAAc,CAACI,QAAQ,CAAC;EAEjD,oBACEZ,KAAA,CAAAgC,aAAA,cAAMb,YAAY,gBAAGnB,KAAA,CAAAgC,aAAA;IAAMC,SAAS,EAAEvB;EAAS,GAAEC,YAAmB,CAAC,GAAGoB,gBAAsB,CAAC;AAEnG;AAEAtB,YAAY,CAACyB,SAAS,GAAG;EACvBxB,QAAQ,EAAEP,SAAS,CAACgC,MAAM;EAC1BxB,YAAY,EAAER,SAAS,CAACgC,MAAM;EAC9BvB,QAAQ,EAAET,SAAS,CAACiC,SAAS,CAAC,CAACjC,SAAS,CAACkC,OAAO,CAAClC,SAAS,CAACmC,IAAI,CAAC,EAAEnC,SAAS,CAACmC,IAAI,CAAC;AACnF,CAAC;AAED7B,YAAY,CAAC8B,YAAY,GAAG;EAC1B7B,QAAQ,EAAE,EAAE;EACZC,YAAY,EAAE,EAAE;EAChBC,QAAQ,EAAE;AACZ,CAAC;AAED,eAAeH,YAAY","ignoreList":[]}
@@ -0,0 +1,3 @@
1
+ import EmailConfirm from './EmailConfirm';
2
+ export default EmailConfirm;
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":["EmailConfirm"],"sources":["../../../src/components/EmailConfirm/index.js"],"sourcesContent":["import EmailConfirm from './EmailConfirm';\n\nexport default EmailConfirm;\n"],"mappings":"AAAA,OAAOA,YAAY,MAAM,gBAAgB;AAEzC,eAAeA,YAAY","ignoreList":[]}