@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,2234 @@
1
+ import * as React from "react";
2
+ import { Base } from "composer-tools/composer-base-components/base/base";
3
+ import styles from "./e-commerce4.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 { CurrencyCode, getCurrencyInfo } from "composer-tools/utils/currency";
8
+
9
+ interface SizeOption {
10
+ sizeName: string;
11
+ soldOutText: string;
12
+ navigateTo2: string;
13
+ }
14
+
15
+ interface ColorOption {
16
+ sectionColor: string;
17
+ cardImage: { type: "image"; url: string };
18
+ hoverImage: { type: "image"; url: string };
19
+ sizeOptions: SizeOption[];
20
+ isSoldOut: boolean;
21
+ }
22
+
23
+ interface RightTextItems {
24
+ cardRightText: React.JSX.Element;
25
+ cardRightTextIcon: { type: "icon"; name: string };
26
+ cardRightTextNavigate: string;
27
+ }
28
+
29
+ interface ProductCard {
30
+ cardTitle: React.JSX.Element;
31
+ cost: { value: React.JSX.Element; currency: CurrencyCode };
32
+ cardLeftText: React.JSX.Element;
33
+ colorOptions: ColorOption[];
34
+ navigateTo: string;
35
+ rightTextItems: RightTextItems[];
36
+ }
37
+
38
+ class ECommerce4 extends BaseECommerce {
39
+ constructor(props?: any) {
40
+ super(props, styles);
41
+ this.addProp({
42
+ type: "number",
43
+ key: "imageCountInitial",
44
+ displayer: "Image Count Initial",
45
+ value: 4,
46
+ });
47
+ this.addProp({
48
+ type: "number",
49
+ key: "imageCount",
50
+ displayer: "More Image Count",
51
+ value: 2,
52
+ });
53
+ this.addProp({
54
+ type: "number",
55
+ key: "itemCount",
56
+ displayer: "Item Count in a Row",
57
+ value: 4,
58
+ });
59
+ this.addProp({
60
+ type: "array",
61
+ key: "productCards",
62
+ displayer: "Product Cards",
63
+ value: [
64
+ {
65
+ type: "object",
66
+ key: "productCard",
67
+ displayer: "Product Card",
68
+ value: [
69
+ {
70
+ type: "string",
71
+ key: "cardTitle",
72
+ displayer: "Title",
73
+ value: "Loose Fit Tee",
74
+ },
75
+ {
76
+ type: "currency",
77
+ key: "cost",
78
+ displayer: "Cost",
79
+ value: { value: "120", currency: "USD" },
80
+ },
81
+ {
82
+ type: "string",
83
+ key: "cardLeftText",
84
+ displayer: "Badge Text",
85
+ value: "20% Off",
86
+ },
87
+ {
88
+ type: "page",
89
+ key: "navigateTo",
90
+ displayer: "Navigate To",
91
+ value: "",
92
+ },
93
+ {
94
+ type: "array",
95
+ key: "rightTextItems",
96
+ displayer: "Hover Items",
97
+ value: [
98
+ {
99
+ type: "object",
100
+ key: "rightTextItem",
101
+ displayer: "Right Item",
102
+ value: [
103
+ {
104
+ type: "string",
105
+ key: "cardRightText",
106
+ displayer: "Text",
107
+ value: "Add to Cart",
108
+ },
109
+ {
110
+ type: "media",
111
+ key: "cardRightTextIcon",
112
+ displayer: "Icon",
113
+ additionalParams: {
114
+ availableTypes: ["icon"],
115
+ },
116
+ value: {
117
+ type: "icon",
118
+ name: "LuShoppingBag",
119
+ },
120
+ },
121
+ {
122
+ type: "page",
123
+ key: "cardRightTextNavigate",
124
+ displayer: "Navigate To",
125
+ value: "",
126
+ },
127
+ ]
128
+ },
129
+ {
130
+ type: "object",
131
+ key: "rightTextItem",
132
+ displayer: "Right Item",
133
+ value: [
134
+ {
135
+ type: "string",
136
+ key: "cardRightText",
137
+ displayer: "Text",
138
+ value: "Add to Wishlist",
139
+ },
140
+ {
141
+ type: "media",
142
+ key: "cardRightTextIcon",
143
+ displayer: "Icon",
144
+ additionalParams: {
145
+ availableTypes: ["icon"],
146
+ },
147
+ value: {
148
+ type: "icon",
149
+ name: "RxHeart",
150
+ },
151
+ },
152
+ {
153
+ type: "page",
154
+ key: "cardRightTextNavigate",
155
+ displayer: "Navigate To",
156
+ value: "",
157
+ },
158
+ ]
159
+ },
160
+ {
161
+ type: "object",
162
+ key: "rightTextItem",
163
+ displayer: "Right Item",
164
+ value: [
165
+ {
166
+ type: "string",
167
+ key: "cardRightText",
168
+ displayer: "Text",
169
+ value: "Quick View",
170
+ },
171
+ {
172
+ type: "media",
173
+ key: "cardRightTextIcon",
174
+ displayer: "Icon",
175
+ additionalParams: {
176
+ availableTypes: ["icon"],
177
+ },
178
+ value: {
179
+ type: "icon",
180
+ name: "GrView",
181
+ },
182
+ },
183
+ {
184
+ type: "page",
185
+ key: "cardRightTextNavigate",
186
+ displayer: "Navigate To",
187
+ value: "",
188
+ },
189
+ ]
190
+ },
191
+ {
192
+ type: "object",
193
+ key: "rightTextItem",
194
+ displayer: "Right Item",
195
+ value: [
196
+ {
197
+ type: "string",
198
+ key: "cardRightText",
199
+ displayer: "Text",
200
+ value: "Add to Compare",
201
+ },
202
+ {
203
+ type: "media",
204
+ key: "cardRightTextIcon",
205
+ displayer: "Icon",
206
+ additionalParams: {
207
+ availableTypes: ["icon"],
208
+ },
209
+ value: {
210
+ type: "icon",
211
+ name: "MdCompareArrows",
212
+ },
213
+ },
214
+ {
215
+ type: "page",
216
+ key: "cardRightTextNavigate",
217
+ displayer: "Navigate To",
218
+ value: "",
219
+ },
220
+ ]
221
+ },
222
+ ]
223
+ },
224
+ {
225
+ type: "array",
226
+ key: "colorOptions",
227
+ displayer: "Color Options",
228
+ value: [
229
+ {
230
+ type: "object",
231
+ key: "colorOption",
232
+ displayer: "Color Option",
233
+ value: [
234
+ {
235
+ type: "color",
236
+ key: "sectionColor",
237
+ displayer: "Section Color",
238
+ value: "lightgrey",
239
+ },
240
+ {
241
+ type: "media",
242
+ key: "cardImage",
243
+ displayer: "Card Media",
244
+ additionalParams: {
245
+ availableTypes: ["image", "video"],
246
+ },
247
+ value: {
248
+ type: "image",
249
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-19.jpg",
250
+ },
251
+ },
252
+ {
253
+ type: "media",
254
+ key: "hoverImage",
255
+ displayer: "Hover Media",
256
+ additionalParams: {
257
+ availableTypes: ["image", "video"],
258
+ },
259
+ value: {
260
+ type: "image",
261
+ url: "https://vineta-html.vercel.app/images/products/fashion/women-grey-2.jpg",
262
+ },
263
+ },
264
+ {
265
+ type: "boolean",
266
+ key: "isSoldOut",
267
+ displayer: "Show Sold Out",
268
+ value: false,
269
+ },
270
+ {
271
+ type: "array",
272
+ key: "sizeOptions",
273
+ displayer: "Size Options",
274
+ value: [
275
+ {
276
+ type: "object",
277
+ key: "sizeOption",
278
+ displayer: "Size Option",
279
+ value: [
280
+ {
281
+ type: "string",
282
+ key: "sizeName",
283
+ displayer: "Size Name",
284
+ value: "S",
285
+ },
286
+ {
287
+ type: "page",
288
+ key: "navigateTo2",
289
+ displayer: "Navigate To",
290
+ value: ""
291
+ },
292
+ {
293
+ type: "string",
294
+ key: "soldOutText",
295
+ displayer: "Sold Out Text",
296
+ value: "Sold Out",
297
+ }
298
+ ]
299
+ },
300
+ {
301
+ type: "object",
302
+ key: "sizeOption",
303
+ displayer: "Size Option",
304
+ value: [
305
+ {
306
+ type: "string",
307
+ key: "sizeName",
308
+ displayer: "Size Name",
309
+ value: "M",
310
+ },
311
+ {
312
+ type: "page",
313
+ key: "navigateTo2",
314
+ displayer: "Navigate To",
315
+ value: ""
316
+ },
317
+ {
318
+ type: "string",
319
+ key: "soldOutText",
320
+ displayer: "Sold Out Text",
321
+ value: "Sold Out",
322
+ }
323
+ ]
324
+ },
325
+ {
326
+ type: "object",
327
+ key: "sizeOption",
328
+ displayer: "Size Option",
329
+ value: [
330
+ {
331
+ type: "string",
332
+ key: "sizeName",
333
+ displayer: "Size Name",
334
+ value: "L",
335
+ },
336
+ {
337
+ type: "page",
338
+ key: "navigateTo2",
339
+ displayer: "Navigate To",
340
+ value: ""
341
+ },
342
+ {
343
+ type: "string",
344
+ key: "soldOutText",
345
+ displayer: "Sold Out Text",
346
+ value: "Sold Out",
347
+ }
348
+ ]
349
+ },
350
+ ]
351
+ }
352
+ ]
353
+ },
354
+ {
355
+ type: "object",
356
+ key: "colorOption",
357
+ displayer: "Color Option",
358
+ value: [
359
+ {
360
+ type: "color",
361
+ key: "sectionColor",
362
+ displayer: "Section Color",
363
+ value: "orange",
364
+ },
365
+ {
366
+ type: "media",
367
+ key: "cardImage",
368
+ displayer: "Card Media",
369
+ additionalParams: {
370
+ availableTypes: ["image", "video"],
371
+ },
372
+ value: {
373
+ type: "image",
374
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-2.jpg",
375
+ },
376
+ },
377
+ {
378
+ type: "media",
379
+ key: "hoverImage",
380
+ displayer: "Hover Media",
381
+ additionalParams: {
382
+ availableTypes: ["image", "video"],
383
+ },
384
+ value: {
385
+ type: "image",
386
+ url: "https://vineta-html.vercel.app/images/products/fashion/women-grey-2.jpg",
387
+ },
388
+ },
389
+ {
390
+ type: "boolean",
391
+ key: "isSoldOut",
392
+ displayer: "Show Sold Out",
393
+ value: false,
394
+ },
395
+ {
396
+ type: "array",
397
+ key: "sizeOptions",
398
+ displayer: "Size Options",
399
+ value: [
400
+ {
401
+ type: "object",
402
+ key: "sizeOption",
403
+ displayer: "Size Option",
404
+ value: [
405
+ {
406
+ type: "string",
407
+ key: "sizeName",
408
+ displayer: "Size Name",
409
+ value: "S",
410
+ },
411
+ {
412
+ type: "page",
413
+ key: "navigateTo2",
414
+ displayer: "Navigate To",
415
+ value: ""
416
+ },
417
+ {
418
+ type: "string",
419
+ key: "soldOutText",
420
+ displayer: "Sold Out Text",
421
+ value: "Sold Out",
422
+ }
423
+ ]
424
+ },
425
+ {
426
+ type: "object",
427
+ key: "sizeOption",
428
+ displayer: "Size Option",
429
+ value: [
430
+ {
431
+ type: "string",
432
+ key: "sizeName",
433
+ displayer: "Size Name",
434
+ value: "M",
435
+ },
436
+ {
437
+ type: "page",
438
+ key: "navigateTo2",
439
+ displayer: "Navigate To",
440
+ value: ""
441
+ },
442
+ {
443
+ type: "string",
444
+ key: "soldOutText",
445
+ displayer: "Sold Out Text",
446
+ value: "Sold Out",
447
+ }
448
+ ]
449
+ },
450
+ {
451
+ type: "object",
452
+ key: "sizeOption",
453
+ displayer: "Size Option",
454
+ value: [
455
+ {
456
+ type: "string",
457
+ key: "sizeName",
458
+ displayer: "Size Name",
459
+ value: "L",
460
+ },
461
+ {
462
+ type: "page",
463
+ key: "navigateTo2",
464
+ displayer: "Navigate To",
465
+ value: ""
466
+ },
467
+ {
468
+ type: "string",
469
+ key: "soldOutText",
470
+ displayer: "Sold Out Text",
471
+ value: "Sold Out",
472
+ }
473
+ ]
474
+ },
475
+ ]
476
+ }
477
+ ]
478
+ },
479
+ {
480
+ type: "object",
481
+ key: "colorOption",
482
+ displayer: "Color Option",
483
+ value: [
484
+ {
485
+ type: "color",
486
+ key: "sectionColor",
487
+ displayer: "Section Color",
488
+ value: "brown",
489
+ },
490
+ {
491
+ type: "media",
492
+ key: "cardImage",
493
+ displayer: "Card Media",
494
+ additionalParams: {
495
+ availableTypes: ["image", "video"],
496
+ },
497
+ value: {
498
+ type: "image",
499
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-5.jpg",
500
+ },
501
+ },
502
+ {
503
+ type: "media",
504
+ key: "hoverImage",
505
+ displayer: "Hover Media",
506
+ additionalParams: {
507
+ availableTypes: ["image", "video"],
508
+ },
509
+ value: {
510
+ type: "image",
511
+ url: "https://vineta-html.vercel.app/images/products/fashion/women-grey-2.jpg",
512
+ },
513
+ },
514
+ {
515
+ type: "boolean",
516
+ key: "isSoldOut",
517
+ displayer: "Show Sold Out",
518
+ value: true,
519
+ },
520
+ {
521
+ type: "array",
522
+ key: "sizeOptions",
523
+ displayer: "Size Options",
524
+ value: [
525
+ {
526
+ type: "object",
527
+ key: "sizeOption",
528
+ displayer: "Size Option",
529
+ value: [
530
+ {
531
+ type: "string",
532
+ key: "sizeName",
533
+ displayer: "Size Name",
534
+ value: "S",
535
+ },
536
+ {
537
+ type: "page",
538
+ key: "navigateTo2",
539
+ displayer: "Navigate To",
540
+ value: ""
541
+ },
542
+ {
543
+ type: "string",
544
+ key: "soldOutText",
545
+ displayer: "Sold Out Text",
546
+ value: "Sold Out",
547
+ }
548
+ ]
549
+ },
550
+ {
551
+ type: "object",
552
+ key: "sizeOption",
553
+ displayer: "Size Option",
554
+ value: [
555
+ {
556
+ type: "string",
557
+ key: "sizeName",
558
+ displayer: "Size Name",
559
+ value: "M",
560
+ },
561
+ {
562
+ type: "page",
563
+ key: "navigateTo2",
564
+ displayer: "Navigate To",
565
+ value: ""
566
+ },
567
+ {
568
+ type: "string",
569
+ key: "soldOutText",
570
+ displayer: "Sold Out Text",
571
+ value: "Sold Out",
572
+ }
573
+ ]
574
+ },
575
+ {
576
+ type: "object",
577
+ key: "sizeOption",
578
+ displayer: "Size Option",
579
+ value: [
580
+ {
581
+ type: "string",
582
+ key: "sizeName",
583
+ displayer: "Size Name",
584
+ value: "L",
585
+ },
586
+ {
587
+ type: "page",
588
+ key: "navigateTo2",
589
+ displayer: "Navigate To",
590
+ value: ""
591
+ },
592
+ {
593
+ type: "string",
594
+ key: "soldOutText",
595
+ displayer: "Sold Out Text",
596
+ value: "Sold Out",
597
+ }
598
+ ]
599
+ },
600
+ ]
601
+ }
602
+ ]
603
+ },
604
+ ]
605
+ }
606
+ ]
607
+ },
608
+ {
609
+ type: "object",
610
+ key: "productCard",
611
+ displayer: "Product Card",
612
+ value: [
613
+ {
614
+ type: "string",
615
+ key: "cardTitle",
616
+ displayer: "Title",
617
+ value: "Regular Fit Pima Cotton Polo Shirt",
618
+ },
619
+ {
620
+ type: "currency",
621
+ key: "cost",
622
+ displayer: "Cost",
623
+ value: { value: "130", currency: "USD" },
624
+ },
625
+ {
626
+ type: "string",
627
+ key: "cardLeftText",
628
+ displayer: "Badge Text",
629
+ value: "20% Off",
630
+ },
631
+ {
632
+ type: "page",
633
+ key: "navigateTo",
634
+ displayer: "Navigate To",
635
+ value: "",
636
+ },
637
+ {
638
+ type: "array",
639
+ key: "rightTextItems",
640
+ displayer: "Hover Items",
641
+ value: [
642
+ {
643
+ type: "object",
644
+ key: "rightTextItem",
645
+ displayer: "Right Item",
646
+ value: [
647
+ {
648
+ type: "string",
649
+ key: "cardRightText",
650
+ displayer: "Text",
651
+ value: "Add to Cart",
652
+ },
653
+ {
654
+ type: "media",
655
+ key: "cardRightTextIcon",
656
+ displayer: "Icon",
657
+ additionalParams: {
658
+ availableTypes: ["icon"],
659
+ },
660
+ value: {
661
+ type: "icon",
662
+ name: "LuShoppingBag",
663
+ },
664
+ },
665
+ {
666
+ type: "page",
667
+ key: "cardRightTextNavigate",
668
+ displayer: "Navigate To",
669
+ value: "",
670
+ },
671
+ ]
672
+ },
673
+ {
674
+ type: "object",
675
+ key: "rightTextItem",
676
+ displayer: "Right Item",
677
+ value: [
678
+ {
679
+ type: "string",
680
+ key: "cardRightText",
681
+ displayer: "Text",
682
+ value: "Add to Wishlist",
683
+ },
684
+ {
685
+ type: "media",
686
+ key: "cardRightTextIcon",
687
+ displayer: "Icon",
688
+ additionalParams: {
689
+ availableTypes: ["icon"],
690
+ },
691
+ value: {
692
+ type: "icon",
693
+ name: "RxHeart",
694
+ },
695
+ },
696
+ {
697
+ type: "page",
698
+ key: "cardRightTextNavigate",
699
+ displayer: "Navigate To",
700
+ value: "",
701
+ },
702
+ ]
703
+ },
704
+ {
705
+ type: "object",
706
+ key: "rightTextItem",
707
+ displayer: "Right Item",
708
+ value: [
709
+ {
710
+ type: "string",
711
+ key: "cardRightText",
712
+ displayer: "Text",
713
+ value: "Quick View",
714
+ },
715
+ {
716
+ type: "media",
717
+ key: "cardRightTextIcon",
718
+ displayer: "Icon",
719
+ additionalParams: {
720
+ availableTypes: ["icon"],
721
+ },
722
+ value: {
723
+ type: "icon",
724
+ name: "GrView",
725
+ },
726
+ },
727
+ {
728
+ type: "page",
729
+ key: "cardRightTextNavigate",
730
+ displayer: "Navigate To",
731
+ value: "",
732
+ },
733
+ ]
734
+ },
735
+ {
736
+ type: "object",
737
+ key: "rightTextItem",
738
+ displayer: "Right Item",
739
+ value: [
740
+ {
741
+ type: "string",
742
+ key: "cardRightText",
743
+ displayer: "Text",
744
+ value: "Add to Compare",
745
+ },
746
+ {
747
+ type: "media",
748
+ key: "cardRightTextIcon",
749
+ displayer: "Icon",
750
+ additionalParams: {
751
+ availableTypes: ["icon"],
752
+ },
753
+ value: {
754
+ type: "icon",
755
+ name: "MdCompareArrows",
756
+ },
757
+ },
758
+ {
759
+ type: "page",
760
+ key: "cardRightTextNavigate",
761
+ displayer: "Navigate To",
762
+ value: "",
763
+ },
764
+ ]
765
+ },
766
+ ]
767
+ },
768
+ {
769
+ type: "array",
770
+ key: "colorOptions",
771
+ displayer: "Color Options",
772
+ value: [
773
+ {
774
+ type: "object",
775
+ key: "colorOption",
776
+ displayer: "Color Option",
777
+ value: [
778
+ {
779
+ type: "color",
780
+ key: "sectionColor",
781
+ displayer: "Section Color",
782
+ value: "lightblue",
783
+ },
784
+ {
785
+ type: "media",
786
+ key: "cardImage",
787
+ displayer: "Card Media",
788
+ additionalParams: {
789
+ availableTypes: ["image", "video"],
790
+ },
791
+ value: {
792
+ type: "image",
793
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-2.jpg",
794
+ },
795
+ },
796
+ {
797
+ type: "media",
798
+ key: "hoverImage",
799
+ displayer: "Hover Media",
800
+ additionalParams: {
801
+ availableTypes: ["image", "video"],
802
+ },
803
+ value: {
804
+ type: "image",
805
+ url: "https://vineta-html.vercel.app/images/products/fashion/women-grey-2.jpg",
806
+ },
807
+ },
808
+ {
809
+ type: "boolean",
810
+ key: "isSoldOut",
811
+ displayer: "Show Sold Out",
812
+ value: true,
813
+ },
814
+ {
815
+ type: "array",
816
+ key: "sizeOptions",
817
+ displayer: "Size Options",
818
+ value: [
819
+ {
820
+ type: "object",
821
+ key: "sizeOption",
822
+ displayer: "Size Option",
823
+ value: [
824
+ {
825
+ type: "string",
826
+ key: "sizeName",
827
+ displayer: "Size Name",
828
+ value: "M",
829
+ },
830
+ {
831
+ type: "page",
832
+ key: "navigateTo2",
833
+ displayer: "Navigate To",
834
+ value: ""
835
+ },
836
+ {
837
+ type: "string",
838
+ key: "soldOutText",
839
+ displayer: "Sold Out Text",
840
+ value: "Sold Out",
841
+ }
842
+ ]
843
+ },
844
+ {
845
+ type: "object",
846
+ key: "sizeOption",
847
+ displayer: "Size Option",
848
+ value: [
849
+ {
850
+ type: "string",
851
+ key: "sizeName",
852
+ displayer: "Size Name",
853
+ value: "L",
854
+ },
855
+ {
856
+ type: "page",
857
+ key: "navigateTo2",
858
+ displayer: "Navigate To",
859
+ value: ""
860
+ },
861
+ {
862
+ type: "string",
863
+ key: "soldOutText",
864
+ displayer: "Sold Out Text",
865
+ value: "Sold Out",
866
+ }
867
+ ]
868
+ }
869
+ ]
870
+ }
871
+ ]
872
+ },
873
+ ]
874
+ }
875
+ ]
876
+ },
877
+ {
878
+ type: "object",
879
+ key: "productCard",
880
+ displayer: "Product Card",
881
+ value: [
882
+ {
883
+ type: "string",
884
+ key: "cardTitle",
885
+ displayer: "Title",
886
+ value: "Long Regular Fit Tee",
887
+ },
888
+ {
889
+ type: "currency",
890
+ key: "cost",
891
+ displayer: "Cost",
892
+ value: { value: "60", currency: "USD" },
893
+ },
894
+ {
895
+ type: "string",
896
+ key: "cardLeftText",
897
+ displayer: "Badge Text",
898
+ value: "20% Off",
899
+ },
900
+ {
901
+ type: "page",
902
+ key: "navigateTo",
903
+ displayer: "Navigate To",
904
+ value: "",
905
+ },
906
+ {
907
+ type: "array",
908
+ key: "rightTextItems",
909
+ displayer: "Hover Items",
910
+ value: [
911
+ {
912
+ type: "object",
913
+ key: "rightTextItem",
914
+ displayer: "Right Item",
915
+ value: [
916
+ {
917
+ type: "string",
918
+ key: "cardRightText",
919
+ displayer: "Text",
920
+ value: "Add to Cart",
921
+ },
922
+ {
923
+ type: "media",
924
+ key: "cardRightTextIcon",
925
+ displayer: "Icon",
926
+ additionalParams: {
927
+ availableTypes: ["icon"],
928
+ },
929
+ value: {
930
+ type: "icon",
931
+ name: "LuShoppingBag",
932
+ },
933
+ },
934
+ {
935
+ type: "page",
936
+ key: "cardRightTextNavigate",
937
+ displayer: "Navigate To",
938
+ value: "",
939
+ },
940
+ ]
941
+ },
942
+ {
943
+ type: "object",
944
+ key: "rightTextItem",
945
+ displayer: "Right Item",
946
+ value: [
947
+ {
948
+ type: "string",
949
+ key: "cardRightText",
950
+ displayer: "Text",
951
+ value: "Add to Wishlist",
952
+ },
953
+ {
954
+ type: "media",
955
+ key: "cardRightTextIcon",
956
+ displayer: "Icon",
957
+ additionalParams: {
958
+ availableTypes: ["icon"],
959
+ },
960
+ value: {
961
+ type: "icon",
962
+ name: "RxHeart",
963
+ },
964
+ },
965
+ {
966
+ type: "page",
967
+ key: "cardRightTextNavigate",
968
+ displayer: "Navigate To",
969
+ value: "",
970
+ },
971
+ ]
972
+ },
973
+ {
974
+ type: "object",
975
+ key: "rightTextItem",
976
+ displayer: "Right Item",
977
+ value: [
978
+ {
979
+ type: "string",
980
+ key: "cardRightText",
981
+ displayer: "Text",
982
+ value: "Quick View",
983
+ },
984
+ {
985
+ type: "media",
986
+ key: "cardRightTextIcon",
987
+ displayer: "Icon",
988
+ additionalParams: {
989
+ availableTypes: ["icon"],
990
+ },
991
+ value: {
992
+ type: "icon",
993
+ name: "GrView",
994
+ },
995
+ },
996
+ {
997
+ type: "page",
998
+ key: "cardRightTextNavigate",
999
+ displayer: "Navigate To",
1000
+ value: "",
1001
+ },
1002
+ ]
1003
+ },
1004
+ {
1005
+ type: "object",
1006
+ key: "rightTextItem",
1007
+ displayer: "Right Item",
1008
+ value: [
1009
+ {
1010
+ type: "string",
1011
+ key: "cardRightText",
1012
+ displayer: "Text",
1013
+ value: "Add to Compare",
1014
+ },
1015
+ {
1016
+ type: "media",
1017
+ key: "cardRightTextIcon",
1018
+ displayer: "Icon",
1019
+ additionalParams: {
1020
+ availableTypes: ["icon"],
1021
+ },
1022
+ value: {
1023
+ type: "icon",
1024
+ name: "MdCompareArrows",
1025
+ },
1026
+ },
1027
+ {
1028
+ type: "page",
1029
+ key: "cardRightTextNavigate",
1030
+ displayer: "Navigate To",
1031
+ value: "",
1032
+ },
1033
+ ]
1034
+ },
1035
+ ]
1036
+ },
1037
+ {
1038
+ type: "array",
1039
+ key: "colorOptions",
1040
+ displayer: "Color Options",
1041
+ value: [
1042
+ {
1043
+ type: "object",
1044
+ key: "colorOption",
1045
+ displayer: "Color Option",
1046
+ value: [
1047
+ {
1048
+ type: "color",
1049
+ key: "sectionColor",
1050
+ displayer: "Section Color",
1051
+ value: "lightgrey",
1052
+ },
1053
+ {
1054
+ type: "media",
1055
+ key: "cardImage",
1056
+ displayer: "Card Media",
1057
+ additionalParams: {
1058
+ availableTypes: ["image", "video"],
1059
+ },
1060
+ value: {
1061
+ type: "image",
1062
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-6.jpg",
1063
+ },
1064
+ },
1065
+ {
1066
+ type: "media",
1067
+ key: "hoverImage",
1068
+ displayer: "Hover Media",
1069
+ additionalParams: {
1070
+ availableTypes: ["image", "video"],
1071
+ },
1072
+ value: {
1073
+ type: "image",
1074
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-4.jpg",
1075
+ },
1076
+ },
1077
+ {
1078
+ type: "boolean",
1079
+ key: "isSoldOut",
1080
+ displayer: "Show Sold Out",
1081
+ value: false,
1082
+ },
1083
+ {
1084
+ type: "array",
1085
+ key: "sizeOptions",
1086
+ displayer: "Size Options",
1087
+ value: [
1088
+ {
1089
+ type: "object",
1090
+ key: "sizeOption",
1091
+ displayer: "Size Option",
1092
+ value: [
1093
+ {
1094
+ type: "string",
1095
+ key: "sizeName",
1096
+ displayer: "Size Name",
1097
+ value: "S",
1098
+ },
1099
+ {
1100
+ type: "page",
1101
+ key: "navigateTo2",
1102
+ displayer: "Navigate To",
1103
+ value: ""
1104
+ },
1105
+ {
1106
+ type: "string",
1107
+ key: "soldOutText",
1108
+ displayer: "Sold Out Text",
1109
+ value: "Sold Out",
1110
+ }
1111
+ ]
1112
+ },
1113
+ {
1114
+ type: "object",
1115
+ key: "sizeOption",
1116
+ displayer: "Size Option",
1117
+ value: [
1118
+ {
1119
+ type: "string",
1120
+ key: "sizeName",
1121
+ displayer: "Size Name",
1122
+ value: "M",
1123
+ },
1124
+ {
1125
+ type: "page",
1126
+ key: "navigateTo2",
1127
+ displayer: "Navigate To",
1128
+ value: ""
1129
+ },
1130
+ {
1131
+ type: "string",
1132
+ key: "soldOutText",
1133
+ displayer: "Sold Out Text",
1134
+ value: "Sold Out",
1135
+ }
1136
+ ]
1137
+ }
1138
+ ]
1139
+ }
1140
+ ]
1141
+ },
1142
+ {
1143
+ type: "object",
1144
+ key: "colorOption",
1145
+ displayer: "Color Option",
1146
+ value: [
1147
+ {
1148
+ type: "color",
1149
+ key: "sectionColor",
1150
+ displayer: "Section Color",
1151
+ value: "purple",
1152
+ },
1153
+ {
1154
+ type: "media",
1155
+ key: "cardImage",
1156
+ displayer: "Card Media",
1157
+ additionalParams: {
1158
+ availableTypes: ["image", "video"],
1159
+ },
1160
+ value: {
1161
+ type: "image",
1162
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-3.jpg",
1163
+ },
1164
+ },
1165
+ {
1166
+ type: "media",
1167
+ key: "hoverImage",
1168
+ displayer: "Hover Media",
1169
+ additionalParams: {
1170
+ availableTypes: ["image", "video"],
1171
+ },
1172
+ value: {
1173
+ type: "image",
1174
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-4.jpg",
1175
+ },
1176
+ },
1177
+ {
1178
+ type: "boolean",
1179
+ key: "isSoldOut",
1180
+ displayer: "Show Sold Out",
1181
+ value: false,
1182
+ },
1183
+ {
1184
+ type: "array",
1185
+ key: "sizeOptions",
1186
+ displayer: "Size Options",
1187
+ value: [
1188
+ {
1189
+ type: "object",
1190
+ key: "sizeOption",
1191
+ displayer: "Size Option",
1192
+ value: [
1193
+ {
1194
+ type: "string",
1195
+ key: "sizeName",
1196
+ displayer: "Size Name",
1197
+ value: "M",
1198
+ },
1199
+ {
1200
+ type: "page",
1201
+ key: "navigateTo2",
1202
+ displayer: "Navigate To",
1203
+ value: ""
1204
+ },
1205
+ {
1206
+ type: "string",
1207
+ key: "soldOutText",
1208
+ displayer: "Sold Out Text",
1209
+ value: "Sold Out",
1210
+ }
1211
+ ]
1212
+ },
1213
+ {
1214
+ type: "object",
1215
+ key: "sizeOption",
1216
+ displayer: "Size Option",
1217
+ value: [
1218
+ {
1219
+ type: "string",
1220
+ key: "sizeName",
1221
+ displayer: "Size Name",
1222
+ value: "L",
1223
+ },
1224
+ {
1225
+ type: "page",
1226
+ key: "navigateTo2",
1227
+ displayer: "Navigate To",
1228
+ value: ""
1229
+ },
1230
+ {
1231
+ type: "string",
1232
+ key: "soldOutText",
1233
+ displayer: "Sold Out Text",
1234
+ value: "Sold Out",
1235
+ }
1236
+ ]
1237
+ },
1238
+ {
1239
+ type: "object",
1240
+ key: "sizeOption",
1241
+ displayer: "Size Option",
1242
+ value: [
1243
+ {
1244
+ type: "string",
1245
+ key: "sizeName",
1246
+ displayer: "Size Name",
1247
+ value: "XL",
1248
+ },
1249
+ {
1250
+ type: "page",
1251
+ key: "navigateTo2",
1252
+ displayer: "Navigate To",
1253
+ value: ""
1254
+ },
1255
+ {
1256
+ type: "string",
1257
+ key: "soldOutText",
1258
+ displayer: "Sold Out Text",
1259
+ value: "Sold Out",
1260
+ }
1261
+ ]
1262
+ },
1263
+ ]
1264
+ }
1265
+ ]
1266
+ }
1267
+ ]
1268
+ }
1269
+ ]
1270
+ },
1271
+ {
1272
+ type: "object",
1273
+ key: "productCard",
1274
+ displayer: "Product Card",
1275
+ value: [
1276
+ {
1277
+ type: "string",
1278
+ key: "cardTitle",
1279
+ displayer: "Title",
1280
+ value: "Regular Fit Pima Cotton Polo Shirt",
1281
+ },
1282
+ {
1283
+ type: "currency",
1284
+ key: "cost",
1285
+ displayer: "Cost",
1286
+ value: { value: "80", currency: "USD" },
1287
+ },
1288
+ {
1289
+ type: "string",
1290
+ key: "cardLeftText",
1291
+ displayer: "Badge Text",
1292
+ value: "20% Off",
1293
+ },
1294
+ {
1295
+ type: "page",
1296
+ key: "navigateTo",
1297
+ displayer: "Navigate To",
1298
+ value: "",
1299
+ },
1300
+ {
1301
+ type: "array",
1302
+ key: "rightTextItems",
1303
+ displayer: "Hover Items",
1304
+ value: [
1305
+ {
1306
+ type: "object",
1307
+ key: "rightTextItem",
1308
+ displayer: "Right Item",
1309
+ value: [
1310
+ {
1311
+ type: "string",
1312
+ key: "cardRightText",
1313
+ displayer: "Text",
1314
+ value: "Add to Cart",
1315
+ },
1316
+ {
1317
+ type: "media",
1318
+ key: "cardRightTextIcon",
1319
+ displayer: "Icon",
1320
+ additionalParams: {
1321
+ availableTypes: ["icon"],
1322
+ },
1323
+ value: {
1324
+ type: "icon",
1325
+ name: "LuShoppingBag",
1326
+ },
1327
+ },
1328
+ {
1329
+ type: "page",
1330
+ key: "cardRightTextNavigate",
1331
+ displayer: "Navigate To",
1332
+ value: "",
1333
+ },
1334
+ ]
1335
+ },
1336
+ {
1337
+ type: "object",
1338
+ key: "rightTextItem",
1339
+ displayer: "Right Item",
1340
+ value: [
1341
+ {
1342
+ type: "string",
1343
+ key: "cardRightText",
1344
+ displayer: "Text",
1345
+ value: "Add to Wishlist",
1346
+ },
1347
+ {
1348
+ type: "media",
1349
+ key: "cardRightTextIcon",
1350
+ displayer: "Icon",
1351
+ additionalParams: {
1352
+ availableTypes: ["icon"],
1353
+ },
1354
+ value: {
1355
+ type: "icon",
1356
+ name: "RxHeart",
1357
+ },
1358
+ },
1359
+ {
1360
+ type: "page",
1361
+ key: "cardRightTextNavigate",
1362
+ displayer: "Navigate To",
1363
+ value: "",
1364
+ },
1365
+ ]
1366
+ },
1367
+ {
1368
+ type: "object",
1369
+ key: "rightTextItem",
1370
+ displayer: "Right Item",
1371
+ value: [
1372
+ {
1373
+ type: "string",
1374
+ key: "cardRightText",
1375
+ displayer: "Text",
1376
+ value: "Quick View",
1377
+ },
1378
+ {
1379
+ type: "media",
1380
+ key: "cardRightTextIcon",
1381
+ displayer: "Icon",
1382
+ additionalParams: {
1383
+ availableTypes: ["icon"],
1384
+ },
1385
+ value: {
1386
+ type: "icon",
1387
+ name: "GrView",
1388
+ },
1389
+ },
1390
+ {
1391
+ type: "page",
1392
+ key: "cardRightTextNavigate",
1393
+ displayer: "Navigate To",
1394
+ value: "",
1395
+ },
1396
+ ]
1397
+ },
1398
+ {
1399
+ type: "object",
1400
+ key: "rightTextItem",
1401
+ displayer: "Right Item",
1402
+ value: [
1403
+ {
1404
+ type: "string",
1405
+ key: "cardRightText",
1406
+ displayer: "Text",
1407
+ value: "Add to Compare",
1408
+ },
1409
+ {
1410
+ type: "media",
1411
+ key: "cardRightTextIcon",
1412
+ displayer: "Icon",
1413
+ additionalParams: {
1414
+ availableTypes: ["icon"],
1415
+ },
1416
+ value: {
1417
+ type: "icon",
1418
+ name: "MdCompareArrows",
1419
+ },
1420
+ },
1421
+ {
1422
+ type: "page",
1423
+ key: "cardRightTextNavigate",
1424
+ displayer: "Navigate To",
1425
+ value: "",
1426
+ },
1427
+ ]
1428
+ },
1429
+ ]
1430
+ },
1431
+ {
1432
+ type: "array",
1433
+ key: "colorOptions",
1434
+ displayer: "Color Options",
1435
+ value: [
1436
+ {
1437
+ type: "object",
1438
+ key: "colorOption",
1439
+ displayer: "Color Option",
1440
+ value: [
1441
+ {
1442
+ type: "color",
1443
+ key: "sectionColor",
1444
+ displayer: "Section Color",
1445
+ value: "pink",
1446
+ },
1447
+ {
1448
+ type: "media",
1449
+ key: "cardImage",
1450
+ displayer: "Card Media",
1451
+ additionalParams: {
1452
+ availableTypes: ["image", "video"],
1453
+ },
1454
+ value: {
1455
+ type: "image",
1456
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-17.jpg",
1457
+ },
1458
+ },
1459
+ {
1460
+ type: "media",
1461
+ key: "hoverImage",
1462
+ displayer: "Hover Media",
1463
+ additionalParams: {
1464
+ availableTypes: ["image", "video"],
1465
+ },
1466
+ value: {
1467
+ type: "image",
1468
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-1.jpg",
1469
+ },
1470
+ },
1471
+ {
1472
+ type: "boolean",
1473
+ key: "isSoldOut",
1474
+ displayer: "Show Sold Out",
1475
+ value: false,
1476
+ },
1477
+ {
1478
+ type: "array",
1479
+ key: "sizeOptions",
1480
+ displayer: "Size Options",
1481
+ value: [
1482
+ {
1483
+ type: "object",
1484
+ key: "sizeOption",
1485
+ displayer: "Size Option",
1486
+ value: [
1487
+ {
1488
+ type: "string",
1489
+ key: "sizeName",
1490
+ displayer: "Size Name",
1491
+ value: "S",
1492
+ },
1493
+ {
1494
+ type: "page",
1495
+ key: "navigateTo2",
1496
+ displayer: "Navigate To",
1497
+ value: ""
1498
+ },
1499
+ {
1500
+ type: "string",
1501
+ key: "soldOutText",
1502
+ displayer: "Sold Out Text",
1503
+ value: "Sold Out",
1504
+ }
1505
+ ]
1506
+ },
1507
+ {
1508
+ type: "object",
1509
+ key: "sizeOption",
1510
+ displayer: "Size Option",
1511
+ value: [
1512
+ {
1513
+ type: "string",
1514
+ key: "sizeName",
1515
+ displayer: "Size Name",
1516
+ value: "M",
1517
+ },
1518
+ {
1519
+ type: "page",
1520
+ key: "navigateTo2",
1521
+ displayer: "Navigate To",
1522
+ value: ""
1523
+ },
1524
+ {
1525
+ type: "string",
1526
+ key: "soldOutText",
1527
+ displayer: "Sold Out Text",
1528
+ value: "Sold Out",
1529
+ }
1530
+ ]
1531
+ }
1532
+ ]
1533
+ }
1534
+ ]
1535
+ },
1536
+ {
1537
+ type: "object",
1538
+ key: "colorOption",
1539
+ displayer: "Color Option",
1540
+ value: [
1541
+ {
1542
+ type: "color",
1543
+ key: "sectionColor",
1544
+ displayer: "Section Color",
1545
+ value: "maroon",
1546
+ },
1547
+ {
1548
+ type: "media",
1549
+ key: "cardImage",
1550
+ displayer: "Card Media",
1551
+ additionalParams: {
1552
+ availableTypes: ["image", "video"],
1553
+ },
1554
+ value: {
1555
+ type: "image",
1556
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-8.jpg",
1557
+ },
1558
+ },
1559
+ {
1560
+ type: "media",
1561
+ key: "hoverImage",
1562
+ displayer: "Hover Media",
1563
+ additionalParams: {
1564
+ availableTypes: ["image", "video"],
1565
+ },
1566
+ value: {
1567
+ type: "image",
1568
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-1.jpg",
1569
+ },
1570
+ },
1571
+ {
1572
+ type: "boolean",
1573
+ key: "isSoldOut",
1574
+ displayer: "Show Sold Out",
1575
+ value: false,
1576
+ },
1577
+ {
1578
+ type: "array",
1579
+ key: "sizeOptions",
1580
+ displayer: "Size Options",
1581
+ value: [
1582
+ {
1583
+ type: "object",
1584
+ key: "sizeOption",
1585
+ displayer: "Size Option",
1586
+ value: [
1587
+ {
1588
+ type: "string",
1589
+ key: "sizeName",
1590
+ displayer: "Size Name",
1591
+ value: "M",
1592
+ },
1593
+ {
1594
+ type: "page",
1595
+ key: "navigateTo2",
1596
+ displayer: "Navigate To",
1597
+ value: ""
1598
+ },
1599
+ {
1600
+ type: "string",
1601
+ key: "soldOutText",
1602
+ displayer: "Sold Out Text",
1603
+ value: "Sold Out",
1604
+ }
1605
+ ]
1606
+ },
1607
+ {
1608
+ type: "object",
1609
+ key: "sizeOption",
1610
+ displayer: "Size Option",
1611
+ value: [
1612
+ {
1613
+ type: "string",
1614
+ key: "sizeName",
1615
+ displayer: "Size Name",
1616
+ value: "L",
1617
+ },
1618
+ {
1619
+ type: "page",
1620
+ key: "navigateTo2",
1621
+ displayer: "Navigate To",
1622
+ value: ""
1623
+ },
1624
+ {
1625
+ type: "string",
1626
+ key: "soldOutText",
1627
+ displayer: "Sold Out Text",
1628
+ value: "Sold Out",
1629
+ }
1630
+ ]
1631
+ },
1632
+ {
1633
+ type: "object",
1634
+ key: "sizeOption",
1635
+ displayer: "Size Option",
1636
+ value: [
1637
+ {
1638
+ type: "string",
1639
+ key: "sizeName",
1640
+ displayer: "Size Name",
1641
+ value: "XL",
1642
+ },
1643
+ {
1644
+ type: "page",
1645
+ key: "navigateTo2",
1646
+ displayer: "Navigate To",
1647
+ value: ""
1648
+ },
1649
+ {
1650
+ type: "string",
1651
+ key: "soldOutText",
1652
+ displayer: "Sold Out Text",
1653
+ value: "Sold Out",
1654
+ }
1655
+ ]
1656
+ },
1657
+ ]
1658
+ }
1659
+ ]
1660
+ }
1661
+ ]
1662
+ }
1663
+ ]
1664
+ },
1665
+ {
1666
+ type: "object",
1667
+ key: "productCard",
1668
+ displayer: "Product Card",
1669
+ value: [
1670
+ {
1671
+ type: "string",
1672
+ key: "cardTitle",
1673
+ displayer: "Title",
1674
+ value: "Midi Knit Dress",
1675
+ },
1676
+ {
1677
+ type: "currency",
1678
+ key: "cost",
1679
+ displayer: "Cost",
1680
+ value: { value: "40", currency: "USD" },
1681
+ },
1682
+ {
1683
+ type: "string",
1684
+ key: "cardLeftText",
1685
+ displayer: "Badge Text",
1686
+ value: "20% Off",
1687
+ },
1688
+ {
1689
+ type: "page",
1690
+ key: "navigateTo",
1691
+ displayer: "Navigate To",
1692
+ value: "",
1693
+ },
1694
+ {
1695
+ type: "array",
1696
+ key: "rightTextItems",
1697
+ displayer: "Hover Items",
1698
+ value: [
1699
+ {
1700
+ type: "object",
1701
+ key: "rightTextItem",
1702
+ displayer: "Right Item",
1703
+ value: [
1704
+ {
1705
+ type: "string",
1706
+ key: "cardRightText",
1707
+ displayer: "Text",
1708
+ value: "Add to Cart",
1709
+ },
1710
+ {
1711
+ type: "media",
1712
+ key: "cardRightTextIcon",
1713
+ displayer: "Icon",
1714
+ additionalParams: {
1715
+ availableTypes: ["icon"],
1716
+ },
1717
+ value: {
1718
+ type: "icon",
1719
+ name: "LuShoppingBag",
1720
+ },
1721
+ },
1722
+ {
1723
+ type: "page",
1724
+ key: "cardRightTextNavigate",
1725
+ displayer: "Navigate To",
1726
+ value: "",
1727
+ },
1728
+ ]
1729
+ },
1730
+ {
1731
+ type: "object",
1732
+ key: "rightTextItem",
1733
+ displayer: "Right Item",
1734
+ value: [
1735
+ {
1736
+ type: "string",
1737
+ key: "cardRightText",
1738
+ displayer: "Text",
1739
+ value: "Add to Wishlist",
1740
+ },
1741
+ {
1742
+ type: "media",
1743
+ key: "cardRightTextIcon",
1744
+ displayer: "Icon",
1745
+ additionalParams: {
1746
+ availableTypes: ["icon"],
1747
+ },
1748
+ value: {
1749
+ type: "icon",
1750
+ name: "RxHeart",
1751
+ },
1752
+ },
1753
+ {
1754
+ type: "page",
1755
+ key: "cardRightTextNavigate",
1756
+ displayer: "Navigate To",
1757
+ value: "",
1758
+ },
1759
+ ]
1760
+ },
1761
+ {
1762
+ type: "object",
1763
+ key: "rightTextItem",
1764
+ displayer: "Right Item",
1765
+ value: [
1766
+ {
1767
+ type: "string",
1768
+ key: "cardRightText",
1769
+ displayer: "Text",
1770
+ value: "Quick View",
1771
+ },
1772
+ {
1773
+ type: "media",
1774
+ key: "cardRightTextIcon",
1775
+ displayer: "Icon",
1776
+ additionalParams: {
1777
+ availableTypes: ["icon"],
1778
+ },
1779
+ value: {
1780
+ type: "icon",
1781
+ name: "GrView",
1782
+ },
1783
+ },
1784
+ {
1785
+ type: "page",
1786
+ key: "cardRightTextNavigate",
1787
+ displayer: "Navigate To",
1788
+ value: "",
1789
+ },
1790
+ ]
1791
+ },
1792
+ {
1793
+ type: "object",
1794
+ key: "rightTextItem",
1795
+ displayer: "Right Item",
1796
+ value: [
1797
+ {
1798
+ type: "string",
1799
+ key: "cardRightText",
1800
+ displayer: "Text",
1801
+ value: "Add to Compare",
1802
+ },
1803
+ {
1804
+ type: "media",
1805
+ key: "cardRightTextIcon",
1806
+ displayer: "Icon",
1807
+ additionalParams: {
1808
+ availableTypes: ["icon"],
1809
+ },
1810
+ value: {
1811
+ type: "icon",
1812
+ name: "MdCompareArrows",
1813
+ },
1814
+ },
1815
+ {
1816
+ type: "page",
1817
+ key: "cardRightTextNavigate",
1818
+ displayer: "Navigate To",
1819
+ value: "",
1820
+ },
1821
+ ]
1822
+ },
1823
+ ]
1824
+ },
1825
+ {
1826
+ type: "array",
1827
+ key: "colorOptions",
1828
+ displayer: "Color Options",
1829
+ value: [
1830
+ {
1831
+ type: "object",
1832
+ key: "colorOption",
1833
+ displayer: "Color Option",
1834
+ value: [
1835
+ {
1836
+ type: "color",
1837
+ key: "sectionColor",
1838
+ displayer: "Section Color",
1839
+ value: "teal",
1840
+ },
1841
+ {
1842
+ type: "media",
1843
+ key: "cardImage",
1844
+ displayer: "Card Media",
1845
+ additionalParams: {
1846
+ availableTypes: ["image", "video"],
1847
+ },
1848
+ value: {
1849
+ type: "image",
1850
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-25.jpg",
1851
+ },
1852
+ },
1853
+ {
1854
+ type: "media",
1855
+ key: "hoverImage",
1856
+ displayer: "Hover Media",
1857
+ additionalParams: {
1858
+ availableTypes: ["image", "video"],
1859
+ },
1860
+ value: {
1861
+ type: "image",
1862
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-24.jpg",
1863
+ },
1864
+ },
1865
+ {
1866
+ type: "boolean",
1867
+ key: "isSoldOut",
1868
+ displayer: "Show Sold Out",
1869
+ value: false,
1870
+ },
1871
+ {
1872
+ type: "array",
1873
+ key: "sizeOptions",
1874
+ displayer: "Size Options",
1875
+ value: [
1876
+ {
1877
+ type: "object",
1878
+ key: "sizeOption",
1879
+ displayer: "Size Option",
1880
+ value: [
1881
+ {
1882
+ type: "string",
1883
+ key: "sizeName",
1884
+ displayer: "Size Name",
1885
+ value: "S",
1886
+ },
1887
+ {
1888
+ type: "page",
1889
+ key: "navigateTo2",
1890
+ displayer: "Navigate To",
1891
+ value: ""
1892
+ },
1893
+ {
1894
+ type: "boolean",
1895
+ key: "isSoldOut",
1896
+ displayer: "Show Sold Out",
1897
+ value: false,
1898
+ },
1899
+ {
1900
+ type: "string",
1901
+ key: "soldOutText",
1902
+ displayer: "Sold Out Text",
1903
+ value: "Sold Out",
1904
+ }
1905
+ ]
1906
+ },
1907
+ {
1908
+ type: "object",
1909
+ key: "sizeOption",
1910
+ displayer: "Size Option",
1911
+ value: [
1912
+ {
1913
+ type: "string",
1914
+ key: "sizeName",
1915
+ displayer: "Size Name",
1916
+ value: "M",
1917
+ },
1918
+ {
1919
+ type: "page",
1920
+ key: "navigateTo2",
1921
+ displayer: "Navigate To",
1922
+ value: ""
1923
+ },
1924
+ {
1925
+ type: "string",
1926
+ key: "soldOutText",
1927
+ displayer: "Sold Out Text",
1928
+ value: "Sold Out",
1929
+ }
1930
+ ]
1931
+ }
1932
+ ]
1933
+ }
1934
+ ]
1935
+ },
1936
+ {
1937
+ type: "object",
1938
+ key: "colorOption",
1939
+ displayer: "Color Option",
1940
+ value: [
1941
+ {
1942
+ type: "color",
1943
+ key: "sectionColor",
1944
+ displayer: "Section Color",
1945
+ value: "coral",
1946
+ },
1947
+ {
1948
+ type: "media",
1949
+ key: "cardImage",
1950
+ displayer: "Card Media",
1951
+ additionalParams: {
1952
+ availableTypes: ["image", "video"],
1953
+ },
1954
+ value: {
1955
+ type: "image",
1956
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-22.jpg",
1957
+ },
1958
+ },
1959
+ {
1960
+ type: "media",
1961
+ key: "hoverImage",
1962
+ displayer: "Hover Media",
1963
+ additionalParams: {
1964
+ availableTypes: ["image", "video"],
1965
+ },
1966
+ value: {
1967
+ type: "image",
1968
+ url: "https://vineta-html.vercel.app/images/products/fashion/product-24.jpg",
1969
+ },
1970
+ },
1971
+ {
1972
+ type: "boolean",
1973
+ key: "isSoldOut",
1974
+ displayer: "Show Sold Out",
1975
+ value: false,
1976
+ },
1977
+ {
1978
+ type: "array",
1979
+ key: "sizeOptions",
1980
+ displayer: "Size Options",
1981
+ value: [
1982
+ {
1983
+ type: "object",
1984
+ key: "sizeOption",
1985
+ displayer: "Size Option",
1986
+ value: [
1987
+ {
1988
+ type: "string",
1989
+ key: "sizeName",
1990
+ displayer: "Size Name",
1991
+ value: "S",
1992
+ },
1993
+ {
1994
+ type: "page",
1995
+ key: "navigateTo2",
1996
+ displayer: "Navigate To",
1997
+ value: ""
1998
+ },
1999
+ {
2000
+ type: "boolean",
2001
+ key: "isSoldOut",
2002
+ displayer: "Show Sold Out",
2003
+ value: false,
2004
+ },
2005
+ {
2006
+ type: "string",
2007
+ key: "soldOutText",
2008
+ displayer: "Sold Out Text",
2009
+ value: "Sold Out",
2010
+ }
2011
+ ]
2012
+ },
2013
+ {
2014
+ type: "object",
2015
+ key: "sizeOption",
2016
+ displayer: "Size Option",
2017
+ value: [
2018
+ {
2019
+ type: "string",
2020
+ key: "sizeName",
2021
+ displayer: "Size Name",
2022
+ value: "M",
2023
+ },
2024
+ {
2025
+ type: "page",
2026
+ key: "navigateTo2",
2027
+ displayer: "Navigate To",
2028
+ value: ""
2029
+ },
2030
+ {
2031
+ type: "string",
2032
+ key: "soldOutText",
2033
+ displayer: "Sold Out Text",
2034
+ value: "Sold Out",
2035
+ }
2036
+ ]
2037
+ },
2038
+ ]
2039
+ }
2040
+ ]
2041
+ }
2042
+ ]
2043
+ }
2044
+ ]
2045
+ },
2046
+ ]
2047
+ });
2048
+ this.addProp(INPUTS.BUTTON("button", "Button", "Load More", null, null, null, "Primary"));
2049
+ this.setComponentState("moreImages", 0);
2050
+
2051
+ this.setComponentState("selectedStates",
2052
+ this.castToObject<ProductCard[]>("productCards").map((card: ProductCard, _: number) => ({
2053
+ selectedColor: card.colorOptions?.[0]?.sectionColor || "",
2054
+ selectedColorIndex: 0,
2055
+ selectedSize: card.colorOptions?.[0]?.sizeOptions?.[0]?.sizeName || "",
2056
+ selectedSizeIndex: 0
2057
+ }))
2058
+ );
2059
+ }
2060
+
2061
+ static getName(): string {
2062
+ return "ECommerce 4";
2063
+ }
2064
+
2065
+ handleColorClick(cardIndex: number, sectionColor: string, colorIndex: number): void {
2066
+ const selectedStates = [...this.getComponentState("selectedStates")];
2067
+ const productCard = this.castToObject<ProductCard[]>("productCards")[cardIndex];
2068
+ selectedStates[cardIndex] = {
2069
+ ...selectedStates[cardIndex],
2070
+ selectedColor: sectionColor,
2071
+ selectedColorIndex: colorIndex,
2072
+ selectedSize: productCard.colorOptions[colorIndex]?.sizeOptions?.[0]?.sizeName || "",
2073
+ selectedSizeIndex: 0
2074
+ };
2075
+ this.setComponentState("selectedStates", selectedStates);
2076
+ }
2077
+
2078
+ handleSizeClick(cardIndex: number, sizeName: string, sizeIndex: number): void {
2079
+ const selectedStates = [...this.getComponentState("selectedStates")];
2080
+ selectedStates[cardIndex] = {
2081
+ ...selectedStates[cardIndex],
2082
+ selectedSize: sizeName,
2083
+ selectedSizeIndex: sizeIndex
2084
+ };
2085
+ this.setComponentState("selectedStates", selectedStates);
2086
+ }
2087
+
2088
+ handleButtonClick = () => {
2089
+ this.setComponentState("moreImages", this.getComponentState("moreImages") + this.getPropValue("imageCount"))
2090
+ };
2091
+
2092
+ render() {
2093
+ const productCards = this.castToObject<ProductCard[]>("productCards") || [];
2094
+ const selectedStates = this.getComponentState("selectedStates") || [];
2095
+ const itemCount = this.getPropValue("itemCount");
2096
+ if (this.getComponentState("imageCount") !== this.getPropValue("imageCountInitial") + this.getComponentState("moreImages"))
2097
+ this.setComponentState("imageCount", this.getPropValue("imageCountInitial") + this.getComponentState("moreImages"));
2098
+ const button: INPUTS.CastedButton = this.castToObject<INPUTS.CastedButton>("button");
2099
+
2100
+ return (
2101
+ <Base.Container className={this.decorateCSS("container")}>
2102
+ <Base.MaxContent className={this.decorateCSS("max-content")}>
2103
+ <Base.ListGrid gridCount={{ pc: Math.min(itemCount, 4), tablet: 3, phone: 1 }} className={this.decorateCSS("grid")}>
2104
+ {productCards.slice(0, this.getComponentState("imageCount")).map((productCard: ProductCard, cardIndex: number) => {
2105
+ const selectedState = selectedStates[cardIndex] || { selectedColor: "", selectedColorIndex: 0, selectedSize: "", selectedSizeIndex: 0 };
2106
+ const selectedColorOption = productCard.colorOptions?.[selectedState.selectedColorIndex] || productCard.colorOptions?.[0];
2107
+ const selectedSizeOption = selectedColorOption?.sizeOptions?.find(
2108
+ option => option.sizeName === selectedState.selectedSize
2109
+ ) || selectedColorOption?.sizeOptions?.[0];
2110
+
2111
+ return (
2112
+ <div key={cardIndex} className={this.decorateCSS("card-container")}>
2113
+ <ComposerLink path={productCard.navigateTo} isFullWidth={true}>
2114
+ <div className={this.decorateCSS("image-container")}>
2115
+ <div
2116
+ className={`${this.decorateCSS("image-1-container")} ${selectedColorOption?.isSoldOut ? this.decorateCSS("image-sold-out") : ""}`}>
2117
+ {selectedColorOption?.cardImage?.url && (
2118
+ <Base.Media
2119
+ value={selectedColorOption.cardImage}
2120
+ className={this.decorateCSS("image")}
2121
+ />
2122
+ )}
2123
+ </div>
2124
+ <div
2125
+ className={`${this.decorateCSS("image-2-container")} ${selectedColorOption?.isSoldOut ? this.decorateCSS("image-sold-out") : ""}`}>
2126
+ {selectedColorOption?.hoverImage?.url && (
2127
+ <Base.Media
2128
+ value={selectedColorOption?.isSoldOut ? selectedColorOption?.cardImage : selectedColorOption?.hoverImage}
2129
+ className={this.decorateCSS("image")}
2130
+ />
2131
+ )}
2132
+ </div>
2133
+ {selectedColorOption?.isSoldOut && (
2134
+ <Base.P className={this.decorateCSS("sold-out")}>
2135
+ {selectedSizeOption.soldOutText}
2136
+ </Base.P>
2137
+ )}
2138
+ <div className={this.decorateCSS("image-text-left")}>
2139
+ {this.castToString(productCard.cardLeftText) && (
2140
+ <Base.P className={this.decorateCSS("cardLeftText")}>{productCard.cardLeftText}</Base.P>
2141
+ )}
2142
+ </div>
2143
+ {selectedColorOption?.sizeOptions && selectedColorOption.sizeOptions.length > 0 && (
2144
+ <div className={`${selectedColorOption.isSoldOut ? this.decorateCSS("section-size-container-sold-out") : this.decorateCSS("section-size-container")} animate__animated animate__fadeInUp`}>
2145
+ {selectedColorOption.sizeOptions.map((sizeOption: SizeOption, sizeIndex: number) => (
2146
+ <ComposerLink path={sizeOption.navigateTo2}>
2147
+ <div
2148
+ key={sizeIndex}
2149
+ className={`${this.decorateCSS("section-size")} ${sizeOption.sizeName === selectedState.selectedSize
2150
+ ? this.decorateCSS("active-section-size") : ""}`}
2151
+ onClick={() => {
2152
+ this.handleSizeClick(cardIndex, sizeOption.sizeName, sizeIndex)
2153
+ }}>
2154
+ {sizeOption.sizeName}
2155
+ </div>
2156
+ </ComposerLink>
2157
+ ))}
2158
+ </div>
2159
+ )}
2160
+ <div className={`${selectedColorOption?.isSoldOut
2161
+ ? this.decorateCSS("image-right-side-sold-out")
2162
+ : this.decorateCSS("image-right-side")
2163
+ }`}>
2164
+ {productCard.rightTextItems?.map((item: RightTextItems, index: number) => (
2165
+ <div
2166
+ key={index}
2167
+ className={`${this.decorateCSS("right-side-items")} animate__animated animate__fadeInRight`}
2168
+ style={{ animationDelay: `${index * 0.08}s` }}>
2169
+ <ComposerLink path={item.cardRightTextNavigate}>
2170
+ <div className={this.decorateCSS("image-icon-container")}>
2171
+ <Base.Media value={item.cardRightTextIcon} className={this.decorateCSS("image-right-icon")} />
2172
+ </div>
2173
+ </ComposerLink>
2174
+ <Base.P className={this.decorateCSS("card-right-text-container")}>
2175
+ {this.castToString(item.cardRightText) && (
2176
+ <Base.P className={this.decorateCSS("card-right-text")}>{item.cardRightText}</Base.P>
2177
+ )}s
2178
+ </Base.P>
2179
+ </div>
2180
+ ))}
2181
+ </div>
2182
+ </div>
2183
+ </ComposerLink>
2184
+ <div className={`${this.decorateCSS("text-container")} ${selectedColorOption?.isSoldOut ? this.decorateCSS("text-sold-out") : ""}`}>
2185
+ {this.castToString(productCard.cardTitle) && (
2186
+ <Base.H5 className={this.decorateCSS("title")}>{productCard.cardTitle}</Base.H5>
2187
+ )}
2188
+ {productCard.cost.value && (
2189
+ <div className={this.decorateCSS("price")}>
2190
+ <Base.H4 className={this.decorateCSS("value")}>
2191
+ {productCard.cost?.value}
2192
+ </Base.H4>
2193
+ <Base.H4 className={this.decorateCSS("currency-code")}>
2194
+ {getCurrencyInfo(productCard.cost.currency)?.symbol}
2195
+ </Base.H4>
2196
+ </div>
2197
+ )}
2198
+ </div>
2199
+ <div className={this.decorateCSS("section-color-container")}>
2200
+ {productCard.colorOptions?.map((colorOption: ColorOption, colorIndex: number) => (
2201
+ <button
2202
+ key={colorIndex}
2203
+ className={`${this.decorateCSS("section-color")}
2204
+ ${colorOption.sectionColor === selectedState.selectedColor ? this.decorateCSS("active-section-color") : ""}`}
2205
+ onClick={() => {
2206
+ this.handleColorClick(cardIndex, colorOption.sectionColor, colorIndex)
2207
+ }}
2208
+ onMouseEnter={() => {
2209
+ this.handleColorClick(cardIndex, colorOption.sectionColor, colorIndex)
2210
+ }}
2211
+ style={{ backgroundColor: colorOption.sectionColor }}>
2212
+ </button>
2213
+ ))}
2214
+ </div>
2215
+ </div>
2216
+ );
2217
+ })}
2218
+ </Base.ListGrid>
2219
+ {
2220
+ (productCards.length > this.getComponentState("imageCount")) && (this.castToString(button.text)) && (
2221
+ <div className={this.decorateCSS("button-wrapper")}>
2222
+ <Base.Button className={this.decorateCSS("button")} buttonType={button.type} onClick={this.handleButtonClick} >
2223
+ <Base.P className={this.decorateCSS("button-text")}>{button.text}</Base.P>
2224
+ </Base.Button>
2225
+ </div>
2226
+ )
2227
+ }
2228
+ </Base.MaxContent >
2229
+ </Base.Container >
2230
+ );
2231
+ }
2232
+ }
2233
+
2234
+ export default ECommerce4;