pds-dev-kit-web-test 0.2.2 → 0.2.3

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 (202) hide show
  1. package/README.md +12 -1
  2. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Image/Image.d.ts +8 -0
  3. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Image/Image.js +46 -0
  4. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Image/index.d.ts +2 -0
  5. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Image/index.js +8 -0
  6. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/RichText/RichText.d.ts +2 -3
  7. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/RichText/RichText.js +3 -3
  8. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/RichText/index.d.ts +2 -2
  9. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Text/Text.d.ts +13 -0
  10. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Text/Text.js +63 -0
  11. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Text/index.d.ts +2 -0
  12. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Text/index.js +8 -0
  13. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/TwitterTimeline.d.ts +3 -11
  14. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/TwitterTimeline.js +18 -18
  15. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/TwitterTimelineRerender.d.ts +14 -0
  16. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/TwitterTimeline/TwitterTimelineRerender.js +41 -0
  17. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/Wrapper.d.ts +35 -0
  18. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/Wrapper.js +141 -0
  19. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/constants.d.ts +2 -0
  20. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/constants.js +33 -0
  21. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/index.d.ts +1 -0
  22. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/Wrapper/index.js +8 -0
  23. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/index.d.ts +3 -2
  24. package/dist/src/sub/DynamicLayout/components/ComponentBlocks/index.js +3 -1
  25. package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/EditModeSectionMatcher.js +3 -3
  26. package/dist/src/sub/DynamicLayout/components/Section/Section.d.ts +6 -3
  27. package/dist/src/sub/DynamicLayout/components/Section/Section.js +40 -8
  28. package/dist/src/sub/DynamicLayout/components/Section/components/CustomSectionBackgroundMedia.d.ts +9 -0
  29. package/dist/src/sub/DynamicLayout/components/Section/components/CustomSectionBackgroundMedia.js +68 -0
  30. package/dist/src/sub/DynamicLayout/components/SectionMatcher/SectionMatcher.js +4 -4
  31. package/dist/src/sub/DynamicLayout/components/desktop/common/Carousel.d.ts +1 -2
  32. package/dist/src/sub/DynamicLayout/components/desktop/common/Carousel.js +6 -6
  33. package/dist/src/sub/DynamicLayout/components/index.d.ts +0 -1
  34. package/dist/src/sub/DynamicLayout/components/index.js +1 -6
  35. package/dist/src/sub/DynamicLayout/mock_customSection.d.ts +2 -0
  36. package/dist/src/sub/DynamicLayout/mock_customSection.js +838 -0
  37. package/dist/src/sub/DynamicLayout/mock_samplePage.js +5 -210
  38. package/dist/src/sub/DynamicLayout/nakedMocks.json +783 -0
  39. package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +17 -4
  40. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +2 -9
  41. package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +85 -51
  42. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlock.d.ts +7 -0
  43. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlock.js +55 -0
  44. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.d.ts +3 -0
  45. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +70 -0
  46. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.d.ts +5 -0
  47. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +73 -0
  48. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/btnTypes.d.ts +68 -0
  49. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/btnTypes.js +2 -0
  50. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Divider.d.ts +5 -0
  51. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Divider.js +66 -0
  52. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image.d.ts +16 -0
  53. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image.js +102 -0
  54. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/RichText.d.ts +5 -0
  55. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/RichText.js +62 -0
  56. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/index.d.ts +1 -0
  57. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/index.js +8 -0
  58. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/types.d.ts +44 -0
  59. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/RichText/types.js +2 -0
  60. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text.d.ts +32 -0
  61. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text.js +58 -0
  62. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Twitter.d.ts +10 -0
  63. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Twitter.js +41 -0
  64. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/Youtube.d.ts +5 -0
  65. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/Youtube.js +69 -0
  66. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/index.d.ts +1 -0
  67. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/index.js +8 -0
  68. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/parseYoutubeContentProp.d.ts +7 -0
  69. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/parseYoutubeContentProp.js +33 -0
  70. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/types.d.ts +48 -0
  71. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Youtube/types.js +2 -0
  72. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_CB_Box.d.ts +2 -0
  73. package/dist/src/sub/DynamicLayout/sections/CustomSection/{BlockMatcher/blocks/Button.js → components/ComponentBlock/componentBlocks/components/S_CB_Box.js} +6 -11
  74. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_HiddenCover.d.ts +1 -0
  75. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_HiddenCover.js +13 -0
  76. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/hooks/useCLINK.d.ts +8 -0
  77. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/hooks/useCLINK.js +24 -0
  78. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +20 -0
  79. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.js +2 -0
  80. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/utils/CLINKhandler.d.ts +0 -0
  81. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/utils/CLINKhandler.js +18 -0
  82. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/index.d.ts +1 -0
  83. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/index.js +8 -0
  84. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/index.d.ts +1 -0
  85. package/dist/src/sub/DynamicLayout/sections/CustomSection/components/index.js +5 -0
  86. package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/index.d.ts +1 -0
  87. package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/index.js +5 -0
  88. package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useIntersectionObserver.d.ts +6 -0
  89. package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useIntersectionObserver.js +26 -0
  90. package/dist/src/sub/DynamicLayout/sections/CustomSection/index.d.ts +0 -1
  91. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/colorUtil.d.ts +31 -0
  92. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/colorUtil.js +66 -0
  93. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/index.d.ts +2 -0
  94. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/index.js +10 -0
  95. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.d.ts +2 -0
  96. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.js +46 -0
  97. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.d.ts +18 -0
  98. package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.js +79 -0
  99. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +50 -99
  100. package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +11 -14
  101. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/index.d.ts +3 -0
  102. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/index.js +16 -0
  103. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/parseContentVisibility.d.ts +12 -0
  104. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/parseContentVisibility.js +18 -0
  105. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/types.d.ts +5 -0
  106. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/contentPropParsers/types.js +7 -0
  107. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/constants.d.ts +4 -0
  108. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/constants.js +46 -0
  109. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/index.d.ts +3 -0
  110. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/index.js +16 -0
  111. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim.d.ts +19 -0
  112. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim.js +51 -0
  113. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/types.d.ts +5 -0
  114. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/types.js +7 -0
  115. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/index.d.ts +6 -0
  116. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/index.js +18 -0
  117. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/index.d.ts +3 -0
  118. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/index.js +19 -0
  119. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropArrange.d.ts +24 -0
  120. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropArrange.js +80 -0
  121. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding.d.ts +21 -0
  122. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding.js +32 -0
  123. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/types.d.ts +7 -0
  124. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/types.js +8 -0
  125. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.d.ts +3 -0
  126. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.js +61 -0
  127. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +20 -0
  128. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +46 -0
  129. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +5 -0
  130. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.js +54 -0
  131. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/index.d.ts +3 -0
  132. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/index.js +41 -0
  133. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgColor.d.ts +43 -0
  134. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgColor.js +58 -0
  135. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgImage.d.ts +19 -0
  136. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgImage.js +118 -0
  137. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgOverlay.d.ts +43 -0
  138. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBgOverlay.js +64 -0
  139. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBorder.d.ts +38 -0
  140. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropBorder.js +73 -0
  141. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropDivider.d.ts +26 -0
  142. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropDivider.js +65 -0
  143. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropImage.d.ts +19 -0
  144. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropImage.js +118 -0
  145. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropOpacity.d.ts +15 -0
  146. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropOpacity.js +41 -0
  147. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropShadow.d.ts +39 -0
  148. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropShadow.js +46 -0
  149. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropTextSpec.d.ts +39 -0
  150. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropTextSpec.js +80 -0
  151. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/types.d.ts +22 -0
  152. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/types.js +16 -0
  153. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +134 -0
  154. package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.js +2 -0
  155. package/dist/src/sub/DynamicLayout/sections/index.d.ts +1 -0
  156. package/dist/src/sub/DynamicLayout/sections/index.js +3 -1
  157. package/dist/src/sub/DynamicLayout/types.d.ts +70 -4
  158. package/package.json +2 -4
  159. package/release-note.md +2 -3
  160. package/dist/src/sub/DynamicLayout/components/Box.d.ts +0 -13
  161. package/dist/src/sub/DynamicLayout/components/Box.js +0 -73
  162. package/dist/src/sub/DynamicLayout/custonSectionSampleData.d.ts +0 -334
  163. package/dist/src/sub/DynamicLayout/custonSectionSampleData.js +0 -328
  164. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/BlockMatcher.d.ts +0 -11
  165. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/BlockMatcher.js +0 -86
  166. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Accordion.d.ts +0 -12
  167. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Accordion.js +0 -46
  168. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionBody.d.ts +0 -8
  169. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionBody.js +0 -74
  170. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionCore.d.ts +0 -13
  171. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionCore.js +0 -25
  172. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionHeader.d.ts +0 -7
  173. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionHeader.js +0 -49
  174. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionItem.d.ts +0 -7
  175. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/AccordionItem.js +0 -19
  176. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/index.d.ts +0 -4
  177. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/AccordionCore/index.js +0 -14
  178. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Button.d.ts +0 -8
  179. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ContentsCarousel/CardItem.d.ts +0 -9
  180. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ContentsCarousel/CardItem.js +0 -34
  181. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ContentsCarousel/ContentsCarousel.d.ts +0 -28
  182. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ContentsCarousel/ContentsCarousel.js +0 -53
  183. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Divider.d.ts +0 -7
  184. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Divider.js +0 -29
  185. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Image.d.ts +0 -7
  186. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Image.js +0 -18
  187. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ImageCarousel/ImageCarousel.d.ts +0 -16
  188. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/ImageCarousel/ImageCarousel.js +0 -41
  189. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Instagram.d.ts +0 -7
  190. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Instagram.js +0 -19
  191. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/RichText.d.ts +0 -7
  192. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/RichText.js +0 -9
  193. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Text.d.ts +0 -7
  194. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Text.js +0 -29
  195. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Twitter.d.ts +0 -7
  196. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Twitter.js +0 -30
  197. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Youtube.d.ts +0 -9
  198. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/Youtube.js +0 -38
  199. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/index.d.ts +0 -9
  200. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/blocks/index.js +0 -24
  201. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/index.d.ts +0 -1
  202. package/dist/src/sub/DynamicLayout/sections/CustomSection/BlockMatcher/index.js +0 -8
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.samplePage = exports.samplePageMembershipSection = exports.samplePageFullscreenIframeSection = exports.samplePageFooterSection = exports.samplePageIntroSection3 = exports.samplePageInfoBoxSection = exports.samplePageContentsSection = exports.samplePageIntroSection2 = exports.samplePageContentsCarouselSection = exports.samplePageIntroSection = void 0;
4
- var custonSectionSampleData_1 = require("./custonSectionSampleData");
4
+ var mock_customSection_1 = require("./mock_customSection");
5
5
  exports.samplePageIntroSection = {
6
6
  type: 'DESIGNED',
7
7
  display: true,
@@ -1219,219 +1219,14 @@ exports.samplePageMembershipSection = {
1219
1219
  insertedAt: '2023-01-30T10:24:35',
1220
1220
  updatedAt: '2023-01-30T10:24:35'
1221
1221
  };
1222
- var samplePageCustomSection1 = {
1223
- type: 'CUSTOM',
1224
- display: true,
1225
- dynamicLayoutSectionItems: [],
1226
- id: 100110,
1227
- insertedAt: '2023-01-06T09:05:45',
1228
- manifest: {
1229
- availableProperties: [
1230
- 'title',
1231
- 'description',
1232
- 'button_alpha_label',
1233
- 'button_alpha_link_type',
1234
- 'button_alpha_link_src',
1235
- 'button_bravo_label',
1236
- 'button_bravo_link_type',
1237
- 'button_bravo_link_src',
1238
- 'button_charlie_label',
1239
- 'button_charlie_link_type',
1240
- 'button_charlie_link_src'
1241
- ],
1242
- availableStyles: [
1243
- 'title_color_in_hex',
1244
- 'description_color_in_hex',
1245
- 'background_color_in_hex',
1246
- 'background_media_type',
1247
- 'background_media_src',
1248
- 'background_overlay_color_in_hex',
1249
- 'button_alpha_design_type',
1250
- 'button_alpha_background_color_in_hex',
1251
- 'button_alpha_label_color_in_hex',
1252
- 'button_bravo_design_type',
1253
- 'button_bravo_background_color_in_hex',
1254
- 'button_bravo_label_color_in_hex',
1255
- 'button_charlie_design_type',
1256
- 'button_charlie_background_color_in_hex',
1257
- 'button_charlie_label_color_in_hex'
1258
- ],
1259
- availableTemplates: ['CUSTOM_SECTION_A'],
1260
- schema: 'CUSTOM_SECTION'
1261
- },
1262
- order: 9,
1263
- properties: {
1264
- buttonAlphaLabel: '',
1265
- buttonAlphaLinkSrc: 'https://publ.biz/',
1266
- buttonAlphaLinkType: 'WEB_LINK',
1267
- buttonBravoLabel: '',
1268
- buttonBravoLinkSrc: 'https://publ.biz/',
1269
- buttonBravoLinkType: 'WEB_LINK',
1270
- buttonCharlieLabel: '',
1271
- buttonCharlieLinkSrc: 'https://publ.biz/',
1272
- buttonCharlieLinkType: 'WEB_LINK',
1273
- buttonDeltaLabel: '',
1274
- buttonDeltaLinkSrc: '',
1275
- buttonDeltaLinkType: 'WEB_LINK',
1276
- buttonEchoLabel: '',
1277
- buttonEchoLinkSrc: '',
1278
- buttonEchoLinkType: 'WEB_LINK',
1279
- carouselAutoplayMode: 'MANUAL',
1280
- carouselAutoplayTime: 3,
1281
- carouselInfiniteLoopMode: 'NO_USE',
1282
- description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis. \nNam a ante mattis, lacinia lacus non, imperdiet leo.',
1283
- itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
1284
- sectionContentMediaSrc: '',
1285
- sectionContentMediaType: 'IMAGE',
1286
- title: 'Entertainment Business Sample',
1287
- multiPurposeUrl: ''
1288
- },
1289
- styles: {
1290
- backgroundColorInHex: '#EFF0F3FF',
1291
- backgroundMediaSrc: 'https://www.youtube.com/watch?v=4qz6x8y3tNw',
1292
- backgroundMediaType: 'YOUTUBE',
1293
- backgroundOverlayColorInHex: '#00000057',
1294
- buttonAlphaBackgroundColorInHex: '#00000000',
1295
- buttonAlphaDesignType: 'E',
1296
- buttonAlphaLabelColorInHex: '#FFFFFFFF',
1297
- buttonBravoBackgroundColorInHex: '#00000000',
1298
- buttonBravoDesignType: 'E',
1299
- buttonBravoLabelColorInHex: '#FFFFFFFF',
1300
- buttonCharlieBackgroundColorInHex: '#465FF000',
1301
- buttonCharlieDesignType: 'E',
1302
- buttonCharlieLabelColorInHex: '#FFFFFFFF',
1303
- buttonDeltaBackgroundColorInHex: '#455EEFFF',
1304
- buttonDeltaDesignType: 'A',
1305
- buttonDeltaLabelColorInHex: '#FFFFFFFF',
1306
- buttonEchoBackgroundColorInHex: '#455EEFFF',
1307
- buttonEchoDesignType: 'A',
1308
- buttonEchoLabelColorInHex: '#FFFFFFFF',
1309
- descriptionColorInHex: '#FFFFFFE8',
1310
- itemButtonBackgroundColorInHex: '#455EEFFF',
1311
- itemButtonDesignType: 'A',
1312
- itemButtonLabelColorInHex: '#FFFFFFFF',
1313
- itemDescriptionColorInHex: '#68686BFF',
1314
- itemTitleColorInHex: '#1E1E20FF',
1315
- itemHighlightingColorInHex: '#455EEFFF',
1316
- itemToneType: 'DARK',
1317
- titleColorInHex: '#FFFFFFFF',
1318
- programmedItemActionButtonTextType: 'A'
1319
- },
1320
- template: 'CUSTOM_SECTION_A',
1321
- updatedAt: '2023-01-06T09:05:45',
1322
- componentBlocks: custonSectionSampleData_1.customsectionMock
1323
- };
1324
- var samplePageCustomSection2 = {
1325
- type: 'CUSTOM',
1326
- display: true,
1327
- dynamicLayoutSectionItems: [],
1328
- id: 16,
1329
- componentBlocks: custonSectionSampleData_1.customsectionMock,
1330
- insertedAt: '2023-01-06T09:05:45',
1331
- manifest: {
1332
- availableProperties: [
1333
- 'title',
1334
- 'description',
1335
- 'button_alpha_label',
1336
- 'button_alpha_link_type',
1337
- 'button_alpha_link_src',
1338
- 'button_bravo_label',
1339
- 'button_bravo_link_type',
1340
- 'button_bravo_link_src',
1341
- 'button_charlie_label',
1342
- 'button_charlie_link_type',
1343
- 'button_charlie_link_src'
1344
- ],
1345
- availableStyles: [
1346
- 'title_color_in_hex',
1347
- 'description_color_in_hex',
1348
- 'background_color_in_hex',
1349
- 'background_media_type',
1350
- 'background_media_src',
1351
- 'background_overlay_color_in_hex',
1352
- 'button_alpha_design_type',
1353
- 'button_alpha_background_color_in_hex',
1354
- 'button_alpha_label_color_in_hex',
1355
- 'button_bravo_design_type',
1356
- 'button_bravo_background_color_in_hex',
1357
- 'button_bravo_label_color_in_hex',
1358
- 'button_charlie_design_type',
1359
- 'button_charlie_background_color_in_hex',
1360
- 'button_charlie_label_color_in_hex'
1361
- ],
1362
- availableTemplates: ['CUSTOM_SECTION_A'],
1363
- schema: 'CUSTOM_SECTION'
1364
- },
1365
- order: 10,
1366
- properties: {
1367
- buttonAlphaLabel: '',
1368
- buttonAlphaLinkSrc: 'https://publ.biz/',
1369
- buttonAlphaLinkType: 'WEB_LINK',
1370
- buttonBravoLabel: '',
1371
- buttonBravoLinkSrc: 'https://publ.biz/',
1372
- buttonBravoLinkType: 'WEB_LINK',
1373
- buttonCharlieLabel: '',
1374
- buttonCharlieLinkSrc: 'https://publ.biz/',
1375
- buttonCharlieLinkType: 'WEB_LINK',
1376
- buttonDeltaLabel: '',
1377
- buttonDeltaLinkSrc: '',
1378
- buttonDeltaLinkType: 'WEB_LINK',
1379
- buttonEchoLabel: '',
1380
- buttonEchoLinkSrc: '',
1381
- buttonEchoLinkType: 'WEB_LINK',
1382
- carouselAutoplayMode: 'MANUAL',
1383
- carouselAutoplayTime: 3,
1384
- carouselInfiniteLoopMode: 'NO_USE',
1385
- description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. \nDonec odio felis, eleifend eu leo nec, aliquam dignissim turpis. \nNam a ante mattis, lacinia lacus non, imperdiet leo.',
1386
- itemLinkMethod: 'CLICK_BUTTON_IN_ITEM',
1387
- sectionContentMediaSrc: '',
1388
- sectionContentMediaType: 'IMAGE',
1389
- title: 'Entertainment Business Sample',
1390
- multiPurposeUrl: ''
1391
- },
1392
- styles: {
1393
- backgroundColorInHex: '#EFF0F3FF',
1394
- backgroundMediaSrc: 'https://www.youtube.com/watch?v=4qz6x8y3tNw',
1395
- backgroundMediaType: 'YOUTUBE',
1396
- backgroundOverlayColorInHex: '#00000057',
1397
- buttonAlphaBackgroundColorInHex: '#00000000',
1398
- buttonAlphaDesignType: 'E',
1399
- buttonAlphaLabelColorInHex: '#FFFFFFFF',
1400
- buttonBravoBackgroundColorInHex: '#00000000',
1401
- buttonBravoDesignType: 'E',
1402
- buttonBravoLabelColorInHex: '#FFFFFFFF',
1403
- buttonCharlieBackgroundColorInHex: '#465FF000',
1404
- buttonCharlieDesignType: 'E',
1405
- buttonCharlieLabelColorInHex: '#FFFFFFFF',
1406
- buttonDeltaBackgroundColorInHex: '#455EEFFF',
1407
- buttonDeltaDesignType: 'A',
1408
- buttonDeltaLabelColorInHex: '#FFFFFFFF',
1409
- buttonEchoBackgroundColorInHex: '#455EEFFF',
1410
- buttonEchoDesignType: 'A',
1411
- buttonEchoLabelColorInHex: '#FFFFFFFF',
1412
- descriptionColorInHex: '#FFFFFFE8',
1413
- itemButtonBackgroundColorInHex: '#455EEFFF',
1414
- itemButtonDesignType: 'A',
1415
- itemButtonLabelColorInHex: '#FFFFFFFF',
1416
- itemDescriptionColorInHex: '#68686BFF',
1417
- itemTitleColorInHex: '#1E1E20FF',
1418
- itemHighlightingColorInHex: '#455EEFFF',
1419
- itemToneType: 'DARK',
1420
- titleColorInHex: '#FFFFFFFF',
1421
- programmedItemActionButtonTextType: 'A'
1422
- },
1423
- template: 'CUSTOM_SECTION_A',
1424
- updatedAt: '2023-01-06T09:05:45'
1425
- };
1426
1222
  exports.samplePage = [
1427
- // samplePageIntroSection,
1428
- exports.samplePageContentsCarouselSection,
1223
+ mock_customSection_1.customSectionMock1,
1224
+ exports.samplePageIntroSection
1225
+ // samplePageContentsCarouselSection,
1429
1226
  // samplePageIntroSection2,
1430
1227
  // samplePageContentsSection,
1431
1228
  // samplePageInfoBoxSection,
1432
1229
  // samplePageIntroSection3,
1433
1230
  // samplePageFooterSection,
1434
- // samplePageMembershipSection,
1435
- samplePageCustomSection1,
1436
- samplePageCustomSection2
1231
+ // samplePageMembershipSection
1437
1232
  ];