@blinkpage/composer-tools 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (709) hide show
  1. package/EventEmitter.ts +40 -0
  2. package/InlineEditorProvider.tsx +30 -0
  3. package/composer-base-components/base/base.module.scss +638 -0
  4. package/composer-base-components/base/base.tsx +692 -0
  5. package/composer-base-components/base/utitilities/iconList.ts +65 -0
  6. package/composer-base-components/base/utitilities/viewports.module.scss +2 -0
  7. package/composer-base-components/close/close.module.scss +16 -0
  8. package/composer-base-components/close/close.tsx +14 -0
  9. package/composer-base-components/embeded-link/embeded-link.tsx +38 -0
  10. package/composer-base-components/map/map.tsx +267 -0
  11. package/composer-base-components/media/media.tsx +0 -0
  12. package/composer-base-components/modal/index.ts +4 -0
  13. package/composer-base-components/modal/modal.module.scss +19 -0
  14. package/composer-base-components/modal/modal.service.ts +27 -0
  15. package/composer-base-components/modal/modal.tsx +22 -0
  16. package/composer-base-components/slider/slider.tsx +120 -0
  17. package/composer-base-components/ui/accordion/Accordion.module.scss +46 -0
  18. package/composer-base-components/ui/accordion/Accordion.tsx +48 -0
  19. package/composer-base-components/ui/cookie/Cookie.module.scss +473 -0
  20. package/composer-base-components/ui/cookie/Cookie.tsx +69 -0
  21. package/composer-base-components/ui/dropdown/Dropdown.module.scss +79 -0
  22. package/composer-base-components/ui/dropdown/Dropdown.tsx +133 -0
  23. package/context/DataContext.tsx +79 -0
  24. package/custom-component-loader.ts +84 -0
  25. package/custom-hooks/hex-to-rgb.tsx +6 -0
  26. package/custom-hooks/input-templates.tsx +243 -0
  27. package/custom-hooks/load-font.tsx +9 -0
  28. package/custom-hooks/placeholder-filler.tsx +23 -0
  29. package/custom-hooks/project.ts +9 -0
  30. package/editor-components/ComponentRegistery.tsx +42 -0
  31. package/editor-components/EditorComponent.tsx +1103 -0
  32. package/editor-components/Image_gallery/image_gallery_1/image-gallery1.module.scss +130 -0
  33. package/editor-components/Image_gallery/image_gallery_1/image-gallery1.tsx +619 -0
  34. package/editor-components/Image_gallery/image_gallery_10/image-gallery10.module.scss +179 -0
  35. package/editor-components/Image_gallery/image_gallery_10/image-gallery10.tsx +682 -0
  36. package/editor-components/Image_gallery/image_gallery_11/image-gallery11.module.scss +394 -0
  37. package/editor-components/Image_gallery/image_gallery_11/image-gallery11.tsx +595 -0
  38. package/editor-components/Image_gallery/image_gallery_2/image-gallery2.module.scss +267 -0
  39. package/editor-components/Image_gallery/image_gallery_2/image-gallery2.tsx +1028 -0
  40. package/editor-components/Image_gallery/image_gallery_3/image-gallery3.module.scss +158 -0
  41. package/editor-components/Image_gallery/image_gallery_3/image-gallery3.tsx +320 -0
  42. package/editor-components/Image_gallery/image_gallery_4/image-gallery4.module.scss +264 -0
  43. package/editor-components/Image_gallery/image_gallery_4/image-gallery4.tsx +787 -0
  44. package/editor-components/Image_gallery/image_gallery_5/image-gallery5.module.scss +216 -0
  45. package/editor-components/Image_gallery/image_gallery_5/image-gallery5.tsx +404 -0
  46. package/editor-components/Image_gallery/image_gallery_6/image-gallery6.module.scss +359 -0
  47. package/editor-components/Image_gallery/image_gallery_6/image-gallery6.tsx +824 -0
  48. package/editor-components/Image_gallery/image_gallery_7/image-gallery7.module.scss +142 -0
  49. package/editor-components/Image_gallery/image_gallery_7/image-gallery7.tsx +515 -0
  50. package/editor-components/Image_gallery/image_gallery_8/image-gallery8.module.scss +96 -0
  51. package/editor-components/Image_gallery/image_gallery_8/image-gallery8.tsx +443 -0
  52. package/editor-components/Image_gallery/image_gallery_9/image-gallery9.module.scss +196 -0
  53. package/editor-components/Image_gallery/image_gallery_9/image-gallery9.tsx +627 -0
  54. package/editor-components/about/about1/about1.module.scss +162 -0
  55. package/editor-components/about/about1/about1.tsx +343 -0
  56. package/editor-components/about/about10/about10.module.scss +273 -0
  57. package/editor-components/about/about10/about10.tsx +297 -0
  58. package/editor-components/about/about11/about11.module.scss +191 -0
  59. package/editor-components/about/about11/about11.tsx +267 -0
  60. package/editor-components/about/about12/about12.module.scss +195 -0
  61. package/editor-components/about/about12/about12.tsx +204 -0
  62. package/editor-components/about/about13/about13.module.scss +144 -0
  63. package/editor-components/about/about13/about13.tsx +118 -0
  64. package/editor-components/about/about14/about14.module.scss +193 -0
  65. package/editor-components/about/about14/about14.tsx +183 -0
  66. package/editor-components/about/about15/about15.module.scss +190 -0
  67. package/editor-components/about/about15/about15.tsx +194 -0
  68. package/editor-components/about/about16/about16.module.scss +198 -0
  69. package/editor-components/about/about16/about16.tsx +280 -0
  70. package/editor-components/about/about2/about2.module.scss +139 -0
  71. package/editor-components/about/about2/about2.tsx +121 -0
  72. package/editor-components/about/about3/about3.module.scss +249 -0
  73. package/editor-components/about/about3/about3.tsx +270 -0
  74. package/editor-components/about/about4/about4.module.scss +50 -0
  75. package/editor-components/about/about4/about4.tsx +88 -0
  76. package/editor-components/about/about5/about5.module.scss +188 -0
  77. package/editor-components/about/about5/about5.tsx +187 -0
  78. package/editor-components/about/about6/about6.module.scss +84 -0
  79. package/editor-components/about/about6/about6.tsx +141 -0
  80. package/editor-components/about/about7/about7.module.scss +268 -0
  81. package/editor-components/about/about7/about7.tsx +272 -0
  82. package/editor-components/about/about8/about8.module.scss +159 -0
  83. package/editor-components/about/about8/about8.tsx +240 -0
  84. package/editor-components/about/about9/about9.module.scss +79 -0
  85. package/editor-components/about/about9/about9.tsx +142 -0
  86. package/editor-components/blog/blog1/blog1.module.scss +542 -0
  87. package/editor-components/blog/blog1/blog1.tsx +540 -0
  88. package/editor-components/blog/blog2/blog2.module.scss +377 -0
  89. package/editor-components/blog/blog2/blog2.tsx +317 -0
  90. package/editor-components/blog/blog3/blog3.module.scss +477 -0
  91. package/editor-components/blog/blog3/blog3.tsx +709 -0
  92. package/editor-components/breadcrumb/breadcrumb1/breadcrumb1.module.scss +142 -0
  93. package/editor-components/breadcrumb/breadcrumb1/breadcrumb1.tsx +236 -0
  94. package/editor-components/breadcrumb/breadcrumb2/breadcrumb2.module.scss +139 -0
  95. package/editor-components/breadcrumb/breadcrumb2/breadcrumb2.tsx +224 -0
  96. package/editor-components/breadcrumb/breadcrumb3/breadcrumb3.module.scss +193 -0
  97. package/editor-components/breadcrumb/breadcrumb3/breadcrumb3.tsx +218 -0
  98. package/editor-components/breadcrumb/breadcrumb4/breadcrumb4.module.scss +201 -0
  99. package/editor-components/breadcrumb/breadcrumb4/breadcrumb4.tsx +297 -0
  100. package/editor-components/breadcrumb/breadcrumb5/breadcrumb5.module.scss +90 -0
  101. package/editor-components/breadcrumb/breadcrumb5/breadcrumb5.tsx +161 -0
  102. package/editor-components/breadcrumb/breadcrumb6/breadcrumb6.module.scss +168 -0
  103. package/editor-components/breadcrumb/breadcrumb6/breadcrumb6.tsx +235 -0
  104. package/editor-components/call_to_action/call_to_action1/call_to_action1.module.scss +41 -0
  105. package/editor-components/call_to_action/call_to_action1/call_to_action1.tsx +84 -0
  106. package/editor-components/call_to_action/call_to_action10/call_to_action10.module.scss +96 -0
  107. package/editor-components/call_to_action/call_to_action10/call_to_action10.tsx +233 -0
  108. package/editor-components/call_to_action/call_to_action11/call_to_action11.module.scss +99 -0
  109. package/editor-components/call_to_action/call_to_action11/call_to_action11.tsx +73 -0
  110. package/editor-components/call_to_action/call_to_action12/call_to_action12.module.scss +146 -0
  111. package/editor-components/call_to_action/call_to_action12/call_to_action12.tsx +147 -0
  112. package/editor-components/call_to_action/call_to_action13/call_to_action13.module.scss +149 -0
  113. package/editor-components/call_to_action/call_to_action13/call_to_action13.tsx +127 -0
  114. package/editor-components/call_to_action/call_to_action14/call_to_action14.module.scss +176 -0
  115. package/editor-components/call_to_action/call_to_action14/call_to_action14.tsx +99 -0
  116. package/editor-components/call_to_action/call_to_action15/call_to_action15.module.scss +32 -0
  117. package/editor-components/call_to_action/call_to_action15/call_to_action15.tsx +87 -0
  118. package/editor-components/call_to_action/call_to_action16/call_to_action16.module.scss +54 -0
  119. package/editor-components/call_to_action/call_to_action16/call_to_action16.tsx +95 -0
  120. package/editor-components/call_to_action/call_to_action17/call_to_action17.module.scss +43 -0
  121. package/editor-components/call_to_action/call_to_action17/call_to_action17.tsx +80 -0
  122. package/editor-components/call_to_action/call_to_action18/call_to_action18.module.scss +88 -0
  123. package/editor-components/call_to_action/call_to_action18/call_to_action18.tsx +104 -0
  124. package/editor-components/call_to_action/call_to_action2/call_to_action2.module.scss +271 -0
  125. package/editor-components/call_to_action/call_to_action2/call_to_action2.tsx +221 -0
  126. package/editor-components/call_to_action/call_to_action20/call_to_action20.module.scss +89 -0
  127. package/editor-components/call_to_action/call_to_action20/call_to_action20.tsx +96 -0
  128. package/editor-components/call_to_action/call_to_action21/call_to_action21.module.scss +84 -0
  129. package/editor-components/call_to_action/call_to_action21/call_to_action21.tsx +111 -0
  130. package/editor-components/call_to_action/call_to_action22/call_to_action22.module.scss +83 -0
  131. package/editor-components/call_to_action/call_to_action22/call_to_action22.tsx +118 -0
  132. package/editor-components/call_to_action/call_to_action3/call_to_action3.module.scss +94 -0
  133. package/editor-components/call_to_action/call_to_action3/call_to_action3.tsx +121 -0
  134. package/editor-components/call_to_action/call_to_action4/call_to_action4.module.scss +96 -0
  135. package/editor-components/call_to_action/call_to_action4/call_to_action4.tsx +253 -0
  136. package/editor-components/call_to_action/call_to_action5/call_to_action5.module.scss +185 -0
  137. package/editor-components/call_to_action/call_to_action5/call_to_action5.tsx +168 -0
  138. package/editor-components/call_to_action/call_to_action6/call_to_action6.module.scss +188 -0
  139. package/editor-components/call_to_action/call_to_action6/call_to_action6.tsx +230 -0
  140. package/editor-components/call_to_action/call_to_action7/call_to_action7.module.scss +158 -0
  141. package/editor-components/call_to_action/call_to_action7/call_to_action7.tsx +193 -0
  142. package/editor-components/call_to_action/call_to_action8/call_to_action8.module.scss +75 -0
  143. package/editor-components/call_to_action/call_to_action8/call_to_action8.tsx +113 -0
  144. package/editor-components/call_to_action/call_to_action9/call_to_action9.module.scss +71 -0
  145. package/editor-components/call_to_action/call_to_action9/call_to_action9.tsx +258 -0
  146. package/editor-components/coming-soon/coming-soon1/coming-soon1.module.scss +100 -0
  147. package/editor-components/coming-soon/coming-soon1/coming-soon1.tsx +200 -0
  148. package/editor-components/coming-soon/coming-soon2/coming-soon2.module.scss +230 -0
  149. package/editor-components/coming-soon/coming-soon2/coming-soon2.tsx +355 -0
  150. package/editor-components/coming-soon/coming-soon3/coming-soon3.module.scss +205 -0
  151. package/editor-components/coming-soon/coming-soon3/coming-soon3.tsx +250 -0
  152. package/editor-components/coming-soon/coming-soon4/coming-soon4.module.scss +139 -0
  153. package/editor-components/coming-soon/coming-soon4/coming-soon4.tsx +228 -0
  154. package/editor-components/comparison/comparison1/comparison1.module.scss +320 -0
  155. package/editor-components/comparison/comparison1/comparison1.tsx +315 -0
  156. package/editor-components/contacts/form1/form1.module.scss +77 -0
  157. package/editor-components/contacts/form1/form1.tsx +300 -0
  158. package/editor-components/contacts/form2/form2.module.scss +183 -0
  159. package/editor-components/contacts/form2/form2.tsx +425 -0
  160. package/editor-components/contacts/form3/form3.module.scss +496 -0
  161. package/editor-components/contacts/form3/form3.tsx +782 -0
  162. package/editor-components/contacts/form4/form4.module.scss +192 -0
  163. package/editor-components/contacts/form4/form4.tsx +593 -0
  164. package/editor-components/contacts/form5/form5.module.scss +159 -0
  165. package/editor-components/contacts/form5/form5.tsx +615 -0
  166. package/editor-components/contacts/form6/form6.module.scss +177 -0
  167. package/editor-components/contacts/form6/form6.tsx +580 -0
  168. package/editor-components/contacts/form7/form7.module.scss +167 -0
  169. package/editor-components/contacts/form7/form7.tsx +417 -0
  170. package/editor-components/contacts/form8/form8.module.scss +151 -0
  171. package/editor-components/contacts/form8/form8.tsx +506 -0
  172. package/editor-components/contacts/form9/form9.module.scss +314 -0
  173. package/editor-components/contacts/form9/form9.tsx +923 -0
  174. package/editor-components/download/download1/download1.module.scss +109 -0
  175. package/editor-components/download/download1/download1.tsx +119 -0
  176. package/editor-components/download/download10/download10.module.scss +142 -0
  177. package/editor-components/download/download10/download10.tsx +254 -0
  178. package/editor-components/download/download11/download11.module.scss +201 -0
  179. package/editor-components/download/download11/download11.tsx +253 -0
  180. package/editor-components/download/download2/download2.module.scss +95 -0
  181. package/editor-components/download/download2/download2.tsx +249 -0
  182. package/editor-components/download/download3/download3.module.scss +359 -0
  183. package/editor-components/download/download3/download3.tsx +185 -0
  184. package/editor-components/download/download4/download4.module.scss +102 -0
  185. package/editor-components/download/download4/download4.tsx +119 -0
  186. package/editor-components/download/download5/download5.module.scss +135 -0
  187. package/editor-components/download/download5/download5.tsx +135 -0
  188. package/editor-components/download/download6/download6.module.scss +83 -0
  189. package/editor-components/download/download6/download6.tsx +122 -0
  190. package/editor-components/download/download7/download7.module.scss +136 -0
  191. package/editor-components/download/download7/download7.tsx +135 -0
  192. package/editor-components/download/download8/download8.module.scss +316 -0
  193. package/editor-components/download/download8/download8.tsx +248 -0
  194. package/editor-components/download/download9/download9.module.scss +284 -0
  195. package/editor-components/download/download9/download9.tsx +154 -0
  196. package/editor-components/e-commerce/e-commerce1/e-commerce1.module.scss +459 -0
  197. package/editor-components/e-commerce/e-commerce1/e-commerce1.tsx +809 -0
  198. package/editor-components/e-commerce/e-commerce2/e-commerce2.module.scss +318 -0
  199. package/editor-components/e-commerce/e-commerce2/e-commerce2.tsx +3361 -0
  200. package/editor-components/e-commerce/e-commerce3/e-commerce3.module.scss +94 -0
  201. package/editor-components/e-commerce/e-commerce3/e-commerce3.tsx +350 -0
  202. package/editor-components/e-commerce/e-commerce4/e-commerce4.module.scss +289 -0
  203. package/editor-components/e-commerce/e-commerce4/e-commerce4.tsx +2234 -0
  204. package/editor-components/e-commerce/e-commerce5/e-commerce5.module.scss +264 -0
  205. package/editor-components/e-commerce/e-commerce5/e-commerce5.tsx +542 -0
  206. package/editor-components/e-commerce/e-commerce6/e-commerce6.module.scss +489 -0
  207. package/editor-components/e-commerce/e-commerce6/e-commerce6.tsx +518 -0
  208. package/editor-components/e-commerce/e-commerce7/e-commerce7.module.scss +688 -0
  209. package/editor-components/e-commerce/e-commerce7/e-commerce7.tsx +1442 -0
  210. package/editor-components/e-commerce/e-commerce8/e-commerce8.module.scss +310 -0
  211. package/editor-components/e-commerce/e-commerce8/e-commerce8.tsx +957 -0
  212. package/editor-components/faq/faq1/faq1.module.scss +93 -0
  213. package/editor-components/faq/faq1/faq1.tsx +195 -0
  214. package/editor-components/faq/faq10/faq10.module.scss +153 -0
  215. package/editor-components/faq/faq10/faq10.tsx +452 -0
  216. package/editor-components/faq/faq2/faq2.module.scss +123 -0
  217. package/editor-components/faq/faq2/faq2.tsx +374 -0
  218. package/editor-components/faq/faq3/faq3.module.scss +144 -0
  219. package/editor-components/faq/faq3/faq3.tsx +407 -0
  220. package/editor-components/faq/faq4/faq4.module.scss +124 -0
  221. package/editor-components/faq/faq4/faq4.tsx +303 -0
  222. package/editor-components/faq/faq5/faq5.module.scss +151 -0
  223. package/editor-components/faq/faq5/faq5.tsx +614 -0
  224. package/editor-components/faq/faq6/faq6.module.scss +116 -0
  225. package/editor-components/faq/faq6/faq6.tsx +241 -0
  226. package/editor-components/faq/faq7/faq7.module.scss +98 -0
  227. package/editor-components/faq/faq7/faq7.tsx +298 -0
  228. package/editor-components/faq/faq8/faq8.module.scss +217 -0
  229. package/editor-components/faq/faq8/faq8.tsx +796 -0
  230. package/editor-components/faq/faq9/faq9.module.scss +137 -0
  231. package/editor-components/faq/faq9/faq9.tsx +466 -0
  232. package/editor-components/feature/feature1/feature1.module.scss +115 -0
  233. package/editor-components/feature/feature1/feature1.tsx +148 -0
  234. package/editor-components/feature/feature10/feature10.module.scss +191 -0
  235. package/editor-components/feature/feature10/feature10.tsx +468 -0
  236. package/editor-components/feature/feature11/feature11.module.scss +99 -0
  237. package/editor-components/feature/feature11/feature11.tsx +337 -0
  238. package/editor-components/feature/feature12/feature12.module.scss +169 -0
  239. package/editor-components/feature/feature12/feature12.tsx +325 -0
  240. package/editor-components/feature/feature13/feature13.module.scss +151 -0
  241. package/editor-components/feature/feature13/feature13.tsx +680 -0
  242. package/editor-components/feature/feature14/feature14.module.scss +119 -0
  243. package/editor-components/feature/feature14/feature14.tsx +284 -0
  244. package/editor-components/feature/feature15/feature15.module.scss +214 -0
  245. package/editor-components/feature/feature15/feature15.tsx +344 -0
  246. package/editor-components/feature/feature16/feature16.module.scss +234 -0
  247. package/editor-components/feature/feature16/feature16.tsx +527 -0
  248. package/editor-components/feature/feature17/feature17.module.scss +187 -0
  249. package/editor-components/feature/feature17/feature17.tsx +527 -0
  250. package/editor-components/feature/feature18/feature18.module.scss +213 -0
  251. package/editor-components/feature/feature18/feature18.tsx +405 -0
  252. package/editor-components/feature/feature19/feature19.module.scss +212 -0
  253. package/editor-components/feature/feature19/feature19.tsx +239 -0
  254. package/editor-components/feature/feature2/feature2.module.scss +120 -0
  255. package/editor-components/feature/feature2/feature2.tsx +246 -0
  256. package/editor-components/feature/feature20/feature20.module.scss +239 -0
  257. package/editor-components/feature/feature20/feature20.tsx +238 -0
  258. package/editor-components/feature/feature21/feature21.module.scss +268 -0
  259. package/editor-components/feature/feature21/feature21.tsx +352 -0
  260. package/editor-components/feature/feature22/feature22.module.scss +191 -0
  261. package/editor-components/feature/feature22/feature22.tsx +266 -0
  262. package/editor-components/feature/feature24/feature24.module.scss +121 -0
  263. package/editor-components/feature/feature24/feature24.tsx +381 -0
  264. package/editor-components/feature/feature25/feature25.module.scss +213 -0
  265. package/editor-components/feature/feature25/feature25.tsx +398 -0
  266. package/editor-components/feature/feature26/feature26.module.scss +188 -0
  267. package/editor-components/feature/feature26/feature26.tsx +139 -0
  268. package/editor-components/feature/feature27/feature27.module.scss +155 -0
  269. package/editor-components/feature/feature27/feature27.tsx +164 -0
  270. package/editor-components/feature/feature28/feature28.module.scss +89 -0
  271. package/editor-components/feature/feature28/feature28.tsx +123 -0
  272. package/editor-components/feature/feature29/feature29.module.scss +285 -0
  273. package/editor-components/feature/feature29/feature29.tsx +482 -0
  274. package/editor-components/feature/feature3/feature3.module.scss +335 -0
  275. package/editor-components/feature/feature3/feature3.tsx +418 -0
  276. package/editor-components/feature/feature30/feature30.module.scss +85 -0
  277. package/editor-components/feature/feature30/feature30.tsx +316 -0
  278. package/editor-components/feature/feature31/feature31.module.scss +101 -0
  279. package/editor-components/feature/feature31/feature31.tsx +315 -0
  280. package/editor-components/feature/feature32/feature32.module.scss +131 -0
  281. package/editor-components/feature/feature32/feature32.tsx +226 -0
  282. package/editor-components/feature/feature33/feature33.module.scss +168 -0
  283. package/editor-components/feature/feature33/feature33.tsx +285 -0
  284. package/editor-components/feature/feature34/feature34.module.scss +151 -0
  285. package/editor-components/feature/feature34/feature34.tsx +207 -0
  286. package/editor-components/feature/feature35/feature35.module.scss +145 -0
  287. package/editor-components/feature/feature35/feature35.tsx +422 -0
  288. package/editor-components/feature/feature36/feature36.module.scss +106 -0
  289. package/editor-components/feature/feature36/feature36.tsx +194 -0
  290. package/editor-components/feature/feature37/feature37.module.scss +145 -0
  291. package/editor-components/feature/feature37/feature37.tsx +249 -0
  292. package/editor-components/feature/feature38/feature38.module.scss +174 -0
  293. package/editor-components/feature/feature38/feature38.tsx +402 -0
  294. package/editor-components/feature/feature39/feature39.module.scss +198 -0
  295. package/editor-components/feature/feature39/feature39.tsx +367 -0
  296. package/editor-components/feature/feature4/feature4.module.scss +220 -0
  297. package/editor-components/feature/feature4/feature4.tsx +543 -0
  298. package/editor-components/feature/feature40/feature40.module.scss +211 -0
  299. package/editor-components/feature/feature40/feature40.tsx +424 -0
  300. package/editor-components/feature/feature41/feature41.module.scss +142 -0
  301. package/editor-components/feature/feature41/feature41.tsx +255 -0
  302. package/editor-components/feature/feature43/feature43.module.scss +133 -0
  303. package/editor-components/feature/feature43/feature43.tsx +305 -0
  304. package/editor-components/feature/feature44/feature44.module.scss +211 -0
  305. package/editor-components/feature/feature44/feature44.tsx +331 -0
  306. package/editor-components/feature/feature45/feature45.module.scss +144 -0
  307. package/editor-components/feature/feature45/feature45.tsx +482 -0
  308. package/editor-components/feature/feature46/feature46.module.scss +131 -0
  309. package/editor-components/feature/feature46/feature46.tsx +352 -0
  310. package/editor-components/feature/feature47/feature47.module.scss +88 -0
  311. package/editor-components/feature/feature47/feature47.tsx +356 -0
  312. package/editor-components/feature/feature48/feature48.module.scss +143 -0
  313. package/editor-components/feature/feature48/feature48.tsx +302 -0
  314. package/editor-components/feature/feature49/feature49.module.scss +141 -0
  315. package/editor-components/feature/feature49/feature49.tsx +294 -0
  316. package/editor-components/feature/feature5/feature5.module.scss +534 -0
  317. package/editor-components/feature/feature5/feature5.tsx +509 -0
  318. package/editor-components/feature/feature6/feature6.module.scss +150 -0
  319. package/editor-components/feature/feature6/feature6.tsx +268 -0
  320. package/editor-components/feature/feature7/feature7.module.scss +159 -0
  321. package/editor-components/feature/feature7/feature7.tsx +263 -0
  322. package/editor-components/feature/feature8/feature8.module.scss +106 -0
  323. package/editor-components/feature/feature8/feature8.tsx +474 -0
  324. package/editor-components/feature/feature9/feature9.module.scss +172 -0
  325. package/editor-components/feature/feature9/feature9.tsx +377 -0
  326. package/editor-components/feedback/feedbackmodal1/feedbackmodal1.module.scss +305 -0
  327. package/editor-components/feedback/feedbackmodal1/feedbackmodal1.tsx +386 -0
  328. package/editor-components/footer/footer1/footer1.module.scss +445 -0
  329. package/editor-components/footer/footer1/footer1.tsx +474 -0
  330. package/editor-components/footer/footer10/footer10.module.scss +391 -0
  331. package/editor-components/footer/footer10/footer10.tsx +371 -0
  332. package/editor-components/footer/footer11/footer11.module.scss +143 -0
  333. package/editor-components/footer/footer11/footer11.tsx +196 -0
  334. package/editor-components/footer/footer12/footer12.module.scss +293 -0
  335. package/editor-components/footer/footer12/footer12.tsx +568 -0
  336. package/editor-components/footer/footer2/footer2.module.scss +154 -0
  337. package/editor-components/footer/footer2/footer2.tsx +385 -0
  338. package/editor-components/footer/footer3/footer3.module.scss +420 -0
  339. package/editor-components/footer/footer3/footer3.tsx +875 -0
  340. package/editor-components/footer/footer4/footer4.module.scss +477 -0
  341. package/editor-components/footer/footer4/footer4.tsx +703 -0
  342. package/editor-components/footer/footer5/footer5.module.scss +283 -0
  343. package/editor-components/footer/footer5/footer5.tsx +208 -0
  344. package/editor-components/footer/footer6/footer6.module.scss +155 -0
  345. package/editor-components/footer/footer6/footer6.tsx +372 -0
  346. package/editor-components/footer/footer7/footer7.module.scss +197 -0
  347. package/editor-components/footer/footer7/footer7.tsx +190 -0
  348. package/editor-components/footer/footer8/footer8.module.scss +456 -0
  349. package/editor-components/footer/footer8/footer8.tsx +715 -0
  350. package/editor-components/footer/footer9/footer9.module.scss +386 -0
  351. package/editor-components/footer/footer9/footer9.tsx +514 -0
  352. package/editor-components/hero-section/hero-section1/hero-section1.module.scss +578 -0
  353. package/editor-components/hero-section/hero-section1/hero-section1.tsx +493 -0
  354. package/editor-components/hero-section/hero-section10/hero-section10.module.scss +492 -0
  355. package/editor-components/hero-section/hero-section10/hero-section10.tsx +611 -0
  356. package/editor-components/hero-section/hero-section11/hero-section11.module.scss +295 -0
  357. package/editor-components/hero-section/hero-section11/hero-section11.tsx +224 -0
  358. package/editor-components/hero-section/hero-section12/hero-section12.module.scss +504 -0
  359. package/editor-components/hero-section/hero-section12/hero-section12.tsx +974 -0
  360. package/editor-components/hero-section/hero-section13/hero-section13.module.scss +171 -0
  361. package/editor-components/hero-section/hero-section13/hero-section13.tsx +417 -0
  362. package/editor-components/hero-section/hero-section14/hero-section14.module.scss +210 -0
  363. package/editor-components/hero-section/hero-section14/hero-section14.tsx +333 -0
  364. package/editor-components/hero-section/hero-section15/hero-section15.module.scss +330 -0
  365. package/editor-components/hero-section/hero-section15/hero-section15.tsx +254 -0
  366. package/editor-components/hero-section/hero-section16/hero-section16.module.scss +392 -0
  367. package/editor-components/hero-section/hero-section16/hero-section16.tsx +369 -0
  368. package/editor-components/hero-section/hero-section17/hero-section17.module.scss +240 -0
  369. package/editor-components/hero-section/hero-section17/hero-section17.tsx +263 -0
  370. package/editor-components/hero-section/hero-section18/hero-section18.module.scss +403 -0
  371. package/editor-components/hero-section/hero-section18/hero-section18.tsx +569 -0
  372. package/editor-components/hero-section/hero-section19/hero-section19.module.scss +333 -0
  373. package/editor-components/hero-section/hero-section19/hero-section19.tsx +384 -0
  374. package/editor-components/hero-section/hero-section2/hero-section2.module.scss +329 -0
  375. package/editor-components/hero-section/hero-section2/hero-section2.tsx +393 -0
  376. package/editor-components/hero-section/hero-section20/hero-section20.module.scss +475 -0
  377. package/editor-components/hero-section/hero-section20/hero-section20.tsx +994 -0
  378. package/editor-components/hero-section/hero-section21/hero-section21.module.scss +264 -0
  379. package/editor-components/hero-section/hero-section21/hero-section21.tsx +249 -0
  380. package/editor-components/hero-section/hero-section22/hero-section22.module.scss +394 -0
  381. package/editor-components/hero-section/hero-section22/hero-section22.tsx +421 -0
  382. package/editor-components/hero-section/hero-section23/hero-section23.module.scss +573 -0
  383. package/editor-components/hero-section/hero-section23/hero-section23.tsx +592 -0
  384. package/editor-components/hero-section/hero-section24/hero-section24.module.scss +531 -0
  385. package/editor-components/hero-section/hero-section24/hero-section24.tsx +462 -0
  386. package/editor-components/hero-section/hero-section25/hero-section25.module.scss +538 -0
  387. package/editor-components/hero-section/hero-section25/hero-section25.tsx +656 -0
  388. package/editor-components/hero-section/hero-section26/hero-section26.module.scss +242 -0
  389. package/editor-components/hero-section/hero-section26/hero-section26.tsx +441 -0
  390. package/editor-components/hero-section/hero-section27/hero-section27.module.scss +684 -0
  391. package/editor-components/hero-section/hero-section27/hero-section27.tsx +717 -0
  392. package/editor-components/hero-section/hero-section28/hero-section28.module.scss +368 -0
  393. package/editor-components/hero-section/hero-section28/hero-section28.tsx +477 -0
  394. package/editor-components/hero-section/hero-section29/hero-section29.module.scss +298 -0
  395. package/editor-components/hero-section/hero-section29/hero-section29.tsx +334 -0
  396. package/editor-components/hero-section/hero-section3/hero-section3.module.scss +810 -0
  397. package/editor-components/hero-section/hero-section3/hero-section3.tsx +468 -0
  398. package/editor-components/hero-section/hero-section30/hero-section30.module.scss +234 -0
  399. package/editor-components/hero-section/hero-section30/hero-section30.tsx +208 -0
  400. package/editor-components/hero-section/hero-section31/hero-section31.module.scss +468 -0
  401. package/editor-components/hero-section/hero-section31/hero-section31.tsx +1083 -0
  402. package/editor-components/hero-section/hero-section32/hero-section32.module.scss +488 -0
  403. package/editor-components/hero-section/hero-section32/hero-section32.tsx +530 -0
  404. package/editor-components/hero-section/hero-section33/hero-section33.module.scss +401 -0
  405. package/editor-components/hero-section/hero-section33/hero-section33.tsx +471 -0
  406. package/editor-components/hero-section/hero-section34/hero-section34.module.scss +384 -0
  407. package/editor-components/hero-section/hero-section34/hero-section34.tsx +465 -0
  408. package/editor-components/hero-section/hero-section35/hero-section35.module.scss +522 -0
  409. package/editor-components/hero-section/hero-section35/hero-section35.tsx +441 -0
  410. package/editor-components/hero-section/hero-section38/hero-section38.module.scss +617 -0
  411. package/editor-components/hero-section/hero-section38/hero-section38.tsx +458 -0
  412. package/editor-components/hero-section/hero-section4/hero-section4.module.scss +283 -0
  413. package/editor-components/hero-section/hero-section4/hero-section4.tsx +292 -0
  414. package/editor-components/hero-section/hero-section5/hero-section5.module.scss +178 -0
  415. package/editor-components/hero-section/hero-section5/hero-section5.tsx +159 -0
  416. package/editor-components/hero-section/hero-section6/hero-section6.module.scss +339 -0
  417. package/editor-components/hero-section/hero-section6/hero-section6.tsx +244 -0
  418. package/editor-components/hero-section/hero-section7/hero-section7.module.scss +117 -0
  419. package/editor-components/hero-section/hero-section7/hero-section7.tsx +277 -0
  420. package/editor-components/hero-section/hero-section8/hero-section8.module.scss +296 -0
  421. package/editor-components/hero-section/hero-section8/hero-section8.tsx +500 -0
  422. package/editor-components/hero-section/hero-section9/hero-section9.module.scss +292 -0
  423. package/editor-components/hero-section/hero-section9/hero-section9.tsx +536 -0
  424. package/editor-components/intro-section/intro-section1/intro-section1.module.scss +392 -0
  425. package/editor-components/intro-section/intro-section1/intro-section1.tsx +263 -0
  426. package/editor-components/intro-section/intro-section10/intro-section10.module.scss +182 -0
  427. package/editor-components/intro-section/intro-section10/intro-section10.tsx +167 -0
  428. package/editor-components/intro-section/intro-section11/intro-section11.module.scss +121 -0
  429. package/editor-components/intro-section/intro-section11/intro-section11.tsx +142 -0
  430. package/editor-components/intro-section/intro-section2/intro-section2.module.scss +125 -0
  431. package/editor-components/intro-section/intro-section2/intro-section2.tsx +147 -0
  432. package/editor-components/intro-section/intro-section3/intro-section3.module.scss +106 -0
  433. package/editor-components/intro-section/intro-section3/intro-section3.tsx +140 -0
  434. package/editor-components/intro-section/intro-section4/intro-section4.module.scss +102 -0
  435. package/editor-components/intro-section/intro-section4/intro-section4.tsx +128 -0
  436. package/editor-components/intro-section/intro-section5/intro-section5.module.scss +185 -0
  437. package/editor-components/intro-section/intro-section5/intro-section5.tsx +142 -0
  438. package/editor-components/intro-section/intro-section6/intro-section6.module.scss +219 -0
  439. package/editor-components/intro-section/intro-section6/intro-section6.tsx +269 -0
  440. package/editor-components/intro-section/intro-section7/intro-section7.module.scss +147 -0
  441. package/editor-components/intro-section/intro-section7/intro-section7.tsx +161 -0
  442. package/editor-components/intro-section/intro-section8/intro-section8.module.scss +151 -0
  443. package/editor-components/intro-section/intro-section8/intro-section8.tsx +182 -0
  444. package/editor-components/intro-section/intro-section9/intro-section9.module.scss +66 -0
  445. package/editor-components/intro-section/intro-section9/intro-section9.tsx +132 -0
  446. package/editor-components/legal/privacy-policy.module.scss +19 -0
  447. package/editor-components/legal/privacy-policy.tsx +126 -0
  448. package/editor-components/list/list1/list1.module.scss +224 -0
  449. package/editor-components/list/list1/list1.tsx +386 -0
  450. package/editor-components/list/list10/list10.module.scss +293 -0
  451. package/editor-components/list/list10/list10.tsx +240 -0
  452. package/editor-components/list/list11/list11.module.scss +164 -0
  453. package/editor-components/list/list11/list11.tsx +277 -0
  454. package/editor-components/list/list12/list12.module.scss +207 -0
  455. package/editor-components/list/list12/list12.tsx +241 -0
  456. package/editor-components/list/list2/list2.module.scss +178 -0
  457. package/editor-components/list/list2/list2.tsx +416 -0
  458. package/editor-components/list/list3/list3.module.scss +239 -0
  459. package/editor-components/list/list3/list3.tsx +337 -0
  460. package/editor-components/list/list4/list4.module.scss +243 -0
  461. package/editor-components/list/list4/list4.tsx +221 -0
  462. package/editor-components/list/list5/list5.module.scss +183 -0
  463. package/editor-components/list/list5/list5.tsx +323 -0
  464. package/editor-components/list/list6/list6.module.scss +230 -0
  465. package/editor-components/list/list6/list6.tsx +263 -0
  466. package/editor-components/list/list7/list7.module.scss +127 -0
  467. package/editor-components/list/list7/list7.tsx +178 -0
  468. package/editor-components/list/list8/list8.module.scss +146 -0
  469. package/editor-components/list/list8/list8.tsx +256 -0
  470. package/editor-components/list/list9/list9.module.scss +320 -0
  471. package/editor-components/list/list9/list9.tsx +265 -0
  472. package/editor-components/location/location1/location1.module.scss +218 -0
  473. package/editor-components/location/location1/location1.tsx +387 -0
  474. package/editor-components/location/location2/location2.module.scss +181 -0
  475. package/editor-components/location/location2/location2.tsx +507 -0
  476. package/editor-components/location/location3/location3.module.scss +118 -0
  477. package/editor-components/location/location3/location3.tsx +347 -0
  478. package/editor-components/location/location4/location4.module.scss +138 -0
  479. package/editor-components/location/location4/location4.tsx +221 -0
  480. package/editor-components/location/location5/location5.module.scss +89 -0
  481. package/editor-components/location/location5/location5.tsx +258 -0
  482. package/editor-components/location/location6/location6.module.scss +211 -0
  483. package/editor-components/location/location6/location6.tsx +476 -0
  484. package/editor-components/location/location7/location7.module.scss +245 -0
  485. package/editor-components/location/location7/location7.tsx +347 -0
  486. package/editor-components/location/themes.tsx +229 -0
  487. package/editor-components/logo-clouds/logo-comp1/logo-comp1.module.scss +36 -0
  488. package/editor-components/logo-clouds/logo-comp1/logo-comp1.tsx +119 -0
  489. package/editor-components/logo-clouds/logo-comp10/logo-comp10.module.scss +83 -0
  490. package/editor-components/logo-clouds/logo-comp10/logo-comp10.tsx +336 -0
  491. package/editor-components/logo-clouds/logo-comp2/logo-comp2.module.scss +90 -0
  492. package/editor-components/logo-clouds/logo-comp2/logo-comp2.tsx +139 -0
  493. package/editor-components/logo-clouds/logo-comp3/logo-comp3.module.scss +110 -0
  494. package/editor-components/logo-clouds/logo-comp3/logo-comp3.tsx +144 -0
  495. package/editor-components/logo-clouds/logo-comp4/logo-comp4.module.scss +96 -0
  496. package/editor-components/logo-clouds/logo-comp4/logo-comp4.tsx +151 -0
  497. package/editor-components/logo-clouds/logo-comp5/logo-comp5.module.scss +70 -0
  498. package/editor-components/logo-clouds/logo-comp5/logo-comp5.tsx +116 -0
  499. package/editor-components/logo-clouds/logo-comp6/logo-comp6.module.scss +58 -0
  500. package/editor-components/logo-clouds/logo-comp6/logo-comp6.tsx +245 -0
  501. package/editor-components/logo-clouds/logo-comp7/logo-comp7.module.scss +114 -0
  502. package/editor-components/logo-clouds/logo-comp7/logo-comp7.tsx +100 -0
  503. package/editor-components/logo-clouds/logo-comp8/logo-comp8.module.scss +116 -0
  504. package/editor-components/logo-clouds/logo-comp8/logo-comp8.tsx +275 -0
  505. package/editor-components/logo-clouds/logo-comp9/logo-comp9.module.scss +130 -0
  506. package/editor-components/logo-clouds/logo-comp9/logo-comp9.tsx +206 -0
  507. package/editor-components/modal/confirmation-modal-2/confirmation-modal-2.module.scss +384 -0
  508. package/editor-components/modal/confirmation-modal-2/confirmation-modal-2.tsx +355 -0
  509. package/editor-components/modal/confirmation-modal1/confirmationmodal1.module.scss +113 -0
  510. package/editor-components/modal/confirmation-modal1/confirmationmodal1.tsx +106 -0
  511. package/editor-components/modal/formmodal1/formmodal1.module.scss +156 -0
  512. package/editor-components/modal/formmodal1/formmodal1.tsx +563 -0
  513. package/editor-components/modal/notice-modal/notice.module.scss +92 -0
  514. package/editor-components/modal/notice-modal/notice.tsx +97 -0
  515. package/editor-components/modal/notification-modal1/notificationmodal1.module.scss +166 -0
  516. package/editor-components/modal/notification-modal1/notificationmodal1.tsx +136 -0
  517. package/editor-components/modal/notificationmodal2/notificationmodal2.module.scss +134 -0
  518. package/editor-components/modal/notificationmodal2/notificationmodal2.tsx +170 -0
  519. package/editor-components/modal/subscription-modal/subscription-modal.module.scss +151 -0
  520. package/editor-components/modal/subscription-modal/subscription-modal.tsx +141 -0
  521. package/editor-components/modal/survey-modal/survey-modal.module.scss +277 -0
  522. package/editor-components/modal/survey-modal/survey-modal.tsx +327 -0
  523. package/editor-components/modal/terms-of-use/terms-of-use.module.scss +214 -0
  524. package/editor-components/modal/terms-of-use/terms-of-use.tsx +142 -0
  525. package/editor-components/navigators/navbar1/navbar1.module.scss +633 -0
  526. package/editor-components/navigators/navbar1/navbar1.tsx +1644 -0
  527. package/editor-components/navigators/navbar10/navbar10.module.scss +961 -0
  528. package/editor-components/navigators/navbar10/navbar10.tsx +3070 -0
  529. package/editor-components/navigators/navbar2/navbar2.module.scss +559 -0
  530. package/editor-components/navigators/navbar2/navbar2.tsx +1009 -0
  531. package/editor-components/navigators/navbar3/navbar3.module.scss +583 -0
  532. package/editor-components/navigators/navbar3/navbar3.tsx +1790 -0
  533. package/editor-components/navigators/navbar4/navbar4.module.scss +708 -0
  534. package/editor-components/navigators/navbar4/navbar4.tsx +1864 -0
  535. package/editor-components/navigators/navbar5/navbar5.module.scss +415 -0
  536. package/editor-components/navigators/navbar5/navbar5.tsx +639 -0
  537. package/editor-components/navigators/navbar6/navbar6.module.scss +586 -0
  538. package/editor-components/navigators/navbar6/navbar6.tsx +1613 -0
  539. package/editor-components/navigators/navbar7/navbar7.module.scss +598 -0
  540. package/editor-components/navigators/navbar7/navbar7.tsx +1638 -0
  541. package/editor-components/navigators/navbar8/navbar8.module.scss +444 -0
  542. package/editor-components/navigators/navbar8/navbar8.tsx +637 -0
  543. package/editor-components/navigators/navbar9/navbar9.module.scss +604 -0
  544. package/editor-components/navigators/navbar9/navbar9.tsx +1610 -0
  545. package/editor-components/portfolio/portfolio1/portfolio1.module.scss +333 -0
  546. package/editor-components/portfolio/portfolio1/portfolio1.tsx +815 -0
  547. package/editor-components/portfolio/portfolio2/portfolio2.module.scss +164 -0
  548. package/editor-components/portfolio/portfolio2/portfolio2.tsx +332 -0
  549. package/editor-components/portfolio/portfolio3/portfolio3.module.scss +438 -0
  550. package/editor-components/portfolio/portfolio3/portfolio3.tsx +915 -0
  551. package/editor-components/pricing-table/pricing-table1/pricing-table1.module.scss +204 -0
  552. package/editor-components/pricing-table/pricing-table1/pricing-table1.tsx +698 -0
  553. package/editor-components/pricing-table/pricing-table2/pricing-table2.module.scss +142 -0
  554. package/editor-components/pricing-table/pricing-table2/pricing-table2.tsx +703 -0
  555. package/editor-components/pricing-table/pricing-table3/pricing-table3.module.scss +210 -0
  556. package/editor-components/pricing-table/pricing-table3/pricing-table3.tsx +430 -0
  557. package/editor-components/pricing-table/pricing-table4/pricing-table4.module.scss +170 -0
  558. package/editor-components/pricing-table/pricing-table4/pricing-table4.tsx +594 -0
  559. package/editor-components/pricing-table/pricing-table5/pricing-table5.module.scss +316 -0
  560. package/editor-components/pricing-table/pricing-table5/pricing-table5.tsx +267 -0
  561. package/editor-components/pricing-table/pricing-table6/pricing-table6.module.scss +409 -0
  562. package/editor-components/pricing-table/pricing-table6/pricing-table6.tsx +1189 -0
  563. package/editor-components/pricing-table/pricing-table7/pricing-table7.module.scss +269 -0
  564. package/editor-components/pricing-table/pricing-table7/pricing-table7.tsx +1161 -0
  565. package/editor-components/pricing-table/pricing-table8/pricing-table8.module.scss +366 -0
  566. package/editor-components/pricing-table/pricing-table8/pricing-table8.tsx +574 -0
  567. package/editor-components/pricing-table/pricing-table9/pricing-table9.module.scss +357 -0
  568. package/editor-components/pricing-table/pricing-table9/pricing-table9.tsx +857 -0
  569. package/editor-components/registerables.tsx +681 -0
  570. package/editor-components/slider/slider1/slider1.module.scss +324 -0
  571. package/editor-components/slider/slider1/slider1.tsx +254 -0
  572. package/editor-components/slider/slider10/slider10.module.scss +287 -0
  573. package/editor-components/slider/slider10/slider10.tsx +446 -0
  574. package/editor-components/slider/slider11/slider11.module.scss +216 -0
  575. package/editor-components/slider/slider11/slider11.tsx +366 -0
  576. package/editor-components/slider/slider12/slider12.module.scss +273 -0
  577. package/editor-components/slider/slider12/slider12.tsx +535 -0
  578. package/editor-components/slider/slider2/slider2.module.scss +213 -0
  579. package/editor-components/slider/slider2/slider2.tsx +331 -0
  580. package/editor-components/slider/slider3/slider3.module.scss +227 -0
  581. package/editor-components/slider/slider3/slider3.tsx +280 -0
  582. package/editor-components/slider/slider4/slider4.module.scss +221 -0
  583. package/editor-components/slider/slider4/slider4.tsx +334 -0
  584. package/editor-components/slider/slider5/slider5.module.scss +39 -0
  585. package/editor-components/slider/slider5/slider5.tsx +106 -0
  586. package/editor-components/slider/slider6/slider6.module.scss +205 -0
  587. package/editor-components/slider/slider6/slider6.tsx +337 -0
  588. package/editor-components/slider/slider7/slider7.module.scss +134 -0
  589. package/editor-components/slider/slider7/slider7.tsx +270 -0
  590. package/editor-components/slider/slider8/slider8.module.scss +580 -0
  591. package/editor-components/slider/slider8/slider8.tsx +350 -0
  592. package/editor-components/slider/slider9/slider9.module.scss +1160 -0
  593. package/editor-components/slider/slider9/slider9.tsx +556 -0
  594. package/editor-components/social/social1/social1.module.scss +229 -0
  595. package/editor-components/social/social1/social1.tsx +726 -0
  596. package/editor-components/social/social2/social2.module.scss +299 -0
  597. package/editor-components/social/social2/social2.tsx +1086 -0
  598. package/editor-components/social/social3/social3.module.scss +131 -0
  599. package/editor-components/social/social3/social3.tsx +296 -0
  600. package/editor-components/social/social4/social4.module.scss +405 -0
  601. package/editor-components/social/social4/social4.tsx +1940 -0
  602. package/editor-components/social_widget/social_widget1/social_widget1.module.scss +10 -0
  603. package/editor-components/social_widget/social_widget1/social_widget1.tsx +31 -0
  604. package/editor-components/social_widget/social_widget2/social_widget2.module.scss +10 -0
  605. package/editor-components/social_widget/social_widget2/social_widget2.tsx +35 -0
  606. package/editor-components/social_widget/social_widget3/social_widget3.module.scss +10 -0
  607. package/editor-components/social_widget/social_widget3/social_widget3.tsx +32 -0
  608. package/editor-components/social_widget/social_widget4/social_widget4.module.scss +10 -0
  609. package/editor-components/social_widget/social_widget4/social_widget4.tsx +32 -0
  610. package/editor-components/social_widget/social_widget5/social_widget5.module.scss +10 -0
  611. package/editor-components/social_widget/social_widget5/social_widget5.tsx +32 -0
  612. package/editor-components/stats/stats1/stats1.module.scss +153 -0
  613. package/editor-components/stats/stats1/stats1.tsx +279 -0
  614. package/editor-components/stats/stats10/stats10.module.scss +346 -0
  615. package/editor-components/stats/stats10/stats10.tsx +364 -0
  616. package/editor-components/stats/stats11/stats11.module.scss +167 -0
  617. package/editor-components/stats/stats11/stats11.tsx +242 -0
  618. package/editor-components/stats/stats12/stats12.module.scss +244 -0
  619. package/editor-components/stats/stats12/stats12.tsx +174 -0
  620. package/editor-components/stats/stats13/stats13.module.scss +311 -0
  621. package/editor-components/stats/stats13/stats13.tsx +432 -0
  622. package/editor-components/stats/stats14/stats14.module.scss +192 -0
  623. package/editor-components/stats/stats14/stats14.tsx +222 -0
  624. package/editor-components/stats/stats15/stats15.module.scss +174 -0
  625. package/editor-components/stats/stats15/stats15.tsx +242 -0
  626. package/editor-components/stats/stats2/stats2.module.scss +243 -0
  627. package/editor-components/stats/stats2/stats2.tsx +333 -0
  628. package/editor-components/stats/stats3/stats3.module.scss +302 -0
  629. package/editor-components/stats/stats3/stats3.tsx +212 -0
  630. package/editor-components/stats/stats4/stats4.module.scss +133 -0
  631. package/editor-components/stats/stats4/stats4.tsx +467 -0
  632. package/editor-components/stats/stats5/stats5.module.scss +104 -0
  633. package/editor-components/stats/stats5/stats5.tsx +257 -0
  634. package/editor-components/stats/stats6/stats6.module.scss +76 -0
  635. package/editor-components/stats/stats6/stats6.tsx +241 -0
  636. package/editor-components/stats/stats7/stats7.module.scss +101 -0
  637. package/editor-components/stats/stats7/stats7.tsx +184 -0
  638. package/editor-components/stats/stats8/stats8.module.scss +321 -0
  639. package/editor-components/stats/stats8/stats8.tsx +358 -0
  640. package/editor-components/stats/stats9/stats9.module.scss +282 -0
  641. package/editor-components/stats/stats9/stats9.tsx +330 -0
  642. package/editor-components/team/team-1/team1.module.scss +247 -0
  643. package/editor-components/team/team-1/team1.tsx +357 -0
  644. package/editor-components/team/team-10/team10.module.scss +307 -0
  645. package/editor-components/team/team-10/team10.tsx +510 -0
  646. package/editor-components/team/team-11/team11.module.scss +245 -0
  647. package/editor-components/team/team-11/team11.tsx +435 -0
  648. package/editor-components/team/team-12/team12.module.scss +186 -0
  649. package/editor-components/team/team-12/team12.tsx +305 -0
  650. package/editor-components/team/team-13/team13.module.scss +271 -0
  651. package/editor-components/team/team-13/team13.tsx +255 -0
  652. package/editor-components/team/team-14/team14.module.scss +203 -0
  653. package/editor-components/team/team-14/team14.tsx +202 -0
  654. package/editor-components/team/team-15/team15.module.scss +275 -0
  655. package/editor-components/team/team-15/team15.tsx +417 -0
  656. package/editor-components/team/team-16/team16.module.scss +145 -0
  657. package/editor-components/team/team-16/team16.tsx +219 -0
  658. package/editor-components/team/team-2/team2.module.scss +175 -0
  659. package/editor-components/team/team-2/team2.tsx +397 -0
  660. package/editor-components/team/team-3/team3.module.scss +251 -0
  661. package/editor-components/team/team-3/team3.tsx +380 -0
  662. package/editor-components/team/team-4/team4.module.scss +66 -0
  663. package/editor-components/team/team-4/team4.tsx +194 -0
  664. package/editor-components/team/team-5/team5.module.scss +219 -0
  665. package/editor-components/team/team-5/team5.tsx +492 -0
  666. package/editor-components/team/team-6/team6.module.scss +157 -0
  667. package/editor-components/team/team-6/team6.tsx +620 -0
  668. package/editor-components/team/team-7/team7.module.scss +211 -0
  669. package/editor-components/team/team-7/team7.tsx +333 -0
  670. package/editor-components/team/team-8/team8.module.scss +214 -0
  671. package/editor-components/team/team-8/team8.tsx +349 -0
  672. package/editor-components/team/team-9/team9.module.scss +307 -0
  673. package/editor-components/team/team-9/team9.tsx +363 -0
  674. package/editor-components/testimonials/testimonials1/testimonials1.module.scss +156 -0
  675. package/editor-components/testimonials/testimonials1/testimonials1.tsx +190 -0
  676. package/editor-components/testimonials/testimonials10/testimonials10.module.scss +281 -0
  677. package/editor-components/testimonials/testimonials10/testimonials10.tsx +360 -0
  678. package/editor-components/testimonials/testimonials11/testimonials11.module.scss +78 -0
  679. package/editor-components/testimonials/testimonials11/testimonials11.tsx +267 -0
  680. package/editor-components/testimonials/testimonials12/testimonials12.module.scss +115 -0
  681. package/editor-components/testimonials/testimonials12/testimonials12.tsx +293 -0
  682. package/editor-components/testimonials/testimonials13/testimonials13.module.scss +220 -0
  683. package/editor-components/testimonials/testimonials13/testimonials13.tsx +357 -0
  684. package/editor-components/testimonials/testimonials14/testimonials14.module.scss +216 -0
  685. package/editor-components/testimonials/testimonials14/testimonials14.tsx +364 -0
  686. package/editor-components/testimonials/testimonials15/testimonials15.module.scss +685 -0
  687. package/editor-components/testimonials/testimonials15/testimonials15.tsx +422 -0
  688. package/editor-components/testimonials/testimonials16/testimonials16.module.scss +754 -0
  689. package/editor-components/testimonials/testimonials16/testimonials16.tsx +625 -0
  690. package/editor-components/testimonials/testimonials2/testimonials2.module.scss +100 -0
  691. package/editor-components/testimonials/testimonials2/testimonials2.tsx +301 -0
  692. package/editor-components/testimonials/testimonials3/testimonials3.module.scss +37 -0
  693. package/editor-components/testimonials/testimonials3/testimonials3.tsx +148 -0
  694. package/editor-components/testimonials/testimonials4/testimonials4.module.scss +205 -0
  695. package/editor-components/testimonials/testimonials4/testimonials4.tsx +266 -0
  696. package/editor-components/testimonials/testimonials5/testimonials5.module.scss +221 -0
  697. package/editor-components/testimonials/testimonials5/testimonials5.tsx +319 -0
  698. package/editor-components/testimonials/testimonials6/testimonials6.module.scss +82 -0
  699. package/editor-components/testimonials/testimonials6/testimonials6.tsx +344 -0
  700. package/editor-components/testimonials/testimonials7/testimonials7.module.scss +316 -0
  701. package/editor-components/testimonials/testimonials7/testimonials7.tsx +248 -0
  702. package/editor-components/testimonials/testimonials8/testimonials8.module.scss +197 -0
  703. package/editor-components/testimonials/testimonials8/testimonials8.tsx +287 -0
  704. package/editor-components/testimonials/testimonials9/testimonials9.module.scss +137 -0
  705. package/editor-components/testimonials/testimonials9/testimonials9.tsx +372 -0
  706. package/index.ts +103 -0
  707. package/package.json +40 -0
  708. package/utils/css-processor.ts +131 -0
  709. package/utils/currency.ts +89 -0
@@ -0,0 +1,3361 @@
1
+ import * as React from "react";
2
+ import { Base } from "composer-tools/composer-base-components/base/base";
3
+ import styles from "./e-commerce2.module.scss";
4
+ import { BaseECommerce } from "composer-tools/editor-components/EditorComponent";
5
+ import { INPUTS } from "composer-tools/custom-hooks/input-templates";
6
+ import ComposerLink from "custom-hooks/composer-base-components/Link/link";
7
+ import { getCurrencyInfo } from "composer-tools/utils/currency";
8
+
9
+ interface ImageGallery {
10
+ sectionTitle: React.JSX.Element;
11
+ images: Image[];
12
+ }
13
+
14
+ interface PopupImage {
15
+ popupImg: { type: "image"; url: string };
16
+ }
17
+
18
+ interface ArrowItem {
19
+ nextArrow: { type: "icon"; name: string };
20
+ prevArrow: { type: "icon"; name: string };
21
+ }
22
+
23
+ interface Image {
24
+ title: React.JSX.Element;
25
+ cardImage: { type: "image"; url: string };
26
+ price: {value: string, currency: string};
27
+ leftText: React.JSX.Element;
28
+ rightText: React.JSX.Element;
29
+ bottomText: React.JSX.Element;
30
+ bottomIcon: { type: "icon"; name: string };
31
+ subTitle: React.JSX.Element;
32
+ navigateTo: string;
33
+ popupImages: PopupImage[];
34
+ }
35
+
36
+ class ECommerce2 extends BaseECommerce {
37
+ constructor(props?: any) {
38
+ super(props, styles);
39
+ this.addProp({
40
+ type: "boolean",
41
+ key: "showAll",
42
+ displayer: "Show All Category",
43
+ value: true,
44
+ });
45
+ this.addProp({
46
+ type: "string",
47
+ key: "allText",
48
+ displayer: "All Text",
49
+ value: "ALL",
50
+ });
51
+ this.addProp({
52
+ type: "array",
53
+ key: "imageGalleries",
54
+ displayer: "Categories",
55
+ value: [
56
+ {
57
+ type: "object",
58
+ key: "imageGallery",
59
+ displayer: "Category Properties",
60
+ value: [
61
+ {
62
+ type: "string",
63
+ key: "sectionTitle",
64
+ displayer: "Category Title",
65
+ value: "HOME DECOR",
66
+ },
67
+ {
68
+ type: "array",
69
+ key: "images",
70
+ displayer: "Image Gallery",
71
+ value: [
72
+ {
73
+ type: "object",
74
+ key: "image",
75
+ displayer: "Image",
76
+ value: [
77
+ {
78
+ type: "media",
79
+ key: "cardImage",
80
+ displayer: "Card Media",
81
+ additionalParams: {
82
+ availableTypes: ["image","video"],
83
+ },
84
+ value: {
85
+ type: "image",
86
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-8-600x728.jpg",
87
+ },
88
+ },
89
+ {
90
+ type: "string",
91
+ key: "title",
92
+ displayer: "Title",
93
+ value: "BASKET WITH HANDLES",
94
+ },
95
+ {
96
+ type: "currency",
97
+ key: "price",
98
+ displayer: "Price",
99
+ value:{value:"160" , currency:"USD"},
100
+ },
101
+ {
102
+ type: "string",
103
+ key: "leftText",
104
+ displayer: "Left Text",
105
+ value: "NEW",
106
+ },
107
+ {
108
+ type: "string",
109
+ key: "rightText",
110
+ displayer: "Right Text",
111
+ value: "-19%",
112
+ },
113
+ {
114
+ type: "string",
115
+ key: "bottomText",
116
+ displayer: "Bottom Text",
117
+ value: "QUICK LOOK",
118
+ },
119
+ {
120
+ type: "media",
121
+ key: "bottomIcon",
122
+ displayer: "Icon",
123
+ additionalParams: {
124
+ availableTypes: ["icon"],
125
+ },
126
+ value: {
127
+ type: "icon",
128
+ name: "RxHeartFilled",
129
+ },
130
+ },
131
+ {
132
+ type: "string",
133
+ key: "subTitle",
134
+ displayer: "Subtitle",
135
+ value: "ADD TO CART",
136
+ },
137
+ {
138
+ type: "page",
139
+ key: "navigateTo",
140
+ displayer: "Navigate To",
141
+ value: "",
142
+ },
143
+ {
144
+ type: "array",
145
+ key: "popupImages",
146
+ displayer: "Popup Medias",
147
+ value: [
148
+ {
149
+ type: "object",
150
+ key: "popupImage",
151
+ displayer: "Popup Media",
152
+ value: [
153
+ {
154
+ type: "media",
155
+ key: "popupImg",
156
+ displayer: "Popup Media ",
157
+ additionalParams: {
158
+ availableTypes: ["image","video"],
159
+ },
160
+ value: {
161
+ type: "image",
162
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-8-600x728.jpg",
163
+ },
164
+ },
165
+ ],
166
+ },
167
+ {
168
+ type: "object",
169
+ key: "popupImage",
170
+ displayer: "Popup Media",
171
+ value: [
172
+ {
173
+ type: "media",
174
+ key: "popupImg",
175
+ additionalParams: {
176
+ availableTypes: ["image","video"],
177
+ },
178
+ displayer: "Popup Media ",
179
+ value: {
180
+ type: "image",
181
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-8-gallery-1-505x505.jpg",
182
+ },
183
+ },
184
+ ],
185
+ },
186
+ {
187
+ type: "object",
188
+ key: "popupImage",
189
+ displayer: "Popup Media",
190
+ value: [
191
+ {
192
+ type: "media",
193
+ key: "popupImg",
194
+ additionalParams: {
195
+ availableTypes: ["image","video"],
196
+ },
197
+ displayer: "Popup Media",
198
+ value: {
199
+ type: "image",
200
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-8-gallery-2-505x505.jpg",
201
+ },
202
+ },
203
+ ],
204
+ },
205
+ {
206
+ type: "object",
207
+ key: "popupImage",
208
+ displayer: "Popup Media",
209
+ value: [
210
+ {
211
+ type: "media",
212
+ key: "popupImg",
213
+ additionalParams: {
214
+ availableTypes: ["image","video"],
215
+ },
216
+ displayer: "Popup Media",
217
+ value: {
218
+ type: "image",
219
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-8-gallery-3-505x505.jpg",
220
+ },
221
+ },
222
+ ],
223
+ },
224
+ {
225
+ type: "object",
226
+ key: "popupImage",
227
+ displayer: "Popup Media",
228
+ value: [
229
+ {
230
+ type: "media",
231
+ key: "popupImg",
232
+ additionalParams: {
233
+ availableTypes: ["image","video"],
234
+ },
235
+ displayer: "Popup Media",
236
+ value: {
237
+ type: "image",
238
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-8-gallery-4-505x505.jpg",
239
+ },
240
+ },
241
+ ],
242
+ },
243
+ ],
244
+ },
245
+ ],
246
+ },
247
+ {
248
+ type: "object",
249
+ key: "image",
250
+ displayer: "Image",
251
+ value: [
252
+ {
253
+ type: "media",
254
+ key: "cardImage",
255
+ displayer: "Card Media",
256
+ additionalParams: {
257
+ availableTypes: ["image","video"],
258
+ },
259
+ value: {
260
+ type: "image",
261
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-6-600x728.jpg",
262
+ },
263
+ },
264
+ {
265
+ type: "string",
266
+ key: "title",
267
+ displayer: "Title",
268
+ value: "DEPO ACCESSORY",
269
+ },
270
+ {
271
+ type: "currency",
272
+ key: "price",
273
+ displayer: "Price",
274
+ value:{value:"160" , currency:"USD"},
275
+ },
276
+ {
277
+ type: "string",
278
+ key: "leftText",
279
+ displayer: "Left Text",
280
+ value: "NEW",
281
+ },
282
+ {
283
+ type: "string",
284
+ key: "rightText",
285
+ displayer: "Right Text",
286
+ value: "-19%",
287
+ },
288
+ {
289
+ type: "string",
290
+ key: "bottomText",
291
+ displayer: "Bottom Text",
292
+ value: "QUICK LOOK",
293
+ },
294
+ {
295
+ type: "media",
296
+ key: "bottomIcon",
297
+ displayer: "Icon",
298
+ additionalParams: {
299
+ availableTypes: ["icon"],
300
+ },
301
+ value: {
302
+ type: "icon",
303
+ name: "RxHeartFilled",
304
+ },
305
+ },
306
+ {
307
+ type: "string",
308
+ key: "subTitle",
309
+ displayer: "Subtitle",
310
+ value: "ADD TO CART",
311
+ },
312
+ {
313
+ type: "page",
314
+ key: "navigateTo",
315
+ displayer: "Navigate To",
316
+ value: "",
317
+ },
318
+ {
319
+ type: "array",
320
+ key: "popupImages",
321
+ displayer: "Popup Medias",
322
+ value: [
323
+ {
324
+ type: "object",
325
+ key: "popupImage",
326
+ displayer: "Popup Media",
327
+ value: [
328
+ {
329
+ type: "media",
330
+ key: "popupImg",
331
+ additionalParams: {
332
+ availableTypes: ["image","video"],
333
+ },
334
+ displayer: "Popup Media ",
335
+ value: {
336
+ type: "image",
337
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-6-600x728.jpg",
338
+ },
339
+ },
340
+ ],
341
+ },
342
+ {
343
+ type: "object",
344
+ key: "popupImage",
345
+ displayer: "Popup Media",
346
+ value: [
347
+ {
348
+ type: "media",
349
+ key: "popupImg",
350
+ additionalParams: {
351
+ availableTypes: ["image","video"],
352
+ },
353
+ displayer: "Popup Media ",
354
+ value: {
355
+ type: "image",
356
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-6-gallery-1-505x505.jpg",
357
+ },
358
+ },
359
+ ],
360
+ },
361
+ {
362
+ type: "object",
363
+ key: "popupImage",
364
+ displayer: "Popup Media",
365
+ value: [
366
+ {
367
+ type: "media",
368
+ key: "popupImg",
369
+ additionalParams: {
370
+ availableTypes: ["image","video"],
371
+ },
372
+ displayer: "Popup Media 2",
373
+ value: {
374
+ type: "image",
375
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-6-gallery-2-505x505.jpg",
376
+ },
377
+ },
378
+ ],
379
+ },
380
+ {
381
+ type: "object",
382
+ key: "popupImage",
383
+ displayer: "Popup Media",
384
+ value: [
385
+ {
386
+ type: "media",
387
+ key: "popupImg",
388
+ additionalParams: {
389
+ availableTypes: ["image","video"],
390
+ },
391
+ displayer: "Popup Media",
392
+ value: {
393
+ type: "image",
394
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-6-gallery-3-505x505.jpg",
395
+ },
396
+ },
397
+ ],
398
+ },
399
+ {
400
+ type: "object",
401
+ key: "popupImage",
402
+ displayer: "Popup Media",
403
+ value: [
404
+ {
405
+ type: "media",
406
+ key: "popupImg",
407
+ additionalParams: {
408
+ availableTypes: ["image","video"],
409
+ },
410
+ displayer: "Popup Media",
411
+ value: {
412
+ type: "image",
413
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-6-gallery-4-505x505.jpg",
414
+ },
415
+ },
416
+ ],
417
+ },
418
+ ],
419
+ },
420
+ ],
421
+ },
422
+ {
423
+ type: "object",
424
+ key: "image",
425
+ displayer: "Image",
426
+ value: [
427
+ {
428
+ type: "media",
429
+ key: "cardImage",
430
+ displayer: "Card Media",
431
+ additionalParams: {
432
+ availableTypes: ["image","video"],
433
+ },
434
+ value: {
435
+ type: "image",
436
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-7-600x728.jpg",
437
+ },
438
+ },
439
+ {
440
+ type: "string",
441
+ key: "title",
442
+ displayer: "Title",
443
+ value: "FLOWER VASE",
444
+ },
445
+ {
446
+ type: "currency",
447
+ key: "price",
448
+ displayer: "Price",
449
+ value:{value:"160" , currency:"USD"},
450
+ },
451
+ {
452
+ type: "string",
453
+ key: "leftText",
454
+ displayer: "Left Text",
455
+ value: "NEW",
456
+ },
457
+ {
458
+ type: "string",
459
+ key: "rightText",
460
+ displayer: "Right Text",
461
+ value: "-19%",
462
+ },
463
+ {
464
+ type: "string",
465
+ key: "bottomText",
466
+ displayer: "Bottom Text",
467
+ value: "QUICK LOOK",
468
+ },
469
+ {
470
+ type: "media",
471
+ key: "bottomIcon",
472
+ displayer: "Icon",
473
+ additionalParams: {
474
+ availableTypes: ["icon"],
475
+ },
476
+ value: {
477
+ type: "icon",
478
+ name: "RxHeartFilled",
479
+ },
480
+ },
481
+ {
482
+ type: "string",
483
+ key: "subTitle",
484
+ displayer: "Subtitle",
485
+ value: "ADD TO CART",
486
+ },
487
+ {
488
+ type: "page",
489
+ key: "navigateTo",
490
+ displayer: "Navigate To",
491
+ value: "",
492
+ },
493
+ {
494
+ type: "array",
495
+ key: "popupImages",
496
+ displayer: "Popup Medias",
497
+ value: [
498
+ {
499
+ type: "object",
500
+ key: "popupImage",
501
+ displayer: "Popup Media",
502
+ value: [
503
+ {
504
+ type: "media",
505
+ key: "popupImg",
506
+ additionalParams: {
507
+ availableTypes: ["image","video"],
508
+ },
509
+ displayer: "Popup Media ",
510
+ value: {
511
+ type: "image",
512
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-7-600x728.jpg",
513
+ },
514
+ },
515
+ ],
516
+ },
517
+ {
518
+ type: "object",
519
+ key: "popupImage",
520
+ displayer: "Popup Media",
521
+ value: [
522
+ {
523
+ type: "media",
524
+ key: "popupImg",
525
+ additionalParams: {
526
+ availableTypes: ["image","video"],
527
+ },
528
+ displayer: "Popup Media ",
529
+ value: {
530
+ type: "image",
531
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-7-gallery-1-505x505.jpg",
532
+ },
533
+ },
534
+ ],
535
+ },
536
+ {
537
+ type: "object",
538
+ key: "popupImage",
539
+ displayer: "Popup Media",
540
+ value: [
541
+ {
542
+ type: "media",
543
+ key: "popupImg",
544
+ additionalParams: {
545
+ availableTypes: ["image","video"],
546
+ },
547
+ displayer: "Popup Media",
548
+ value: {
549
+ type: "image",
550
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-7-gallery-2-505x505.jpg",
551
+ },
552
+ },
553
+ ],
554
+ },
555
+ {
556
+ type: "object",
557
+ key: "popupImage",
558
+ displayer: "Popup Media",
559
+ value: [
560
+ {
561
+ type: "media",
562
+ key: "popupImg",
563
+ additionalParams: {
564
+ availableTypes: ["image","video"],
565
+ },
566
+ displayer: "Popup Media",
567
+ value: {
568
+ type: "image",
569
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-7-gallery-3-505x505.jpg",
570
+ },
571
+ },
572
+ ],
573
+ },
574
+ {
575
+ type: "object",
576
+ key: "popupImage",
577
+ displayer: "Popup Media",
578
+ value: [
579
+ {
580
+ type: "media",
581
+ key: "popupImg",
582
+ additionalParams: {
583
+ availableTypes: ["image","video"],
584
+ },
585
+ displayer: "Popup Media",
586
+ value: {
587
+ type: "image",
588
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-7-gallery-4-505x505.jpg",
589
+ },
590
+ },
591
+ ],
592
+ },
593
+ ],
594
+ },
595
+ ],
596
+ },
597
+ {
598
+ type: "object",
599
+ key: "image",
600
+ displayer: "Image",
601
+ value: [
602
+ {
603
+ type: "media",
604
+ key: "cardImage",
605
+ displayer: "Card Media",
606
+ additionalParams: {
607
+ availableTypes: ["image","video"],
608
+ },
609
+ value: {
610
+ type: "image",
611
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-5-600x728.jpg",
612
+ },
613
+ },
614
+ {
615
+ type: "string",
616
+ key: "title",
617
+ displayer: "Title",
618
+ value: "WALL CLOCK",
619
+ },
620
+ {
621
+ type: "currency",
622
+ key: "price",
623
+ displayer: "Price",
624
+ value:{value:"160" , currency:"USD"},
625
+ },
626
+ {
627
+ type: "string",
628
+ key: "leftText",
629
+ displayer: "Left Text",
630
+ value: "NEW",
631
+ },
632
+ {
633
+ type: "string",
634
+ key: "rightText",
635
+ displayer: "Right Text",
636
+ value: "-19%",
637
+ },
638
+ {
639
+ type: "string",
640
+ key: "bottomText",
641
+ displayer: "Bottom Text",
642
+ value: "QUICK LOOK",
643
+ },
644
+ {
645
+ type: "media",
646
+ key: "bottomIcon",
647
+ displayer: "Icon",
648
+ additionalParams: {
649
+ availableTypes: ["icon"],
650
+ },
651
+ value: {
652
+ type: "icon",
653
+ name: "RxHeartFilled",
654
+ },
655
+ },
656
+ {
657
+ type: "string",
658
+ key: "subTitle",
659
+ displayer: "Subtitle",
660
+ value: "ADD TO CART",
661
+ },
662
+ {
663
+ type: "page",
664
+ key: "navigateTo",
665
+ displayer: "Navigate To",
666
+ value: "",
667
+ },
668
+ {
669
+ type: "array",
670
+ key: "popupImages",
671
+ displayer: "Popup Medias",
672
+ value: [
673
+ {
674
+ type: "object",
675
+ key: "popupImage",
676
+ displayer: "Popup Media",
677
+ value: [
678
+ {
679
+ type: "media",
680
+ key: "popupImg",
681
+ additionalParams: {
682
+ availableTypes: ["image","video"],
683
+ },
684
+ displayer: "Popup Media ",
685
+ value: {
686
+ type: "image",
687
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-5-600x728.jpg",
688
+ },
689
+ },
690
+ ],
691
+ },
692
+ {
693
+ type: "object",
694
+ key: "popupImage",
695
+ displayer: "Popup Media",
696
+ value: [
697
+ {
698
+ type: "media",
699
+ key: "popupImg",
700
+ additionalParams: {
701
+ availableTypes: ["image","video"],
702
+ },
703
+ displayer: "Popup Media ",
704
+ value: {
705
+ type: "image",
706
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-5-gallery-1-505x505.jpg",
707
+ },
708
+ },
709
+ ],
710
+ },
711
+ {
712
+ type: "object",
713
+ key: "popupImage",
714
+ displayer: "Popup Media",
715
+ value: [
716
+ {
717
+ type: "media",
718
+ key: "popupImg",
719
+ additionalParams: {
720
+ availableTypes: ["image","video"],
721
+ },
722
+ displayer: "Popup Media",
723
+ value: {
724
+ type: "image",
725
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-5-gallery-2-505x505.jpg",
726
+ },
727
+ },
728
+ ],
729
+ },
730
+ {
731
+ type: "object",
732
+ key: "popupImage",
733
+ displayer: "Popup Media",
734
+ value: [
735
+ {
736
+ type: "media",
737
+ key: "popupImg",
738
+ additionalParams: {
739
+ availableTypes: ["image","video"],
740
+ },
741
+ displayer: "Popup Media",
742
+ value: {
743
+ type: "image",
744
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-5-gallery-3-505x505.jpg",
745
+ },
746
+ },
747
+ ],
748
+ },
749
+ {
750
+ type: "object",
751
+ key: "popupImage",
752
+ displayer: "Popup Media",
753
+ value: [
754
+ {
755
+ type: "media",
756
+ key: "popupImg",
757
+ additionalParams: {
758
+ availableTypes: ["image","video"],
759
+ },
760
+ displayer: "Popup Media",
761
+ value: {
762
+ type: "image",
763
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-5-gallery-4-505x505.jpg",
764
+ },
765
+ },
766
+ ],
767
+ },
768
+ ],
769
+ },
770
+ ],
771
+ },
772
+ {
773
+ type: "object",
774
+ key: "image",
775
+ displayer: "Image",
776
+ value: [
777
+ {
778
+ type: "media",
779
+ key: "cardImage",
780
+ displayer: "Card Media",
781
+ additionalParams: {
782
+ availableTypes: ["image","video"],
783
+ },
784
+ value: {
785
+ type: "image",
786
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-4-600x728.jpg",
787
+ },
788
+ },
789
+ {
790
+ type: "string",
791
+ key: "title",
792
+ displayer: "Title",
793
+ value: "NEWSPAPER STORAGE",
794
+ },
795
+ {
796
+ type: "currency",
797
+ key: "price",
798
+ displayer: "Price",
799
+ value:{value:"160" , currency:"USD"},
800
+ },
801
+ {
802
+ type: "string",
803
+ key: "leftText",
804
+ displayer: "Left Text",
805
+ value: "NEW",
806
+ },
807
+ {
808
+ type: "string",
809
+ key: "rightText",
810
+ displayer: "Right Text",
811
+ value: "-19%",
812
+ },
813
+ {
814
+ type: "string",
815
+ key: "bottomText",
816
+ displayer: "Bottom Text",
817
+ value: "QUICK LOOK",
818
+ },
819
+ {
820
+ type: "media",
821
+ key: "bottomIcon",
822
+ displayer: "Icon",
823
+ additionalParams: {
824
+ availableTypes: ["icon"],
825
+ },
826
+ value: {
827
+ type: "icon",
828
+ name: "RxHeartFilled",
829
+ },
830
+ },
831
+ {
832
+ type: "string",
833
+ key: "subTitle",
834
+ displayer: "Subtitle",
835
+ value: "ADD TO CART",
836
+ },
837
+ {
838
+ type: "page",
839
+ key: "navigateTo",
840
+ displayer: "Navigate To",
841
+ value: "",
842
+ },
843
+ {
844
+ type: "array",
845
+ key: "popupImages",
846
+ displayer: "Popup Medias",
847
+ value: [
848
+ {
849
+ type: "object",
850
+ key: "popupImage",
851
+ displayer: "Popup Media",
852
+ value: [
853
+ {
854
+ type: "media",
855
+ key: "popupImg",
856
+ additionalParams: {
857
+ availableTypes: ["image","video"],
858
+ },
859
+ displayer: "Popup Media ",
860
+ value: {
861
+ type: "image",
862
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-4-600x728.jpg",
863
+ },
864
+ },
865
+ ],
866
+ },
867
+ {
868
+ type: "object",
869
+ key: "popupImage",
870
+ displayer: "Popup Media",
871
+ value: [
872
+ {
873
+ type: "media",
874
+ key: "popupImg",
875
+ additionalParams: {
876
+ availableTypes: ["image","video"],
877
+ },
878
+ displayer: "Popup Media ",
879
+ value: {
880
+ type: "image",
881
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-4-gallery-1-505x505.jpg",
882
+ },
883
+ },
884
+ ],
885
+ },
886
+ {
887
+ type: "object",
888
+ key: "popupImage",
889
+ displayer: "Popup Media",
890
+ value: [
891
+ {
892
+ type: "media",
893
+ key: "popupImg",
894
+ additionalParams: {
895
+ availableTypes: ["image","video"],
896
+ },
897
+ displayer: "Popup Media",
898
+ value: {
899
+ type: "image",
900
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-4-gallery-2-505x505.jpg",
901
+ },
902
+ },
903
+ ],
904
+ },
905
+ {
906
+ type: "object",
907
+ key: "popupImage",
908
+ displayer: "Popup Media",
909
+ value: [
910
+ {
911
+ type: "media",
912
+ key: "popupImg",
913
+ additionalParams: {
914
+ availableTypes: ["image","video"],
915
+ },
916
+ displayer: "Popup Media",
917
+ value: {
918
+ type: "image",
919
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-4-gallery-3-505x505.jpg",
920
+ },
921
+ },
922
+ ],
923
+ },
924
+ {
925
+ type: "object",
926
+ key: "popupImage",
927
+ displayer: "Popup Media",
928
+ value: [
929
+ {
930
+ type: "media",
931
+ key: "popupImg",
932
+ additionalParams: {
933
+ availableTypes: ["image","video"],
934
+ },
935
+ displayer: "Popup Media",
936
+ value: {
937
+ type: "image",
938
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-4-gallery-4-505x505.jpg",
939
+ },
940
+ },
941
+ ],
942
+ },
943
+ ],
944
+ },
945
+ ],
946
+ },
947
+ {
948
+ type: "object",
949
+ key: "image",
950
+ displayer: "Image",
951
+ value: [
952
+ {
953
+ type: "media",
954
+ key: "cardImage",
955
+ displayer: "Card Media",
956
+ additionalParams: {
957
+ availableTypes: ["image","video"],
958
+ },
959
+ value: {
960
+ type: "image",
961
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-2-600x728.jpg",
962
+ },
963
+ },
964
+ {
965
+ type: "string",
966
+ key: "title",
967
+ displayer: "Title",
968
+ value: "POTTERY VASE",
969
+ },
970
+ {
971
+ type: "currency",
972
+ key: "price",
973
+ displayer: "Price",
974
+ value:{value:"160" , currency:"USD"},
975
+ },
976
+ {
977
+ type: "string",
978
+ key: "leftText",
979
+ displayer: "Left Text",
980
+ value: "NEW",
981
+ },
982
+ {
983
+ type: "string",
984
+ key: "rightText",
985
+ displayer: "Right Text",
986
+ value: "-19%",
987
+ },
988
+ {
989
+ type: "string",
990
+ key: "bottomText",
991
+ displayer: "Bottom Text",
992
+ value: "QUICK LOOK",
993
+ },
994
+ {
995
+ type: "media",
996
+ key: "bottomIcon",
997
+ displayer: "Icon",
998
+ additionalParams: {
999
+ availableTypes: ["icon"],
1000
+ },
1001
+ value: {
1002
+ type: "icon",
1003
+ name: "RxHeartFilled",
1004
+ },
1005
+ },
1006
+ {
1007
+ type: "string",
1008
+ key: "subTitle",
1009
+ displayer: "Subtitle",
1010
+ value: "ADD TO CART",
1011
+ },
1012
+ {
1013
+ type: "page",
1014
+ key: "navigateTo",
1015
+ displayer: "Navigate To",
1016
+ value: "",
1017
+ },
1018
+ {
1019
+ type: "array",
1020
+ key: "popupImages",
1021
+ displayer: "Popup Medias",
1022
+ value: [
1023
+ {
1024
+ type: "object",
1025
+ key: "popupImage",
1026
+ displayer: "Popup Media",
1027
+ value: [
1028
+ {
1029
+ type: "media",
1030
+ key: "popupImg",
1031
+ additionalParams: {
1032
+ availableTypes: ["image","video"],
1033
+ },
1034
+ displayer: "Popup Media ",
1035
+ value: {
1036
+ type: "image",
1037
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-2-600x728.jpg",
1038
+ },
1039
+ },
1040
+ ],
1041
+ },
1042
+ {
1043
+ type: "object",
1044
+ key: "popupImage",
1045
+ displayer: "Popup Media",
1046
+ value: [
1047
+ {
1048
+ type: "media",
1049
+ key: "popupImg",
1050
+ additionalParams: {
1051
+ availableTypes: ["image","video"],
1052
+ },
1053
+ displayer: "Popup Media ",
1054
+ value: {
1055
+ type: "image",
1056
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-2-gallery-1-505x505.jpg",
1057
+ },
1058
+ },
1059
+ ],
1060
+ },
1061
+ {
1062
+ type: "object",
1063
+ key: "popupImage",
1064
+ displayer: "Popup Media",
1065
+ value: [
1066
+ {
1067
+ type: "media",
1068
+ key: "popupImg",
1069
+ additionalParams: {
1070
+ availableTypes: ["image","video"],
1071
+ },
1072
+ displayer: "Popup Media",
1073
+ value: {
1074
+ type: "image",
1075
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-2-gallery-2-505x505.jpg",
1076
+ },
1077
+ },
1078
+ ],
1079
+ },
1080
+ {
1081
+ type: "object",
1082
+ key: "popupImage",
1083
+ displayer: "Popup Media",
1084
+ value: [
1085
+ {
1086
+ type: "media",
1087
+ key: "popupImg",
1088
+ additionalParams: {
1089
+ availableTypes: ["image","video"],
1090
+ },
1091
+ displayer: "Popup Media",
1092
+ value: {
1093
+ type: "image",
1094
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-2-gallery-3-505x505.jpg",
1095
+ },
1096
+ },
1097
+ ],
1098
+ },
1099
+ {
1100
+ type: "object",
1101
+ key: "popupImage",
1102
+ displayer: "Popup Media",
1103
+ value: [
1104
+ {
1105
+ type: "media",
1106
+ key: "popupImg",
1107
+ additionalParams: {
1108
+ availableTypes: ["image","video"],
1109
+ },
1110
+ displayer: "Popup Media",
1111
+ value: {
1112
+ type: "image",
1113
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-2-gallery-4-505x505.jpg",
1114
+ },
1115
+ },
1116
+ ],
1117
+ },
1118
+ ],
1119
+ },
1120
+ ],
1121
+ },
1122
+ {
1123
+ type: "object",
1124
+ key: "image",
1125
+ displayer: "Image",
1126
+ value: [
1127
+ {
1128
+ type: "media",
1129
+ key: "cardImage",
1130
+ displayer: "Card Media",
1131
+ additionalParams: {
1132
+ availableTypes: ["image","video"],
1133
+ },
1134
+ value: {
1135
+ type: "image",
1136
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-3-1-600x728.jpg",
1137
+ },
1138
+ },
1139
+ {
1140
+ type: "string",
1141
+ key: "title",
1142
+ displayer: "Title",
1143
+ value: "ROSE HOLDBACK",
1144
+ },
1145
+ {
1146
+ type: "currency",
1147
+ key: "price",
1148
+ displayer: "Price",
1149
+ value:{value:"160" , currency:"USD"},
1150
+ },
1151
+ {
1152
+ type: "string",
1153
+ key: "leftText",
1154
+ displayer: "Left Text",
1155
+ value: "NEW",
1156
+ },
1157
+ {
1158
+ type: "string",
1159
+ key: "rightText",
1160
+ displayer: "Right Text",
1161
+ value: "-19%",
1162
+ },
1163
+ {
1164
+ type: "string",
1165
+ key: "bottomText",
1166
+ displayer: "Bottom Text",
1167
+ value: "QUICK LOOK",
1168
+ },
1169
+ {
1170
+ type: "media",
1171
+ key: "bottomIcon",
1172
+ displayer: "Icon",
1173
+ additionalParams: {
1174
+ availableTypes: ["icon"],
1175
+ },
1176
+ value: {
1177
+ type: "icon",
1178
+ name: "RxHeartFilled",
1179
+ },
1180
+ },
1181
+ {
1182
+ type: "string",
1183
+ key: "subTitle",
1184
+ displayer: "Subtitle",
1185
+ value: "ADD TO CART",
1186
+ },
1187
+ {
1188
+ type: "page",
1189
+ key: "navigateTo",
1190
+ displayer: "Navigate To",
1191
+ value: "",
1192
+ },
1193
+ {
1194
+ type: "array",
1195
+ key: "popupImages",
1196
+ displayer: "Popup Medias",
1197
+ value: [
1198
+ {
1199
+ type: "object",
1200
+ key: "popupImage",
1201
+ displayer: "Popup Media",
1202
+ value: [
1203
+ {
1204
+ type: "media",
1205
+ key: "popupImg",
1206
+ additionalParams: {
1207
+ availableTypes: ["image","video"],
1208
+ },
1209
+ displayer: "Popup Media ",
1210
+ value: {
1211
+ type: "image",
1212
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-3-1-600x728.jpg",
1213
+ },
1214
+ },
1215
+ ],
1216
+ },
1217
+ {
1218
+ type: "object",
1219
+ key: "popupImage",
1220
+ displayer: "Popup Media",
1221
+ value: [
1222
+ {
1223
+ type: "media",
1224
+ key: "popupImg",
1225
+ additionalParams: {
1226
+ availableTypes: ["image","video"],
1227
+ },
1228
+ displayer: "Popup Media ",
1229
+ value: {
1230
+ type: "image",
1231
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-18-gallery-1-505x505.jpg",
1232
+ },
1233
+ },
1234
+ ],
1235
+ },
1236
+ {
1237
+ type: "object",
1238
+ key: "popupImage",
1239
+ displayer: "Popup Media",
1240
+ value: [
1241
+ {
1242
+ type: "media",
1243
+ key: "popupImg",
1244
+ additionalParams: {
1245
+ availableTypes: ["image","video"],
1246
+ },
1247
+ displayer: "Popup Media",
1248
+ value: {
1249
+ type: "image",
1250
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-18-gallery-2-505x505.jpg",
1251
+ },
1252
+ },
1253
+ ],
1254
+ },
1255
+ {
1256
+ type: "object",
1257
+ key: "popupImage",
1258
+ displayer: "Popup Media",
1259
+ value: [
1260
+ {
1261
+ type: "media",
1262
+ key: "popupImg",
1263
+ additionalParams: {
1264
+ availableTypes: ["image","video"],
1265
+ },
1266
+ displayer: "Popup Media",
1267
+ value: {
1268
+ type: "image",
1269
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-18-gallery-3-505x505.jpg",
1270
+ },
1271
+ },
1272
+ ],
1273
+ },
1274
+ {
1275
+ type: "object",
1276
+ key: "popupImage",
1277
+ displayer: "Popup Media",
1278
+ value: [
1279
+ {
1280
+ type: "media",
1281
+ key: "popupImg",
1282
+ additionalParams: {
1283
+ availableTypes: ["image","video"],
1284
+ },
1285
+ displayer: "Popup Media",
1286
+ value: {
1287
+ type: "image",
1288
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-18-gallery-4-505x505.jpg",
1289
+ },
1290
+ },
1291
+ ],
1292
+ },
1293
+ ],
1294
+ },
1295
+ ],
1296
+ },
1297
+ {
1298
+ type: "object",
1299
+ key: "image",
1300
+ displayer: "Image",
1301
+ value: [
1302
+ {
1303
+ type: "media",
1304
+ key: "cardImage",
1305
+ displayer: "Card Media",
1306
+ additionalParams: {
1307
+ availableTypes: ["image","video"],
1308
+ },
1309
+ value: {
1310
+ type: "image",
1311
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-1-600x728.jpg",
1312
+ },
1313
+ },
1314
+ {
1315
+ type: "string",
1316
+ key: "title",
1317
+ displayer: "Title",
1318
+ value: "TABLE LAMP",
1319
+ },
1320
+ {
1321
+ type: "currency",
1322
+ key: "price",
1323
+ displayer: "Price",
1324
+ value:{value:"160" , currency:"USD"},
1325
+ },
1326
+ {
1327
+ type: "string",
1328
+ key: "leftText",
1329
+ displayer: "Left Text",
1330
+ value: "NEW",
1331
+ },
1332
+ {
1333
+ type: "string",
1334
+ key: "rightText",
1335
+ displayer: "Right Text",
1336
+ value: "-19%",
1337
+ },
1338
+ {
1339
+ type: "string",
1340
+ key: "bottomText",
1341
+ displayer: "Bottom Text",
1342
+ value: "QUICK LOOK",
1343
+ },
1344
+ {
1345
+ type: "media",
1346
+ key: "bottomIcon",
1347
+ displayer: "Icon",
1348
+ additionalParams: {
1349
+ availableTypes: ["icon"],
1350
+ },
1351
+ value: {
1352
+ type: "icon",
1353
+ name: "RxHeartFilled",
1354
+ },
1355
+ },
1356
+ {
1357
+ type: "string",
1358
+ key: "subTitle",
1359
+ displayer: "Subtitle",
1360
+ value: "ADD TO CART",
1361
+ },
1362
+ {
1363
+ type: "page",
1364
+ key: "navigateTo",
1365
+ displayer: "Navigate To",
1366
+ value: "",
1367
+ },
1368
+ {
1369
+ type: "array",
1370
+ key: "popupImages",
1371
+ displayer: "Popup Medias",
1372
+ value: [
1373
+ {
1374
+ type: "object",
1375
+ key: "popupImage",
1376
+ displayer: "Popup Media",
1377
+ value: [
1378
+ {
1379
+ type: "media",
1380
+ key: "popupImg",
1381
+ additionalParams: {
1382
+ availableTypes: ["image","video"],
1383
+ },
1384
+ displayer: "Popup Media ",
1385
+ value: {
1386
+ type: "image",
1387
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-1-600x728.jpg",
1388
+ },
1389
+ },
1390
+ ],
1391
+ },
1392
+ {
1393
+ type: "object",
1394
+ key: "popupImage",
1395
+ displayer: "Popup Media",
1396
+ value: [
1397
+ {
1398
+ type: "media",
1399
+ key: "popupImg",
1400
+ additionalParams: {
1401
+ availableTypes: ["image","video"],
1402
+ },
1403
+ displayer: "Popup Media ",
1404
+ value: {
1405
+ type: "image",
1406
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-1-gallery-4-505x505.jpg",
1407
+ },
1408
+ },
1409
+ ],
1410
+ },
1411
+ {
1412
+ type: "object",
1413
+ key: "popupImage",
1414
+ displayer: "Popup Media",
1415
+ value: [
1416
+ {
1417
+ type: "media",
1418
+ key: "popupImg",
1419
+ additionalParams: {
1420
+ availableTypes: ["image","video"],
1421
+ },
1422
+ displayer: "Popup Media",
1423
+ value: {
1424
+ type: "image",
1425
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-1-gallery-3-505x505.jpg",
1426
+ },
1427
+ },
1428
+ ],
1429
+ },
1430
+ {
1431
+ type: "object",
1432
+ key: "popupImage",
1433
+ displayer: "Popup Media",
1434
+ value: [
1435
+ {
1436
+ type: "media",
1437
+ key: "popupImg",
1438
+ additionalParams: {
1439
+ availableTypes: ["image","video"],
1440
+ },
1441
+ displayer: "Popup Media",
1442
+ value: {
1443
+ type: "image",
1444
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-1-gallery-2-505x505.jpg",
1445
+ },
1446
+ },
1447
+ ],
1448
+ },
1449
+ {
1450
+ type: "object",
1451
+ key: "popupImage",
1452
+ displayer: "Popup Media",
1453
+ value: [
1454
+ {
1455
+ type: "media",
1456
+ key: "popupImg",
1457
+ additionalParams: {
1458
+ availableTypes: ["image","video"],
1459
+ },
1460
+ displayer: "Popup Media",
1461
+ value: {
1462
+ type: "image",
1463
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-1-gallery-1-505x505.jpg",
1464
+ },
1465
+ },
1466
+ ],
1467
+ },
1468
+ ],
1469
+ },
1470
+ ],
1471
+ },
1472
+ ],
1473
+ },
1474
+ ],
1475
+ },
1476
+ {
1477
+ type: "object",
1478
+ key: "imageGallery",
1479
+ displayer: "Category Properties",
1480
+ value: [
1481
+ {
1482
+ type: "string",
1483
+ key: "sectionTitle",
1484
+ displayer: "Category Title",
1485
+ value: "LIGHTNING",
1486
+ },
1487
+ {
1488
+ type: "array",
1489
+ key: "images",
1490
+ displayer: "Image Gallery",
1491
+ value: [
1492
+ {
1493
+ type: "object",
1494
+ key: "image",
1495
+ displayer: "Image",
1496
+ value: [
1497
+ {
1498
+ type: "media",
1499
+ key: "cardImage",
1500
+ displayer: "Card Media",
1501
+ additionalParams: {
1502
+ availableTypes: ["image","video"],
1503
+ },
1504
+ value: {
1505
+ type: "image",
1506
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-1-600x728.jpg",
1507
+ },
1508
+ },
1509
+ {
1510
+ type: "string",
1511
+ key: "title",
1512
+ displayer: "Title",
1513
+ value: "TABLE LAMP",
1514
+ },
1515
+ {
1516
+ type: "currency",
1517
+ key: "price",
1518
+ displayer: "Price",
1519
+ value:{value:"160" , currency:"USD"},
1520
+ },
1521
+ {
1522
+ type: "string",
1523
+ key: "leftText",
1524
+ displayer: "Left Text",
1525
+ value: "NEW",
1526
+ },
1527
+ {
1528
+ type: "string",
1529
+ key: "rightText",
1530
+ displayer: "Right Text",
1531
+ value: "-19%",
1532
+ },
1533
+ {
1534
+ type: "string",
1535
+ key: "bottomText",
1536
+ displayer: "Bottom Text",
1537
+ value: "QUICK LOOK",
1538
+ },
1539
+ {
1540
+ type: "media",
1541
+ key: "bottomIcon",
1542
+ displayer: "Icon",
1543
+ additionalParams: {
1544
+ availableTypes: ["icon"],
1545
+ },
1546
+ value: {
1547
+ type: "icon",
1548
+ name: "RxHeartFilled",
1549
+ },
1550
+ },
1551
+ {
1552
+ type: "string",
1553
+ key: "subTitle",
1554
+ displayer: "Subtitle",
1555
+ value: "ADD TO CART",
1556
+ },
1557
+ {
1558
+ type: "page",
1559
+ key: "navigateTo",
1560
+ displayer: "Navigate To",
1561
+ value: "",
1562
+ },
1563
+ {
1564
+ type: "array",
1565
+ key: "popupImages",
1566
+ displayer: "Popup Medias",
1567
+ value: [
1568
+ {
1569
+ type: "object",
1570
+ key: "popupImage",
1571
+ displayer: "Popup Media",
1572
+ value: [
1573
+ {
1574
+ type: "media",
1575
+ key: "popupImg",
1576
+ additionalParams: {
1577
+ availableTypes: ["image","video"],
1578
+ },
1579
+ displayer: "Popup Media ",
1580
+ value: {
1581
+ type: "image",
1582
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-1-600x728.jpg",
1583
+ },
1584
+ },
1585
+ ],
1586
+ },
1587
+ {
1588
+ type: "object",
1589
+ key: "popupImage",
1590
+ displayer: "Popup Media",
1591
+ value: [
1592
+ {
1593
+ type: "media",
1594
+ key: "popupImg",
1595
+ additionalParams: {
1596
+ availableTypes: ["image","video"],
1597
+ },
1598
+ displayer: "Popup Media ",
1599
+ value: {
1600
+ type: "image",
1601
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-1-gallery-4-505x505.jpg",
1602
+ },
1603
+ },
1604
+ ],
1605
+ },
1606
+ {
1607
+ type: "object",
1608
+ key: "popupImage",
1609
+ displayer: "Popup Media",
1610
+ value: [
1611
+ {
1612
+ type: "media",
1613
+ key: "popupImg",
1614
+ additionalParams: {
1615
+ availableTypes: ["image","video"],
1616
+ },
1617
+ displayer: "Popup Media",
1618
+ value: {
1619
+ type: "image",
1620
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-1-gallery-3-505x505.jpg",
1621
+ },
1622
+ },
1623
+ ],
1624
+ },
1625
+ {
1626
+ type: "object",
1627
+ key: "popupImage",
1628
+ displayer: "Popup Media",
1629
+ value: [
1630
+ {
1631
+ type: "media",
1632
+ key: "popupImg",
1633
+ additionalParams: {
1634
+ availableTypes: ["image","video"],
1635
+ },
1636
+ displayer: "Popup Media",
1637
+ value: {
1638
+ type: "image",
1639
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-1-gallery-2-505x505.jpg",
1640
+ },
1641
+ },
1642
+ ],
1643
+ },
1644
+ {
1645
+ type: "object",
1646
+ key: "popupImage",
1647
+ displayer: "Popup Media",
1648
+ value: [
1649
+ {
1650
+ type: "media",
1651
+ key: "popupImg",
1652
+ additionalParams: {
1653
+ availableTypes: ["image","video"],
1654
+ },
1655
+ displayer: "Popup Media",
1656
+ value: {
1657
+ type: "image",
1658
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-1-gallery-1-505x505.jpg",
1659
+ },
1660
+ },
1661
+ ],
1662
+ },
1663
+ ],
1664
+ },
1665
+ ],
1666
+ },
1667
+ ],
1668
+ },
1669
+ ],
1670
+ },
1671
+ {
1672
+ type: "object",
1673
+ key: "imageGallery",
1674
+ displayer: "Category Properties",
1675
+ value: [
1676
+ {
1677
+ type: "string",
1678
+ key: "sectionTitle",
1679
+ displayer: "Category Title",
1680
+ value: "DECORATION",
1681
+ },
1682
+ {
1683
+ type: "array",
1684
+ key: "images",
1685
+ displayer: "Image Gallery",
1686
+ value: [
1687
+ {
1688
+ type: "object",
1689
+ key: "image",
1690
+ displayer: "Image",
1691
+ value: [
1692
+ {
1693
+ type: "media",
1694
+ key: "cardImage",
1695
+ displayer: "Card Media",
1696
+ additionalParams: {
1697
+ availableTypes: ["image","video"],
1698
+ },
1699
+ value: {
1700
+ type: "image",
1701
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-8-600x728.jpg",
1702
+ },
1703
+ },
1704
+ {
1705
+ type: "string",
1706
+ key: "title",
1707
+ displayer: "Title",
1708
+ value: "BASKET WITH HANDLES",
1709
+ },
1710
+ {
1711
+ type: "currency",
1712
+ key: "price",
1713
+ displayer: "Price",
1714
+ value:{value:"160" , currency:"USD"},
1715
+ },
1716
+ {
1717
+ type: "string",
1718
+ key: "leftText",
1719
+ displayer: "Left Text",
1720
+ value: "NEW",
1721
+ },
1722
+ {
1723
+ type: "string",
1724
+ key: "rightText",
1725
+ displayer: "Right Text",
1726
+ value: "-19%",
1727
+ },
1728
+ {
1729
+ type: "string",
1730
+ key: "bottomText",
1731
+ displayer: "Bottom Text",
1732
+ value: "QUICK LOOK",
1733
+ },
1734
+ {
1735
+ type: "media",
1736
+ key: "bottomIcon",
1737
+ displayer: "Icon",
1738
+ additionalParams: {
1739
+ availableTypes: ["icon"],
1740
+ },
1741
+ value: {
1742
+ type: "icon",
1743
+ name: "RxHeartFilled",
1744
+ },
1745
+ },
1746
+ {
1747
+ type: "string",
1748
+ key: "subTitle",
1749
+ displayer: "Subtitle",
1750
+ value: "ADD TO CART",
1751
+ },
1752
+ {
1753
+ type: "page",
1754
+ key: "navigateTo",
1755
+ displayer: "Navigate To",
1756
+ value: "",
1757
+ },
1758
+ {
1759
+ type: "array",
1760
+ key: "popupImages",
1761
+ displayer: "Popup Medias",
1762
+ value: [
1763
+ {
1764
+ type: "object",
1765
+ key: "popupImage",
1766
+ displayer: "Popup Media",
1767
+ value: [
1768
+ {
1769
+ type: "media",
1770
+ key: "popupImg",
1771
+ displayer: "Popup Media ",
1772
+ additionalParams: {
1773
+ availableTypes: ["image","video"],
1774
+ },
1775
+ value: {
1776
+ type: "image",
1777
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-8-600x728.jpg",
1778
+ },
1779
+ },
1780
+ ],
1781
+ },
1782
+ {
1783
+ type: "object",
1784
+ key: "popupImage",
1785
+ displayer: "Popup Media",
1786
+ value: [
1787
+ {
1788
+ type: "media",
1789
+ key: "popupImg",
1790
+ additionalParams: {
1791
+ availableTypes: ["image","video"],
1792
+ },
1793
+ displayer: "Popup Media ",
1794
+ value: {
1795
+ type: "image",
1796
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-8-gallery-1-505x505.jpg",
1797
+ },
1798
+ },
1799
+ ],
1800
+ },
1801
+ {
1802
+ type: "object",
1803
+ key: "popupImage",
1804
+ displayer: "Popup Media",
1805
+ value: [
1806
+ {
1807
+ type: "media",
1808
+ key: "popupImg",
1809
+ additionalParams: {
1810
+ availableTypes: ["image","video"],
1811
+ },
1812
+ displayer: "Popup Media",
1813
+ value: {
1814
+ type: "image",
1815
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-8-gallery-2-505x505.jpg",
1816
+ },
1817
+ },
1818
+ ],
1819
+ },
1820
+ {
1821
+ type: "object",
1822
+ key: "popupImage",
1823
+ displayer: "Popup Media",
1824
+ value: [
1825
+ {
1826
+ type: "media",
1827
+ key: "popupImg",
1828
+ additionalParams: {
1829
+ availableTypes: ["image","video"],
1830
+ },
1831
+ displayer: "Popup Media",
1832
+ value: {
1833
+ type: "image",
1834
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-8-gallery-3-505x505.jpg",
1835
+ },
1836
+ },
1837
+ ],
1838
+ },
1839
+ {
1840
+ type: "object",
1841
+ key: "popupImage",
1842
+ displayer: "Popup Media",
1843
+ value: [
1844
+ {
1845
+ type: "media",
1846
+ key: "popupImg",
1847
+ additionalParams: {
1848
+ availableTypes: ["image","video"],
1849
+ },
1850
+ displayer: "Popup Media",
1851
+ value: {
1852
+ type: "image",
1853
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-8-gallery-4-505x505.jpg",
1854
+ },
1855
+ },
1856
+ ],
1857
+ },
1858
+ ],
1859
+ },
1860
+ ],
1861
+ },
1862
+ {
1863
+ type: "object",
1864
+ key: "image",
1865
+ displayer: "Image",
1866
+ value: [
1867
+ {
1868
+ type: "media",
1869
+ key: "cardImage",
1870
+ displayer: "Card Media",
1871
+ additionalParams: {
1872
+ availableTypes: ["image","video"],
1873
+ },
1874
+ value: {
1875
+ type: "image",
1876
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-3-1-600x728.jpg",
1877
+ },
1878
+ },
1879
+ {
1880
+ type: "string",
1881
+ key: "title",
1882
+ displayer: "Title",
1883
+ value: "ROSE HOLDBACK",
1884
+ },
1885
+ {
1886
+ type: "currency",
1887
+ key: "price",
1888
+ displayer: "Price",
1889
+ value:{value:"160" , currency:"USD"},
1890
+ },
1891
+ {
1892
+ type: "string",
1893
+ key: "leftText",
1894
+ displayer: "Left Text",
1895
+ value: "NEW",
1896
+ },
1897
+ {
1898
+ type: "string",
1899
+ key: "rightText",
1900
+ displayer: "Right Text",
1901
+ value: "-19%",
1902
+ },
1903
+ {
1904
+ type: "string",
1905
+ key: "bottomText",
1906
+ displayer: "Bottom Text",
1907
+ value: "QUICK LOOK",
1908
+ },
1909
+ {
1910
+ type: "media",
1911
+ key: "bottomIcon",
1912
+ displayer: "Icon",
1913
+ additionalParams: {
1914
+ availableTypes: ["icon"],
1915
+ },
1916
+ value: {
1917
+ type: "icon",
1918
+ name: "RxHeartFilled",
1919
+ },
1920
+ },
1921
+ {
1922
+ type: "string",
1923
+ key: "subTitle",
1924
+ displayer: "Subtitle",
1925
+ value: "ADD TO CART",
1926
+ },
1927
+ {
1928
+ type: "page",
1929
+ key: "navigateTo",
1930
+ displayer: "Navigate To",
1931
+ value: "",
1932
+ },
1933
+ {
1934
+ type: "array",
1935
+ key: "popupImages",
1936
+ displayer: "Popup Medias",
1937
+ value: [
1938
+ {
1939
+ type: "object",
1940
+ key: "popupImage",
1941
+ displayer: "Popup Media",
1942
+ value: [
1943
+ {
1944
+ type: "media",
1945
+ key: "popupImg",
1946
+ additionalParams: {
1947
+ availableTypes: ["image","video"],
1948
+ },
1949
+ displayer: "Popup Media ",
1950
+ value: {
1951
+ type: "image",
1952
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-3-1-600x728.jpg",
1953
+ },
1954
+ },
1955
+ ],
1956
+ },
1957
+ {
1958
+ type: "object",
1959
+ key: "popupImage",
1960
+ displayer: "Popup Media",
1961
+ value: [
1962
+ {
1963
+ type: "media",
1964
+ key: "popupImg",
1965
+ additionalParams: {
1966
+ availableTypes: ["image","video"],
1967
+ },
1968
+ displayer: "Popup Media ",
1969
+ value: {
1970
+ type: "image",
1971
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-18-gallery-1-505x505.jpg",
1972
+ },
1973
+ },
1974
+ ],
1975
+ },
1976
+ {
1977
+ type: "object",
1978
+ key: "popupImage",
1979
+ displayer: "Popup Media",
1980
+ value: [
1981
+ {
1982
+ type: "media",
1983
+ key: "popupImg",
1984
+ additionalParams: {
1985
+ availableTypes: ["image","video"],
1986
+ },
1987
+ displayer: "Popup Media",
1988
+ value: {
1989
+ type: "image",
1990
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-18-gallery-2-505x505.jpg",
1991
+ },
1992
+ },
1993
+ ],
1994
+ },
1995
+ {
1996
+ type: "object",
1997
+ key: "popupImage",
1998
+ displayer: "Popup Media",
1999
+ value: [
2000
+ {
2001
+ type: "media",
2002
+ key: "popupImg",
2003
+ additionalParams: {
2004
+ availableTypes: ["image","video"],
2005
+ },
2006
+ displayer: "Popup Media",
2007
+ value: {
2008
+ type: "image",
2009
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-18-gallery-3-505x505.jpg",
2010
+ },
2011
+ },
2012
+ ],
2013
+ },
2014
+ {
2015
+ type: "object",
2016
+ key: "popupImage",
2017
+ displayer: "Popup Media",
2018
+ value: [
2019
+ {
2020
+ type: "media",
2021
+ key: "popupImg",
2022
+ additionalParams: {
2023
+ availableTypes: ["image","video"],
2024
+ },
2025
+ displayer: "Popup Media",
2026
+ value: {
2027
+ type: "image",
2028
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-18-gallery-4-505x505.jpg",
2029
+ },
2030
+ },
2031
+ ],
2032
+ },
2033
+ ],
2034
+ },
2035
+ ],
2036
+ },
2037
+ ],
2038
+ },
2039
+ ],
2040
+ },
2041
+ {
2042
+ type: "object",
2043
+ key: "imageGallery",
2044
+ displayer: "Category Properties",
2045
+ value: [
2046
+ {
2047
+ type: "string",
2048
+ key: "sectionTitle",
2049
+ displayer: "Category Title",
2050
+ value: "VASES",
2051
+ },
2052
+ {
2053
+ type: "array",
2054
+ key: "images",
2055
+ displayer: "Image Gallery",
2056
+ value: [
2057
+ {
2058
+ type: "object",
2059
+ key: "image",
2060
+ displayer: "Image",
2061
+ value: [
2062
+ {
2063
+ type: "media",
2064
+ key: "cardImage",
2065
+ displayer: "Card Media",
2066
+ additionalParams: {
2067
+ availableTypes: ["image","video"],
2068
+ },
2069
+ value: {
2070
+ type: "image",
2071
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-2-600x728.jpg",
2072
+ },
2073
+ },
2074
+ {
2075
+ type: "string",
2076
+ key: "title",
2077
+ displayer: "Title",
2078
+ value: "POTTERY VASE",
2079
+ },
2080
+ {
2081
+ type: "currency",
2082
+ key: "price",
2083
+ displayer: "Price",
2084
+ value:{value:"160" , currency:"USD"},
2085
+ },
2086
+ {
2087
+ type: "string",
2088
+ key: "leftText",
2089
+ displayer: "Left Text",
2090
+ value: "NEW",
2091
+ },
2092
+ {
2093
+ type: "string",
2094
+ key: "rightText",
2095
+ displayer: "Right Text",
2096
+ value: "-19%",
2097
+ },
2098
+ {
2099
+ type: "string",
2100
+ key: "bottomText",
2101
+ displayer: "Bottom Text",
2102
+ value: "QUICK LOOK",
2103
+ },
2104
+ {
2105
+ type: "media",
2106
+ key: "bottomIcon",
2107
+ displayer: "Icon",
2108
+ additionalParams: {
2109
+ availableTypes: ["icon"],
2110
+ },
2111
+ value: {
2112
+ type: "icon",
2113
+ name: "RxHeartFilled",
2114
+ },
2115
+ },
2116
+ {
2117
+ type: "string",
2118
+ key: "subTitle",
2119
+ displayer: "Subtitle",
2120
+ value: "ADD TO CART",
2121
+ },
2122
+ {
2123
+ type: "page",
2124
+ key: "navigateTo",
2125
+ displayer: "Navigate To",
2126
+ value: "",
2127
+ },
2128
+ {
2129
+ type: "array",
2130
+ key: "popupImages",
2131
+ displayer: "Popup Medias",
2132
+ value: [
2133
+ {
2134
+ type: "object",
2135
+ key: "popupImage",
2136
+ displayer: "Popup Media",
2137
+ value: [
2138
+ {
2139
+ type: "media",
2140
+ key: "popupImg",
2141
+ additionalParams: {
2142
+ availableTypes: ["image","video"],
2143
+ },
2144
+ displayer: "Popup Media ",
2145
+ value: {
2146
+ type: "image",
2147
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-2-600x728.jpg",
2148
+ },
2149
+ },
2150
+ ],
2151
+ },
2152
+ {
2153
+ type: "object",
2154
+ key: "popupImage",
2155
+ displayer: "Popup Media",
2156
+ value: [
2157
+ {
2158
+ type: "media",
2159
+ key: "popupImg",
2160
+ additionalParams: {
2161
+ availableTypes: ["image","video"],
2162
+ },
2163
+ displayer: "Popup Media ",
2164
+ value: {
2165
+ type: "image",
2166
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-2-gallery-1-505x505.jpg",
2167
+ },
2168
+ },
2169
+ ],
2170
+ },
2171
+ {
2172
+ type: "object",
2173
+ key: "popupImage",
2174
+ displayer: "Popup Media",
2175
+ value: [
2176
+ {
2177
+ type: "media",
2178
+ key: "popupImg",
2179
+ additionalParams: {
2180
+ availableTypes: ["image","video"],
2181
+ },
2182
+ displayer: "Popup Media",
2183
+ value: {
2184
+ type: "image",
2185
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-2-gallery-2-505x505.jpg",
2186
+ },
2187
+ },
2188
+ ],
2189
+ },
2190
+ {
2191
+ type: "object",
2192
+ key: "popupImage",
2193
+ displayer: "Popup Media",
2194
+ value: [
2195
+ {
2196
+ type: "media",
2197
+ key: "popupImg",
2198
+ additionalParams: {
2199
+ availableTypes: ["image","video"],
2200
+ },
2201
+ displayer: "Popup Media",
2202
+ value: {
2203
+ type: "image",
2204
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-2-gallery-3-505x505.jpg",
2205
+ },
2206
+ },
2207
+ ],
2208
+ },
2209
+ {
2210
+ type: "object",
2211
+ key: "popupImage",
2212
+ displayer: "Popup Media",
2213
+ value: [
2214
+ {
2215
+ type: "media",
2216
+ key: "popupImg",
2217
+ additionalParams: {
2218
+ availableTypes: ["image","video"],
2219
+ },
2220
+ displayer: "Popup Media",
2221
+ value: {
2222
+ type: "image",
2223
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-2-gallery-4-505x505.jpg",
2224
+ },
2225
+ },
2226
+ ],
2227
+ },
2228
+ ],
2229
+ },
2230
+ ],
2231
+ },
2232
+ {
2233
+ type: "object",
2234
+ key: "image",
2235
+ displayer: "Image",
2236
+ value: [
2237
+ {
2238
+ type: "media",
2239
+ key: "cardImage",
2240
+ displayer: "Card Media",
2241
+ additionalParams: {
2242
+ availableTypes: ["image","video"],
2243
+ },
2244
+ value: {
2245
+ type: "image",
2246
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-7-600x728.jpg",
2247
+ },
2248
+ },
2249
+ {
2250
+ type: "string",
2251
+ key: "title",
2252
+ displayer: "Title",
2253
+ value: "FLOWER VASE",
2254
+ },
2255
+ {
2256
+ type: "currency",
2257
+ key: "price",
2258
+ displayer: "Price",
2259
+ value:{value:"160" , currency:"USD"},
2260
+ },
2261
+ {
2262
+ type: "string",
2263
+ key: "leftText",
2264
+ displayer: "Left Text",
2265
+ value: "NEW",
2266
+ },
2267
+ {
2268
+ type: "string",
2269
+ key: "rightText",
2270
+ displayer: "Right Text",
2271
+ value: "-19%",
2272
+ },
2273
+ {
2274
+ type: "string",
2275
+ key: "bottomText",
2276
+ displayer: "Bottom Text",
2277
+ value: "QUICK LOOK",
2278
+ },
2279
+ {
2280
+ type: "media",
2281
+ key: "bottomIcon",
2282
+ displayer: "Icon",
2283
+ additionalParams: {
2284
+ availableTypes: ["icon"],
2285
+ },
2286
+ value: {
2287
+ type: "icon",
2288
+ name: "RxHeartFilled",
2289
+ },
2290
+ },
2291
+ {
2292
+ type: "string",
2293
+ key: "subTitle",
2294
+ displayer: "Subtitle",
2295
+ value: "ADD TO CART",
2296
+ },
2297
+ {
2298
+ type: "page",
2299
+ key: "navigateTo",
2300
+ displayer: "Navigate To",
2301
+ value: "",
2302
+ },
2303
+ {
2304
+ type: "array",
2305
+ key: "popupImages",
2306
+ displayer: "Popup Medias",
2307
+ value: [
2308
+ {
2309
+ type: "object",
2310
+ key: "popupImage",
2311
+ displayer: "Popup Media",
2312
+ value: [
2313
+ {
2314
+ type: "media",
2315
+ key: "popupImg",
2316
+ additionalParams: {
2317
+ availableTypes: ["image","video"],
2318
+ },
2319
+ displayer: "Popup Media ",
2320
+ value: {
2321
+ type: "image",
2322
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-7-600x728.jpg",
2323
+ },
2324
+ },
2325
+ ],
2326
+ },
2327
+ {
2328
+ type: "object",
2329
+ key: "popupImage",
2330
+ displayer: "Popup Media",
2331
+ value: [
2332
+ {
2333
+ type: "media",
2334
+ key: "popupImg",
2335
+ additionalParams: {
2336
+ availableTypes: ["image","video"],
2337
+ },
2338
+ displayer: "Popup Media ",
2339
+ value: {
2340
+ type: "image",
2341
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-7-gallery-1-505x505.jpg",
2342
+ },
2343
+ },
2344
+ ],
2345
+ },
2346
+ {
2347
+ type: "object",
2348
+ key: "popupImage",
2349
+ displayer: "Popup Media",
2350
+ value: [
2351
+ {
2352
+ type: "media",
2353
+ key: "popupImg",
2354
+ additionalParams: {
2355
+ availableTypes: ["image","video"],
2356
+ },
2357
+ displayer: "Popup Media",
2358
+ value: {
2359
+ type: "image",
2360
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-7-gallery-2-505x505.jpg",
2361
+ },
2362
+ },
2363
+ ],
2364
+ },
2365
+ {
2366
+ type: "object",
2367
+ key: "popupImage",
2368
+ displayer: "Popup Media",
2369
+ value: [
2370
+ {
2371
+ type: "media",
2372
+ key: "popupImg",
2373
+ additionalParams: {
2374
+ availableTypes: ["image","video"],
2375
+ },
2376
+ displayer: "Popup Media",
2377
+ value: {
2378
+ type: "image",
2379
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-7-gallery-3-505x505.jpg",
2380
+ },
2381
+ },
2382
+ ],
2383
+ },
2384
+ {
2385
+ type: "object",
2386
+ key: "popupImage",
2387
+ displayer: "Popup Media",
2388
+ value: [
2389
+ {
2390
+ type: "media",
2391
+ key: "popupImg",
2392
+ additionalParams: {
2393
+ availableTypes: ["image","video"],
2394
+ },
2395
+ displayer: "Popup Media",
2396
+ value: {
2397
+ type: "image",
2398
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-7-gallery-4-505x505.jpg",
2399
+ },
2400
+ },
2401
+ ],
2402
+ },
2403
+ ],
2404
+ },
2405
+ ],
2406
+ },
2407
+ ],
2408
+ },
2409
+ ],
2410
+ },
2411
+ {
2412
+ type: "object",
2413
+ key: "imageGallery",
2414
+ displayer: "Category Properties",
2415
+ value: [
2416
+ {
2417
+ type: "string",
2418
+ key: "sectionTitle",
2419
+ displayer: "Category Title",
2420
+ value: "BASICS",
2421
+ },
2422
+ {
2423
+ type: "array",
2424
+ key: "images",
2425
+ displayer: "Image Gallery",
2426
+ value: [
2427
+ {
2428
+ type: "object",
2429
+ key: "image",
2430
+ displayer: "Image",
2431
+ value: [
2432
+ {
2433
+ type: "media",
2434
+ key: "cardImage",
2435
+ displayer: "Card Media",
2436
+ additionalParams: {
2437
+ availableTypes: ["image","video"],
2438
+ },
2439
+ value: {
2440
+ type: "image",
2441
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-6-600x728.jpg",
2442
+ },
2443
+ },
2444
+ {
2445
+ type: "string",
2446
+ key: "title",
2447
+ displayer: "Title",
2448
+ value: "DECO ACCESSORY",
2449
+ },
2450
+ {
2451
+ type: "currency",
2452
+ key: "price",
2453
+ displayer: "Price",
2454
+ value:{value:"160" , currency:"USD"},
2455
+ },
2456
+ {
2457
+ type: "string",
2458
+ key: "leftText",
2459
+ displayer: "Left Text",
2460
+ value: "NEW",
2461
+ },
2462
+ {
2463
+ type: "string",
2464
+ key: "rightText",
2465
+ displayer: "Right Text",
2466
+ value: "-19%",
2467
+ },
2468
+ {
2469
+ type: "string",
2470
+ key: "bottomText",
2471
+ displayer: "Bottom Text",
2472
+ value: "QUICK LOOK",
2473
+ },
2474
+ {
2475
+ type: "media",
2476
+ key: "bottomIcon",
2477
+ displayer: "Icon",
2478
+ additionalParams: {
2479
+ availableTypes: ["icon"],
2480
+ },
2481
+ value: {
2482
+ type: "icon",
2483
+ name: "RxHeartFilled",
2484
+ },
2485
+ },
2486
+ {
2487
+ type: "string",
2488
+ key: "subTitle",
2489
+ displayer: "Subtitle",
2490
+ value: "ADD TO CART",
2491
+ },
2492
+ {
2493
+ type: "page",
2494
+ key: "navigateTo",
2495
+ displayer: "Navigate To",
2496
+ value: "",
2497
+ },
2498
+ {
2499
+ type: "array",
2500
+ key: "popupImages",
2501
+ displayer: "Popup Medias",
2502
+ value: [
2503
+ {
2504
+ type: "object",
2505
+ key: "popupImage",
2506
+ displayer: "Popup Media",
2507
+ value: [
2508
+ {
2509
+ type: "media",
2510
+ key: "popupImg",
2511
+ additionalParams: {
2512
+ availableTypes: ["image","video"],
2513
+ },
2514
+ displayer: "Popup Media ",
2515
+ value: {
2516
+ type: "image",
2517
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-6-600x728.jpg",
2518
+ },
2519
+ },
2520
+ ],
2521
+ },
2522
+ {
2523
+ type: "object",
2524
+ key: "popupImage",
2525
+ displayer: "Popup Media",
2526
+ value: [
2527
+ {
2528
+ type: "media",
2529
+ key: "popupImg",
2530
+ additionalParams: {
2531
+ availableTypes: ["image","video"],
2532
+ },
2533
+ displayer: "Popup Media ",
2534
+ value: {
2535
+ type: "image",
2536
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-6-gallery-1-505x505.jpg",
2537
+ },
2538
+ },
2539
+ ],
2540
+ },
2541
+ {
2542
+ type: "object",
2543
+ key: "popupImage",
2544
+ displayer: "Popup Media",
2545
+ value: [
2546
+ {
2547
+ type: "media",
2548
+ key: "popupImg",
2549
+ additionalParams: {
2550
+ availableTypes: ["image","video"],
2551
+ },
2552
+ displayer: "Popup Media 2",
2553
+ value: {
2554
+ type: "image",
2555
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-6-gallery-2-505x505.jpg",
2556
+ },
2557
+ },
2558
+ ],
2559
+ },
2560
+ {
2561
+ type: "object",
2562
+ key: "popupImage",
2563
+ displayer: "Popup Media",
2564
+ value: [
2565
+ {
2566
+ type: "media",
2567
+ key: "popupImg",
2568
+ additionalParams: {
2569
+ availableTypes: ["image","video"],
2570
+ },
2571
+ displayer: "Popup Media",
2572
+ value: {
2573
+ type: "image",
2574
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-6-gallery-3-505x505.jpg",
2575
+ },
2576
+ },
2577
+ ],
2578
+ },
2579
+ {
2580
+ type: "object",
2581
+ key: "popupImage",
2582
+ displayer: "Popup Media",
2583
+ value: [
2584
+ {
2585
+ type: "media",
2586
+ key: "popupImg",
2587
+ additionalParams: {
2588
+ availableTypes: ["image","video"],
2589
+ },
2590
+ displayer: "Popup Media",
2591
+ value: {
2592
+ type: "image",
2593
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-6-gallery-4-505x505.jpg",
2594
+ },
2595
+ },
2596
+ ],
2597
+ },
2598
+ ],
2599
+ },
2600
+ ],
2601
+ },
2602
+ {
2603
+ type: "object",
2604
+ key: "image",
2605
+ displayer: "Image",
2606
+ value: [
2607
+ {
2608
+ type: "media",
2609
+ key: "cardImage",
2610
+ displayer: "Card Media",
2611
+ additionalParams: {
2612
+ availableTypes: ["image","video"],
2613
+ },
2614
+ value: {
2615
+ type: "image",
2616
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-5-600x728.jpg",
2617
+ },
2618
+ },
2619
+ {
2620
+ type: "string",
2621
+ key: "title",
2622
+ displayer: "Title",
2623
+ value: "WALL CLOCK",
2624
+ },
2625
+ {
2626
+ type: "currency",
2627
+ key: "price",
2628
+ displayer: "Price",
2629
+ value:{value:"160" , currency:"USD"},
2630
+ },
2631
+ {
2632
+ type: "string",
2633
+ key: "leftText",
2634
+ displayer: "Left Text",
2635
+ value: "NEW",
2636
+ },
2637
+ {
2638
+ type: "string",
2639
+ key: "rightText",
2640
+ displayer: "Right Text",
2641
+ value: "-19%",
2642
+ },
2643
+ {
2644
+ type: "string",
2645
+ key: "bottomText",
2646
+ displayer: "Bottom Text",
2647
+ value: "QUICK LOOK",
2648
+ },
2649
+ {
2650
+ type: "media",
2651
+ key: "bottomIcon",
2652
+ displayer: "Icon",
2653
+ additionalParams: {
2654
+ availableTypes: ["icon"],
2655
+ },
2656
+ value: {
2657
+ type: "icon",
2658
+ name: "RxHeartFilled",
2659
+ },
2660
+ },
2661
+ {
2662
+ type: "string",
2663
+ key: "subTitle",
2664
+ displayer: "Subtitle",
2665
+ value: "ADD TO CART",
2666
+ },
2667
+ {
2668
+ type: "page",
2669
+ key: "navigateTo",
2670
+ displayer: "Navigate To",
2671
+ value: "",
2672
+ },
2673
+ {
2674
+ type: "array",
2675
+ key: "popupImages",
2676
+ displayer: "Popup Medias",
2677
+ value: [
2678
+ {
2679
+ type: "object",
2680
+ key: "popupImage",
2681
+ displayer: "Popup Media",
2682
+ value: [
2683
+ {
2684
+ type: "media",
2685
+ key: "popupImg",
2686
+ additionalParams: {
2687
+ availableTypes: ["image","video"],
2688
+ },
2689
+ displayer: "Popup Media ",
2690
+ value: {
2691
+ type: "image",
2692
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-5-600x728.jpg",
2693
+ },
2694
+ },
2695
+ ],
2696
+ },
2697
+ {
2698
+ type: "object",
2699
+ key: "popupImage",
2700
+ displayer: "Popup Media",
2701
+ value: [
2702
+ {
2703
+ type: "media",
2704
+ key: "popupImg",
2705
+ additionalParams: {
2706
+ availableTypes: ["image","video"],
2707
+ },
2708
+ displayer: "Popup Media ",
2709
+ value: {
2710
+ type: "image",
2711
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-5-gallery-1-505x505.jpg",
2712
+ },
2713
+ },
2714
+ ],
2715
+ },
2716
+ {
2717
+ type: "object",
2718
+ key: "popupImage",
2719
+ displayer: "Popup Media",
2720
+ value: [
2721
+ {
2722
+ type: "media",
2723
+ key: "popupImg",
2724
+ additionalParams: {
2725
+ availableTypes: ["image","video"],
2726
+ },
2727
+ displayer: "Popup Media",
2728
+ value: {
2729
+ type: "image",
2730
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-5-gallery-2-505x505.jpg",
2731
+ },
2732
+ },
2733
+ ],
2734
+ },
2735
+ {
2736
+ type: "object",
2737
+ key: "popupImage",
2738
+ displayer: "Popup Media",
2739
+ value: [
2740
+ {
2741
+ type: "media",
2742
+ key: "popupImg",
2743
+ additionalParams: {
2744
+ availableTypes: ["image","video"],
2745
+ },
2746
+ displayer: "Popup Media",
2747
+ value: {
2748
+ type: "image",
2749
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-5-gallery-3-505x505.jpg",
2750
+ },
2751
+ },
2752
+ ],
2753
+ },
2754
+ {
2755
+ type: "object",
2756
+ key: "popupImage",
2757
+ displayer: "Popup Media",
2758
+ value: [
2759
+ {
2760
+ type: "media",
2761
+ key: "popupImg",
2762
+ additionalParams: {
2763
+ availableTypes: ["image","video"],
2764
+ },
2765
+ displayer: "Popup Media",
2766
+ value: {
2767
+ type: "image",
2768
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-5-gallery-4-505x505.jpg",
2769
+ },
2770
+ },
2771
+ ],
2772
+ },
2773
+ ],
2774
+ },
2775
+ ],
2776
+ },
2777
+ {
2778
+ type: "object",
2779
+ key: "image",
2780
+ displayer: "Image",
2781
+ value: [
2782
+ {
2783
+ type: "media",
2784
+ key: "cardImage",
2785
+ displayer: "Card Media",
2786
+ additionalParams: {
2787
+ availableTypes: ["image","video"],
2788
+ },
2789
+ value: {
2790
+ type: "image",
2791
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-4-600x728.jpg",
2792
+ },
2793
+ },
2794
+ {
2795
+ type: "string",
2796
+ key: "title",
2797
+ displayer: "Title",
2798
+ value: "NEWSPAPER STORAGE",
2799
+ },
2800
+ {
2801
+ type: "currency",
2802
+ key: "price",
2803
+ displayer: "Price",
2804
+ value:{value:"160" , currency:"USD"},
2805
+ },
2806
+ {
2807
+ type: "string",
2808
+ key: "leftText",
2809
+ displayer: "Left Text",
2810
+ value: "NEW",
2811
+ },
2812
+ {
2813
+ type: "string",
2814
+ key: "rightText",
2815
+ displayer: "Right Text",
2816
+ value: "-19%",
2817
+ },
2818
+ {
2819
+ type: "string",
2820
+ key: "bottomText",
2821
+ displayer: "Bottom Text",
2822
+ value: "QUICK LOOK",
2823
+ },
2824
+ {
2825
+ type: "media",
2826
+ key: "bottomIcon",
2827
+ displayer: "Icon",
2828
+ additionalParams: {
2829
+ availableTypes: ["icon"],
2830
+ },
2831
+ value: {
2832
+ type: "icon",
2833
+ name: "RxHeartFilled",
2834
+ },
2835
+ },
2836
+ {
2837
+ type: "string",
2838
+ key: "subTitle",
2839
+ displayer: "Subtitle",
2840
+ value: "ADD TO CART",
2841
+ },
2842
+ {
2843
+ type: "page",
2844
+ key: "navigateTo",
2845
+ displayer: "Navigate To",
2846
+ value: "",
2847
+ },
2848
+ {
2849
+ type: "array",
2850
+ key: "popupImages",
2851
+ displayer: "Popup Medias",
2852
+ value: [
2853
+ {
2854
+ type: "object",
2855
+ key: "popupImage",
2856
+ displayer: "Popup Media",
2857
+ value: [
2858
+ {
2859
+ type: "media",
2860
+ key: "popupImg",
2861
+ additionalParams: {
2862
+ availableTypes: ["image","video"],
2863
+ },
2864
+ displayer: "Popup Media ",
2865
+ value: {
2866
+ type: "image",
2867
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/h1-product-4-600x728.jpg",
2868
+ },
2869
+ },
2870
+ ],
2871
+ },
2872
+ {
2873
+ type: "object",
2874
+ key: "popupImage",
2875
+ displayer: "Popup Media",
2876
+ value: [
2877
+ {
2878
+ type: "media",
2879
+ key: "popupImg",
2880
+ additionalParams: {
2881
+ availableTypes: ["image","video"],
2882
+ },
2883
+ displayer: "Popup Media ",
2884
+ value: {
2885
+ type: "image",
2886
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-4-gallery-1-505x505.jpg",
2887
+ },
2888
+ },
2889
+ ],
2890
+ },
2891
+ {
2892
+ type: "object",
2893
+ key: "popupImage",
2894
+ displayer: "Popup Media",
2895
+ value: [
2896
+ {
2897
+ type: "media",
2898
+ key: "popupImg",
2899
+ additionalParams: {
2900
+ availableTypes: ["image","video"],
2901
+ },
2902
+ displayer: "Popup Media",
2903
+ value: {
2904
+ type: "image",
2905
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-4-gallery-2-505x505.jpg",
2906
+ },
2907
+ },
2908
+ ],
2909
+ },
2910
+ {
2911
+ type: "object",
2912
+ key: "popupImage",
2913
+ displayer: "Popup Media",
2914
+ value: [
2915
+ {
2916
+ type: "media",
2917
+ key: "popupImg",
2918
+ additionalParams: {
2919
+ availableTypes: ["image","video"],
2920
+ },
2921
+ displayer: "Popup Media",
2922
+ value: {
2923
+ type: "image",
2924
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-4-gallery-3-505x505.jpg",
2925
+ },
2926
+ },
2927
+ ],
2928
+ },
2929
+ {
2930
+ type: "object",
2931
+ key: "popupImage",
2932
+ displayer: "Popup Media",
2933
+ value: [
2934
+ {
2935
+ type: "media",
2936
+ key: "popupImg",
2937
+ additionalParams: {
2938
+ availableTypes: ["image","video"],
2939
+ },
2940
+ displayer: "Popup Media",
2941
+ value: {
2942
+ type: "image",
2943
+ url: "https://depot.qodeinteractive.com/wp-content/uploads/2017/01/product-4-gallery-4-505x505.jpg",
2944
+ },
2945
+ },
2946
+ ],
2947
+ },
2948
+ ],
2949
+ },
2950
+ ],
2951
+ },
2952
+ ],
2953
+ },
2954
+ ],
2955
+ },
2956
+ ],
2957
+ });
2958
+ this.addProp({
2959
+ type: "number",
2960
+ key: "imageCountInitial",
2961
+ displayer: "Image Count Initial",
2962
+ value: 4,
2963
+ });
2964
+ this.addProp({
2965
+ type: "number",
2966
+ key: "imageCount",
2967
+ displayer: "More Image Count",
2968
+ value: 4,
2969
+ });
2970
+ this.addProp({
2971
+ type: "number",
2972
+ key: "itemCount",
2973
+ displayer: "Item Count in a Row",
2974
+ value: 4,
2975
+ });
2976
+ this.addProp({
2977
+ type: "object",
2978
+ key: "arrows",
2979
+ displayer: "Arrows",
2980
+ value: [
2981
+ {
2982
+ type: "media",
2983
+ key: "prevArrow",
2984
+ displayer: "Prev Icon",
2985
+ additionalParams: {
2986
+ availableTypes: ["icon"],
2987
+ },
2988
+ value: {
2989
+ type: "icon",
2990
+ name: "GrLinkPrevious",
2991
+ },
2992
+ },
2993
+ {
2994
+ type: "media",
2995
+ key: "nextArrow",
2996
+ displayer: "Next Icon",
2997
+ additionalParams: {
2998
+ availableTypes: ["icon"],
2999
+ },
3000
+ value: {
3001
+ type: "icon",
3002
+ name: "GrLinkNext",
3003
+ },
3004
+ },
3005
+ ],
3006
+ });
3007
+ this.addProp({
3008
+ type: "media",
3009
+ key: "closeIcon",
3010
+ displayer: "Close Icon",
3011
+ additionalParams: {
3012
+ availableTypes: ["icon"],
3013
+ },
3014
+ value: {
3015
+ type: "icon",
3016
+ name: "IoIosClose",
3017
+ },
3018
+ });
3019
+ this.addProp({
3020
+ type: "boolean",
3021
+ key: "imgCounter",
3022
+ displayer: "Image Page Number",
3023
+ value: true,
3024
+ });
3025
+
3026
+ this.addProp(INPUTS.BUTTON("button", "Button", "Load More", null, null, null, "Primary"));
3027
+
3028
+ this.setComponentState("selectedIndex", 0);
3029
+ this.setComponentState("moreImages", 0);
3030
+ this.setComponentState("activePopup", null);
3031
+ this.setComponentState("popupImageIndex", 0);
3032
+ this.setComponentState(
3033
+ "imageCount",
3034
+ this.getPropValue("imageCountInitial")
3035
+ );
3036
+ }
3037
+
3038
+ static getName(): string {
3039
+ return "ECommerce 2";
3040
+ }
3041
+
3042
+ componentDidMount(): void {
3043
+ const imageGallery = this.castToObject<ImageGallery[]>("imageGalleries");
3044
+ let firstSectionTitle = null;
3045
+ if (
3046
+ imageGallery &&
3047
+ imageGallery.length > 0 &&
3048
+ imageGallery[0].sectionTitle !== undefined
3049
+ ) {
3050
+ firstSectionTitle = this.castToString(imageGallery[0].sectionTitle);
3051
+ }
3052
+ this.setComponentState("selectedSection", firstSectionTitle);
3053
+ document.addEventListener("keydown", this.handleKeyDown);
3054
+ }
3055
+ onComponentWillUnmount(): void {
3056
+ document.removeEventListener("keydown", this.handleKeyDown);
3057
+ }
3058
+ handleSectionClick(sectionTitle: React.ReactNode, index: number): void {
3059
+ this.setComponentState("selectedSection", String(sectionTitle));
3060
+ this.setComponentState("selectedIndex", index);
3061
+ this.setComponentState("imageCount", this.getPropValue("imageCount"));
3062
+ this.setComponentState("moreImages", 0);
3063
+ }
3064
+
3065
+ handleSectionClickAll(): void {
3066
+ this.setComponentState(
3067
+ "selectedSection",
3068
+ this.castToString(this.getPropValue("allText"))
3069
+ );
3070
+ this.setComponentState("selectedIndex", -1);
3071
+ this.setComponentState("moreImages", 0);
3072
+ const initialImageCount = this.getPropValue("imageCountInitial");
3073
+ this.setComponentState("imageCount", initialImageCount);
3074
+ }
3075
+
3076
+ handleButtonClick = (): void => {
3077
+ const currentMoreImages = this.getComponentState("moreImages");
3078
+ const imageCountToAdd = this.getPropValue("imageCount");
3079
+ this.setComponentState("moreImages", currentMoreImages + imageCountToAdd);
3080
+ };
3081
+
3082
+ handleQuickLookClick = (image: Image, event: React.MouseEvent): void => {
3083
+ event.preventDefault();
3084
+ this.setComponentState("activePopup", image);
3085
+ this.setComponentState("popupImageIndex", 0);
3086
+ };
3087
+
3088
+ handleNextImage = () => {
3089
+ const activePopup = this.getComponentState("activePopup");
3090
+ const currentIndex = this.getComponentState("popupImageIndex");
3091
+ const totalImages = activePopup?.popupImages?.length || 0;
3092
+
3093
+ const newIndex = currentIndex === totalImages - 1 ? 0 : currentIndex + 1;
3094
+
3095
+ this.setComponentState("popupImageIndex", newIndex);
3096
+ };
3097
+
3098
+ handlePrevImage = () => {
3099
+ const activePopup = this.getComponentState("activePopup");
3100
+ const currentIndex = this.getComponentState("popupImageIndex");
3101
+ const totalImages = activePopup?.popupImages?.length || 0;
3102
+
3103
+ const newIndex = currentIndex === 0 ? totalImages - 1 : currentIndex - 1;
3104
+
3105
+ this.setComponentState("popupImageIndex", newIndex);
3106
+ };
3107
+
3108
+ closePopup = (): void => {
3109
+ this.setComponentState("activePopup", null);
3110
+ this.setComponentState("popupImageIndex", 0);
3111
+ };
3112
+
3113
+ handleKeyDown = (event: KeyboardEvent) => {
3114
+ switch (event.key) {
3115
+ case "ArrowLeft":
3116
+ this.handlePrevImage();
3117
+ break;
3118
+ case "ArrowRight":
3119
+ this.handleNextImage();
3120
+ break;
3121
+ case "Escape":
3122
+ this.closePopup();
3123
+ break;
3124
+ default:
3125
+ break;
3126
+ }
3127
+ };
3128
+
3129
+ render() {
3130
+ const imageGallery = this.castToObject<ImageGallery[]>("imageGalleries");
3131
+
3132
+ if (
3133
+ !imageGallery ||
3134
+ imageGallery.length === 0 ||
3135
+ !imageGallery.some((gallery) => gallery.sectionTitle)
3136
+ ) {
3137
+ return null;
3138
+ }
3139
+
3140
+ const currentImageCount = this.getComponentState("imageCount");
3141
+ const initialImageCount = this.getPropValue("imageCountInitial");
3142
+ const moreImages = this.getComponentState("moreImages");
3143
+ const selectedIndex = this.getComponentState("selectedIndex");
3144
+ const allText = this.castToString(this.getPropValue("allText"));
3145
+ const arrows = this.castToObject<ArrowItem>("arrows");
3146
+ const showAll = this.getPropValue("showAll");
3147
+ const button: INPUTS.CastedButton = this.castToObject<INPUTS.CastedButton>("button");
3148
+ const imgCounter = this.getPropValue("imgCounter");
3149
+ const activePopup = this.getComponentState("activePopup");
3150
+ const imgCount = activePopup ? `${this.getComponentState("popupImageIndex") + 1} of ${activePopup?.popupImages?.length || 0}` : "";
3151
+
3152
+ if (currentImageCount !== initialImageCount + moreImages) {
3153
+ this.setComponentState("imageCount", initialImageCount + moreImages);
3154
+ }
3155
+
3156
+ const allImages = imageGallery.reduce((acc: Image[], gallery) => {
3157
+ gallery.images.forEach((image) => {
3158
+ if (!acc.some((img) => img.cardImage?.url === image.cardImage?.url)) {
3159
+ acc.push(image);
3160
+ }
3161
+ });
3162
+ return acc;
3163
+ }, []);
3164
+
3165
+ const selectedImages =
3166
+ selectedIndex === -1 ? allImages : imageGallery[selectedIndex].images;
3167
+
3168
+ const filteredImages = selectedIndex === -1
3169
+ ? allImages.slice(0, currentImageCount)
3170
+ : imageGallery[selectedIndex]?.images?.slice(0, currentImageCount) || [];
3171
+
3172
+ return (
3173
+ <Base.Container
3174
+ className={`${this.decorateCSS("container")} ${this.decorateCSS("with-overlay")}`}>
3175
+ <Base.MaxContent className={this.decorateCSS("max-content")}>
3176
+ <Base.Row className={this.decorateCSS("tab-container")}>
3177
+ {showAll && allText && (
3178
+ <Base.P
3179
+ className={`${this.decorateCSS("tab")}
3180
+ ${selectedIndex === -1 ? this.decorateCSS("active-tab") : ""}`}
3181
+ onClick={() => this.handleSectionClickAll()}>
3182
+ {this.getPropValue("allText")}
3183
+ </Base.P>
3184
+ )}
3185
+ {imageGallery.map((item, index) => {
3186
+ if (!item.sectionTitle) return null;
3187
+ return (
3188
+ <>
3189
+ {this.castToString(item.sectionTitle) && (
3190
+ <Base.P
3191
+ key={index}
3192
+ className={`${this.decorateCSS("tab")}
3193
+ ${index === selectedIndex ? this.decorateCSS("active-tab") : ""}`}
3194
+ onClick={() => this.handleSectionClick(item.sectionTitle, index)}>
3195
+ {item.sectionTitle}
3196
+ </Base.P>
3197
+ )}
3198
+ </>
3199
+ );
3200
+ })}
3201
+ </Base.Row>
3202
+ <Base.ListGrid gridCount={{ pc: this.getPropValue("itemCount") }} className={this.decorateCSS("grid")}>
3203
+ {filteredImages.map((image, imgIndex) => {
3204
+ const shouldRenderCard =
3205
+ this.castToString(image.title) ||
3206
+ image.price?.value ||
3207
+ this.castToString(image.subTitle) ||
3208
+ image.cardImage?.url ||
3209
+ this.castToString(image.bottomText) ||
3210
+ image.bottomIcon ||
3211
+ this.castToString(image.leftText) ||
3212
+ this.castToString(image.rightText);
3213
+
3214
+ return (
3215
+ shouldRenderCard && (
3216
+ <div key={imgIndex} className={this.decorateCSS("card-container")}>
3217
+ <ComposerLink path={image.navigateTo}>
3218
+ <div className={this.decorateCSS("image-container")}>
3219
+ <div className={`${this.decorateCSS("image-bottom")} animate__animated animate__fadeInUp`}>
3220
+ {this.castToString(image.bottomText) && (
3221
+ <Base.P
3222
+ className={this.decorateCSS("image-bottom-text")}
3223
+ onClick={(e: React.MouseEvent<HTMLParagraphElement>) =>
3224
+ this.handleQuickLookClick(image, e)
3225
+ }>
3226
+
3227
+ {image.bottomText}
3228
+ </Base.P>
3229
+ )}
3230
+ {image.bottomIcon && (
3231
+ <div className={this.decorateCSS("image-bottom-icon")}>
3232
+ <Base.Media value={image.bottomIcon} className={this.decorateCSS("icon")} />
3233
+ </div>
3234
+ )}
3235
+ </div>
3236
+ <div className={this.decorateCSS("image-text")}>
3237
+ {this.castToString(image.leftText) && (
3238
+ <Base.P className={this.decorateCSS("leftText")}>
3239
+ {image.leftText}
3240
+ </Base.P>
3241
+ )}
3242
+ {this.castToString(image.rightText) && (
3243
+ <Base.P className={this.decorateCSS("rightText")}>
3244
+ {image.rightText}
3245
+ </Base.P>
3246
+ )}
3247
+ </div>
3248
+ {image.cardImage?.url && (
3249
+ <Base.Media
3250
+ value={image.cardImage}
3251
+ className={this.decorateCSS("image")}
3252
+ />
3253
+ )}
3254
+ </div>
3255
+ </ComposerLink>
3256
+ <div className={this.decorateCSS("text-container")}>
3257
+ {this.castToString(image.title) && (
3258
+ <Base.H5 className={this.decorateCSS("title")}>
3259
+ {image.title}
3260
+ </Base.H5>
3261
+ )}
3262
+ {image.price?.value && (
3263
+ <Base.H5 className={this.decorateCSS("price")}>
3264
+ {image.price.value} {getCurrencyInfo(image.price.currency)?.symbol}
3265
+ </Base.H5>
3266
+ )}
3267
+ {this.castToString(image.subTitle) && (
3268
+ <Base.P
3269
+ className={`${this.decorateCSS("subTitle")} animate__animated animate__fadeInLeft`}>
3270
+ {image.subTitle}
3271
+ </Base.P>
3272
+ )}
3273
+ </div>
3274
+ </div>
3275
+ )
3276
+ );
3277
+ })}
3278
+ </Base.ListGrid>
3279
+ {currentImageCount < selectedImages.length &&
3280
+ this.castToString(button.text) && (
3281
+ <div className={this.decorateCSS("button-wrapper")}>
3282
+ <Base.Button
3283
+ buttonType={button.type}
3284
+ className={this.decorateCSS("button")}
3285
+ onClick={this.handleButtonClick}>
3286
+ <Base.P className={this.decorateCSS("button-text")}>{button.text}</Base.P>
3287
+ </Base.Button>
3288
+ </div>
3289
+ )}
3290
+ {activePopup &&
3291
+ activePopup.popupImages &&
3292
+ activePopup.popupImages.length > 0 && (
3293
+ <Base.Overlay
3294
+ className={this.decorateCSS("popup-overlay")}
3295
+ onClick={this.closePopup}
3296
+ isVisible={true}>
3297
+ <div
3298
+ className={this.decorateCSS("popup-content-wrapper")}
3299
+ onClick={this.closePopup}
3300
+ >
3301
+ <div className={this.decorateCSS("popup-image-container")}
3302
+ onClick={(e) => e.stopPropagation()}>
3303
+ <Base.Media
3304
+ value={activePopup.popupImages[this.getComponentState("popupImageIndex")]?.popupImg}
3305
+ className={this.decorateCSS("popup-image")}
3306
+ />
3307
+ {activePopup.popupImages.length > 1 && (
3308
+ <>
3309
+ {arrows.prevArrow && (
3310
+ <button
3311
+ className={this.decorateCSS("prevArrow")}
3312
+ onClick={this.handlePrevImage}>
3313
+ <Base.Media
3314
+ value={arrows.prevArrow}
3315
+ className={this.decorateCSS("arrow")}
3316
+ />
3317
+ </button>
3318
+ )}
3319
+ {arrows.nextArrow && (
3320
+ <button
3321
+ className={this.decorateCSS("nextArrow")}
3322
+ onClick={this.handleNextImage}>
3323
+ <Base.Media
3324
+ value={arrows.nextArrow}
3325
+ className={this.decorateCSS("arrow")}
3326
+ />
3327
+ </button>
3328
+ )}
3329
+ </>
3330
+ )}
3331
+ {this.getPropValue("closeIcon") && (
3332
+ <button
3333
+ className={this.decorateCSS("popup-close")}
3334
+ onClick={this.closePopup}>
3335
+ <Base.Media
3336
+ value={this.getPropValue("closeIcon")}
3337
+ className={this.decorateCSS("arrow")}
3338
+ />
3339
+ </button>
3340
+ )}
3341
+ </div>
3342
+ <div className={this.decorateCSS("image-info")}>
3343
+ <Base.P className={this.decorateCSS("image-title")}>
3344
+ {activePopup.title}
3345
+ </Base.P>
3346
+ {imgCounter && (
3347
+ <Base.P className={this.decorateCSS("image-count")}>
3348
+ {imgCount}
3349
+ </Base.P>
3350
+ )}
3351
+ </div>
3352
+ </div>
3353
+ </Base.Overlay>
3354
+ )}
3355
+ </Base.MaxContent>
3356
+ </Base.Container>
3357
+ );
3358
+ }
3359
+ }
3360
+
3361
+ export default ECommerce2;