@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,1790 @@
1
+ import * as React from "react";
2
+ import { BaseNavigator, TypeMediaInputValue } from "../../EditorComponent";
3
+ import styles from "./navbar3.module.scss";
4
+ import ComposerLink from "../../../../custom-hooks/composer-base-components/Link/link";
5
+ import { Base } from "composer-tools/composer-base-components/base/base";
6
+ import { INPUTS } from "composer-tools/custom-hooks/input-templates";
7
+
8
+ interface Lane {
9
+ contact: React.JSX.Element;
10
+ news: React.JSX.Element;
11
+ }
12
+
13
+ type Item = {
14
+ title: React.JSX.Element;
15
+ navigate_to: string;
16
+ menuType: string;
17
+ sub_items: Item[];
18
+ };
19
+
20
+ interface Logo {
21
+ image: TypeMediaInputValue;
22
+ navigateTo: string;
23
+ }
24
+
25
+ interface Language {
26
+ label: "code" | "name";
27
+ icon: TypeMediaInputValue;
28
+ showLanguage: boolean;
29
+ showLocalizationAlways: boolean;
30
+ showDivider: boolean;
31
+ }
32
+
33
+ class Navbar3 extends BaseNavigator {
34
+ constructor(props?: any) {
35
+ super(props, styles);
36
+
37
+ this.addProp(INPUTS.NAVBAR_POSITION("position", "Type"));
38
+
39
+ this.addProp({
40
+ type: "object",
41
+ key: "lane",
42
+ displayer: "Top Lane",
43
+ value: [
44
+ {
45
+ type: "string",
46
+ key: "contact",
47
+ displayer: "Contact",
48
+ value: "Contact us 24/7: +8 500 123 4567",
49
+ },
50
+ {
51
+ type: "string",
52
+ key: "news",
53
+ displayer: "News",
54
+ value: "Express delivery and free returns within 28 days",
55
+ },
56
+ ],
57
+ });
58
+
59
+ this.addProp({
60
+ type: "object",
61
+ key: "language",
62
+ displayer: "Language Settings",
63
+ value: [
64
+ {
65
+ type: "select",
66
+ key: "label",
67
+ displayer: "Label",
68
+ value: "code",
69
+ additionalParams: {
70
+ selectItems: ["code", "name"],
71
+ },
72
+ },
73
+ {
74
+ type: "media",
75
+ key: "icon",
76
+ displayer: "Icon",
77
+ additionalParams: {
78
+ availableTypes: ["icon"],
79
+ },
80
+ value: {
81
+ type: "icon",
82
+ name: "GrLanguage",
83
+ },
84
+ },
85
+ {
86
+ type: "boolean",
87
+ key: "showLocalizationAlways",
88
+ displayer: "Pin to Navbar",
89
+ value: true,
90
+ },
91
+ {
92
+ type: "boolean",
93
+ key: "showLanguage",
94
+ displayer: "Show Language",
95
+ value: true,
96
+ },
97
+ {
98
+ type: "boolean",
99
+ key: "showDivider",
100
+ displayer: "Show Divider",
101
+ value: true,
102
+ },
103
+ ],
104
+ });
105
+
106
+ this.addProp({
107
+ type: "object",
108
+ key: "defaultLogo",
109
+ displayer: "Default Logo",
110
+ value: [
111
+ {
112
+ type: "media",
113
+ key: "image",
114
+ displayer: "Image",
115
+ additionalParams: {
116
+ availableTypes: ["image"],
117
+ },
118
+ value: {
119
+ type: "image",
120
+ url: "https://storage.googleapis.com/download/storage/v1/b/hq-composer-0b0f0/o/67769b510655f8002cafc965?alt=media&timestamp=1735826277716",
121
+ },
122
+ },
123
+ {
124
+ type: "page",
125
+ key: "navigateTo",
126
+ value: "",
127
+ displayer: "Navigate To",
128
+ },
129
+ ],
130
+ });
131
+
132
+ this.addProp({
133
+ type: "object",
134
+ key: "absoluteLogo",
135
+ displayer: "Absolute Logo",
136
+ value: [
137
+ {
138
+ type: "media",
139
+ key: "image",
140
+ displayer: "Image",
141
+ additionalParams: {
142
+ availableTypes: ["image"],
143
+ },
144
+ value: {
145
+ type: "image",
146
+ url: "https://storage.googleapis.com/download/storage/v1/b/hq-composer-0b0f0/o/67769b510655f8002cafc964?alt=media&timestamp=1735826277716",
147
+ },
148
+ },
149
+ {
150
+ type: "page",
151
+ key: "navigateTo",
152
+ value: "",
153
+ displayer: "Navigate To",
154
+ },
155
+ ],
156
+ });
157
+
158
+ this.addProp({
159
+ type: "array",
160
+ key: "menuItems",
161
+ displayer: "Menu",
162
+ value: [
163
+ {
164
+ type: "object",
165
+ key: "item",
166
+ displayer: "Item",
167
+ value: [
168
+ {
169
+ type: "string",
170
+ key: "title",
171
+ displayer: "Title",
172
+ value: "Home",
173
+ },
174
+ {
175
+ type: "page",
176
+ key: "navigate_to",
177
+ displayer: "Navigate To",
178
+ value: "",
179
+ },
180
+ {
181
+ type: "select",
182
+ key: "menuType",
183
+ displayer: "Type",
184
+ value: "Dropdown",
185
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
186
+ },
187
+ {
188
+ type: "array",
189
+ key: "sub_items",
190
+ displayer: "Sub Items",
191
+ value: [
192
+ {
193
+ type: "object",
194
+ key: "sub_item",
195
+ displayer: "Sub Item",
196
+ value: [
197
+ {
198
+ type: "string",
199
+ key: "title",
200
+ displayer: "Title",
201
+ value: "Fashion Home",
202
+ },
203
+ {
204
+ type: "page",
205
+ key: "navigate_to",
206
+ displayer: "Navigate To",
207
+ value: "",
208
+ },
209
+ {
210
+ type: "array",
211
+ key: "sub_items",
212
+ displayer: "Sub Items",
213
+ value: [
214
+ {
215
+ type: "object",
216
+ key: "sub_item",
217
+ displayer: "Sub Item",
218
+ value: [
219
+ {
220
+ type: "string",
221
+ key: "title",
222
+ displayer: "Title",
223
+ value: "",
224
+ },
225
+ {
226
+ type: "page",
227
+ key: "navigate_to",
228
+ displayer: "Navigate To",
229
+ value: "",
230
+ },
231
+ ],
232
+ },
233
+ ],
234
+ },
235
+ ],
236
+ },
237
+ {
238
+ type: "object",
239
+ key: "sub_item",
240
+ displayer: "Sub Item",
241
+ value: [
242
+ {
243
+ type: "string",
244
+ key: "title",
245
+ displayer: "Title",
246
+ value: "Winery Home",
247
+ },
248
+ {
249
+ type: "page",
250
+ key: "navigate_to",
251
+ displayer: "Navigate To",
252
+ value: "",
253
+ },
254
+ {
255
+ type: "array",
256
+ key: "sub_items",
257
+ displayer: "Sub Items",
258
+ value: [
259
+ {
260
+ type: "object",
261
+ key: "sub_item",
262
+ displayer: "Sub Item",
263
+ value: [
264
+ {
265
+ type: "string",
266
+ key: "title",
267
+ displayer: "Title",
268
+ value: "",
269
+ },
270
+ {
271
+ type: "page",
272
+ key: "navigate_to",
273
+ displayer: "Navigate To",
274
+ value: "",
275
+ },
276
+ ],
277
+ },
278
+ ],
279
+ },
280
+ ],
281
+ },
282
+ {
283
+ type: "object",
284
+ key: "sub_item",
285
+ displayer: "Sub Item",
286
+ value: [
287
+ {
288
+ type: "string",
289
+ key: "title",
290
+ displayer: "Title",
291
+ value: "New Arrivals",
292
+ },
293
+ {
294
+ type: "page",
295
+ key: "navigate_to",
296
+ displayer: "Navigate To",
297
+ value: "",
298
+ },
299
+ {
300
+ type: "array",
301
+ key: "sub_items",
302
+ displayer: "Sub Items",
303
+ value: [
304
+ {
305
+ type: "object",
306
+ key: "sub_item",
307
+ displayer: "Sub Item",
308
+ value: [
309
+ {
310
+ type: "string",
311
+ key: "title",
312
+ displayer: "Title",
313
+ value: "",
314
+ },
315
+ {
316
+ type: "page",
317
+ key: "navigate_to",
318
+ displayer: "Navigate To",
319
+ value: "",
320
+ },
321
+ ],
322
+ },
323
+ ],
324
+ },
325
+ ],
326
+ },
327
+ {
328
+ type: "object",
329
+ key: "sub_item",
330
+ displayer: "Sub Item",
331
+ value: [
332
+ {
333
+ type: "string",
334
+ key: "title",
335
+ displayer: "Title",
336
+ value: "Men & Women",
337
+ },
338
+ {
339
+ type: "page",
340
+ key: "navigate_to",
341
+ displayer: "Navigate To",
342
+ value: "",
343
+ },
344
+ {
345
+ type: "array",
346
+ key: "sub_items",
347
+ displayer: "Sub Items",
348
+ value: [
349
+ {
350
+ type: "object",
351
+ key: "sub_item",
352
+ displayer: "Sub Item",
353
+ value: [
354
+ {
355
+ type: "string",
356
+ key: "title",
357
+ displayer: "Title",
358
+ value: "",
359
+ },
360
+ {
361
+ type: "page",
362
+ key: "navigate_to",
363
+ displayer: "Navigate To",
364
+ value: "",
365
+ },
366
+ ],
367
+ },
368
+ ],
369
+ },
370
+ ],
371
+ },
372
+ {
373
+ type: "object",
374
+ key: "sub_item",
375
+ displayer: "Sub Item",
376
+ value: [
377
+ {
378
+ type: "string",
379
+ key: "title",
380
+ displayer: "Title",
381
+ value: "Trend Collection",
382
+ },
383
+ {
384
+ type: "page",
385
+ key: "navigate_to",
386
+ displayer: "Navigate To",
387
+ value: "",
388
+ },
389
+ {
390
+ type: "array",
391
+ key: "sub_items",
392
+ displayer: "Sub Items",
393
+ value: [
394
+ {
395
+ type: "object",
396
+ key: "sub_item",
397
+ displayer: "Sub Item",
398
+ value: [
399
+ {
400
+ type: "string",
401
+ key: "title",
402
+ displayer: "Title",
403
+ value: "",
404
+ },
405
+ {
406
+ type: "page",
407
+ key: "navigate_to",
408
+ displayer: "Navigate To",
409
+ value: "",
410
+ },
411
+ ],
412
+ },
413
+ ],
414
+ },
415
+ ],
416
+ },
417
+ {
418
+ type: "object",
419
+ key: "sub_item",
420
+ displayer: "Sub Item",
421
+ value: [
422
+ {
423
+ type: "string",
424
+ key: "title",
425
+ displayer: "Title",
426
+ value: "Creative",
427
+ },
428
+ {
429
+ type: "page",
430
+ key: "navigate_to",
431
+ displayer: "Navigate To",
432
+ value: "",
433
+ },
434
+ {
435
+ type: "array",
436
+ key: "sub_items",
437
+ displayer: "Sub Items",
438
+ value: [
439
+ {
440
+ type: "object",
441
+ key: "sub_item",
442
+ displayer: "Sub Item",
443
+ value: [
444
+ {
445
+ type: "string",
446
+ key: "title",
447
+ displayer: "Title",
448
+ value: "",
449
+ },
450
+ {
451
+ type: "page",
452
+ key: "navigate_to",
453
+ displayer: "Navigate To",
454
+ value: "",
455
+ },
456
+ ],
457
+ },
458
+ ],
459
+ },
460
+ ],
461
+ },
462
+ ],
463
+ },
464
+ ],
465
+ },
466
+ {
467
+ type: "object",
468
+ key: "item",
469
+ displayer: "Item",
470
+ value: [
471
+ {
472
+ type: "string",
473
+ key: "title",
474
+ displayer: "Title",
475
+ value: "Shop",
476
+ },
477
+ {
478
+ type: "page",
479
+ key: "navigate_to",
480
+ displayer: "Navigate To",
481
+ value: "",
482
+ },
483
+ {
484
+ type: "select",
485
+ key: "menuType",
486
+ displayer: "Type",
487
+ value: "Dropdown",
488
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
489
+ },
490
+ {
491
+ type: "array",
492
+ key: "sub_items",
493
+ displayer: "Sub Items",
494
+ value: [
495
+ {
496
+ type: "object",
497
+ key: "sub_item",
498
+ displayer: "Sub Item",
499
+ value: [
500
+ {
501
+ type: "string",
502
+ key: "title",
503
+ displayer: "Title",
504
+ value: "Products",
505
+ },
506
+ {
507
+ type: "page",
508
+ key: "navigate_to",
509
+ displayer: "Navigate To",
510
+ value: "",
511
+ },
512
+ {
513
+ type: "array",
514
+ key: "sub_items",
515
+ displayer: "Sub Items",
516
+ value: [
517
+ {
518
+ type: "object",
519
+ key: "sub_item",
520
+ displayer: "Sub Item",
521
+ value: [
522
+ {
523
+ type: "string",
524
+ key: "title",
525
+ displayer: "Title",
526
+ value: "New Arrivals",
527
+ },
528
+ {
529
+ type: "page",
530
+ key: "navigate_to",
531
+ displayer: "Navigate To",
532
+ value: "",
533
+ },
534
+ ],
535
+ },
536
+ ],
537
+ },
538
+ ],
539
+ },
540
+ ],
541
+ },
542
+ ],
543
+ },
544
+ {
545
+ type: "object",
546
+ key: "item",
547
+ displayer: "Item",
548
+ value: [
549
+ {
550
+ type: "string",
551
+ key: "title",
552
+ displayer: "Title",
553
+ value: "Pages",
554
+ },
555
+ {
556
+ type: "page",
557
+ key: "navigate_to",
558
+ displayer: "Navigate To",
559
+ value: "",
560
+ },
561
+ {
562
+ type: "select",
563
+ key: "menuType",
564
+ displayer: "Type",
565
+ value: "Dropdown",
566
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
567
+ },
568
+ {
569
+ type: "array",
570
+ key: "sub_items",
571
+ displayer: "Sub Items",
572
+ value: [
573
+ {
574
+ type: "object",
575
+ key: "sub_item",
576
+ displayer: "Sub Item",
577
+ value: [
578
+ {
579
+ type: "string",
580
+ key: "title",
581
+ displayer: "Title",
582
+ value: "About Us",
583
+ },
584
+ {
585
+ type: "page",
586
+ key: "navigate_to",
587
+ displayer: "Navigate To",
588
+ value: "",
589
+ },
590
+ {
591
+ type: "array",
592
+ key: "sub_items",
593
+ displayer: "Sub Items",
594
+ value: [
595
+ {
596
+ type: "object",
597
+ key: "sub_item",
598
+ displayer: "Sub Item",
599
+ value: [
600
+ {
601
+ type: "string",
602
+ key: "title",
603
+ displayer: "Title",
604
+ value: "",
605
+ },
606
+ {
607
+ type: "page",
608
+ key: "navigate_to",
609
+ displayer: "Navigate To",
610
+ value: "",
611
+ },
612
+ ],
613
+ },
614
+ ],
615
+ },
616
+ ],
617
+ },
618
+ {
619
+ type: "object",
620
+ key: "sub_item",
621
+ displayer: "Sub Item",
622
+ value: [
623
+ {
624
+ type: "string",
625
+ key: "title",
626
+ displayer: "Title",
627
+ value: "Lookbook",
628
+ },
629
+ {
630
+ type: "page",
631
+ key: "navigate_to",
632
+ displayer: "Navigate To",
633
+ value: "",
634
+ },
635
+ {
636
+ type: "array",
637
+ key: "sub_items",
638
+ displayer: "Sub Items",
639
+ value: [
640
+ {
641
+ type: "object",
642
+ key: "sub_item",
643
+ displayer: "Sub Item",
644
+ value: [
645
+ {
646
+ type: "string",
647
+ key: "title",
648
+ displayer: "Title",
649
+ value: "",
650
+ },
651
+ {
652
+ type: "page",
653
+ key: "navigate_to",
654
+ displayer: "Navigate To",
655
+ value: "",
656
+ },
657
+ ],
658
+ },
659
+ ],
660
+ },
661
+ ],
662
+ },
663
+ {
664
+ type: "object",
665
+ key: "sub_item",
666
+ displayer: "Sub Item",
667
+ value: [
668
+ {
669
+ type: "string",
670
+ key: "title",
671
+ displayer: "Title",
672
+ value: "Typography",
673
+ },
674
+ {
675
+ type: "page",
676
+ key: "navigate_to",
677
+ displayer: "Navigate To",
678
+ value: "",
679
+ },
680
+ {
681
+ type: "array",
682
+ key: "sub_items",
683
+ displayer: "Sub Items",
684
+ value: [
685
+ {
686
+ type: "object",
687
+ key: "sub_item",
688
+ displayer: "Sub Item",
689
+ value: [
690
+ {
691
+ type: "string",
692
+ key: "title",
693
+ displayer: "Title",
694
+ value: "",
695
+ },
696
+ {
697
+ type: "page",
698
+ key: "navigate_to",
699
+ displayer: "Navigate To",
700
+ value: "",
701
+ },
702
+ ],
703
+ },
704
+ ],
705
+ },
706
+ ],
707
+ },
708
+ {
709
+ type: "object",
710
+ key: "sub_item",
711
+ displayer: "Sub Item",
712
+ value: [
713
+ {
714
+ type: "string",
715
+ key: "title",
716
+ displayer: "Title",
717
+ value: "Shortcodes",
718
+ },
719
+ {
720
+ type: "page",
721
+ key: "navigate_to",
722
+ displayer: "Navigate To",
723
+ value: "",
724
+ },
725
+ {
726
+ type: "array",
727
+ key: "sub_items",
728
+ displayer: "Sub Items",
729
+ value: [
730
+ {
731
+ type: "object",
732
+ key: "sub_item",
733
+ displayer: "Sub Item",
734
+ value: [
735
+ {
736
+ type: "string",
737
+ key: "title",
738
+ displayer: "Title",
739
+ value: "",
740
+ },
741
+ {
742
+ type: "page",
743
+ key: "navigate_to",
744
+ displayer: "Navigate To",
745
+ value: "",
746
+ },
747
+ ],
748
+ },
749
+ ],
750
+ },
751
+ ],
752
+ },
753
+ {
754
+ type: "object",
755
+ key: "sub_item",
756
+ displayer: "Sub Item",
757
+ value: [
758
+ {
759
+ type: "string",
760
+ key: "title",
761
+ displayer: "Title",
762
+ value: "Cooming Soon",
763
+ },
764
+ {
765
+ type: "page",
766
+ key: "navigate_to",
767
+ displayer: "Navigate To",
768
+ value: "",
769
+ },
770
+ {
771
+ type: "array",
772
+ key: "sub_items",
773
+ displayer: "Sub Items",
774
+ value: [
775
+ {
776
+ type: "object",
777
+ key: "sub_item",
778
+ displayer: "Sub Item",
779
+ value: [
780
+ {
781
+ type: "string",
782
+ key: "title",
783
+ displayer: "Title",
784
+ value: "",
785
+ },
786
+ {
787
+ type: "page",
788
+ key: "navigate_to",
789
+ displayer: "Navigate To",
790
+ value: "",
791
+ },
792
+ ],
793
+ },
794
+ ],
795
+ },
796
+ ],
797
+ },
798
+ {
799
+ type: "object",
800
+ key: "sub_item",
801
+ displayer: "Sub Item",
802
+ value: [
803
+ {
804
+ type: "string",
805
+ key: "title",
806
+ displayer: "Title",
807
+ value: "Page 404",
808
+ },
809
+ {
810
+ type: "page",
811
+ key: "navigate_to",
812
+ displayer: "Navigate To",
813
+ value: "",
814
+ },
815
+ {
816
+ type: "array",
817
+ key: "sub_items",
818
+ displayer: "Sub Items",
819
+ value: [
820
+ {
821
+ type: "object",
822
+ key: "sub_item",
823
+ displayer: "Sub Item",
824
+ value: [
825
+ {
826
+ type: "string",
827
+ key: "title",
828
+ displayer: "Title",
829
+ value: "",
830
+ },
831
+ {
832
+ type: "page",
833
+ key: "navigate_to",
834
+ displayer: "Navigate To",
835
+ value: "",
836
+ },
837
+ ],
838
+ },
839
+ ],
840
+ },
841
+ ],
842
+ },
843
+ ],
844
+ },
845
+ ],
846
+ },
847
+ {
848
+ type: "object",
849
+ key: "item",
850
+ displayer: "Item",
851
+ value: [
852
+ {
853
+ type: "string",
854
+ key: "title",
855
+ displayer: "Title",
856
+ value: "News",
857
+ },
858
+ {
859
+ type: "page",
860
+ key: "navigate_to",
861
+ displayer: "Navigate To",
862
+ value: "",
863
+ },
864
+ {
865
+ type: "select",
866
+ key: "menuType",
867
+ displayer: "Type",
868
+ value: "Dropdown",
869
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
870
+ },
871
+ {
872
+ type: "array",
873
+ key: "sub_items",
874
+ displayer: "Sub Items",
875
+ value: [
876
+ {
877
+ type: "object",
878
+ key: "sub_item",
879
+ displayer: "Sub Item",
880
+ value: [
881
+ {
882
+ type: "string",
883
+ key: "title",
884
+ displayer: "Title",
885
+ value: "Blog Posts",
886
+ },
887
+ {
888
+ type: "page",
889
+ key: "navigate_to",
890
+ displayer: "Navigate To",
891
+ value: "",
892
+ },
893
+ {
894
+ type: "array",
895
+ key: "sub_items",
896
+ displayer: "Sub Items",
897
+ value: [
898
+ {
899
+ type: "object",
900
+ key: "sub_item",
901
+ displayer: "Sub Item",
902
+ value: [
903
+ {
904
+ type: "string",
905
+ key: "title",
906
+ displayer: "Title",
907
+ value: "",
908
+ },
909
+ {
910
+ type: "page",
911
+ key: "navigate_to",
912
+ displayer: "Navigate To",
913
+ value: "",
914
+ },
915
+ ],
916
+ },
917
+ ],
918
+ },
919
+ ],
920
+ },
921
+ {
922
+ type: "object",
923
+ key: "sub_item",
924
+ displayer: "Sub Item",
925
+ value: [
926
+ {
927
+ type: "string",
928
+ key: "title",
929
+ displayer: "Title",
930
+ value: "Masonary",
931
+ },
932
+ {
933
+ type: "page",
934
+ key: "navigate_to",
935
+ displayer: "Navigate To",
936
+ value: "",
937
+ },
938
+ {
939
+ type: "select",
940
+ key: "menuType",
941
+ displayer: "Type",
942
+ value: "Normal",
943
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
944
+ },
945
+ {
946
+ type: "array",
947
+ key: "sub_items",
948
+ displayer: "Sub Items",
949
+ value: [
950
+ {
951
+ type: "object",
952
+ key: "sub_item",
953
+ displayer: "Sub Item",
954
+ value: [
955
+ {
956
+ type: "string",
957
+ key: "title",
958
+ displayer: "Title",
959
+ value: "",
960
+ },
961
+ {
962
+ type: "page",
963
+ key: "navigate_to",
964
+ displayer: "Navigate To",
965
+ value: "",
966
+ },
967
+ ],
968
+ },
969
+ ],
970
+ },
971
+ ],
972
+ },
973
+ ],
974
+ },
975
+ ],
976
+ },
977
+ {
978
+ type: "object",
979
+ key: "item",
980
+ displayer: "Item",
981
+ value: [
982
+ {
983
+ type: "string",
984
+ key: "title",
985
+ displayer: "Title",
986
+ value: "Contacts",
987
+ },
988
+ {
989
+ type: "page",
990
+ key: "navigate_to",
991
+ displayer: "Navigate To",
992
+ value: "",
993
+ },
994
+ {
995
+ type: "select",
996
+ key: "menuType",
997
+ displayer: "Type",
998
+ value: "Normal",
999
+ additionalParams: { selectItems: ["Dropdown", "Normal"] },
1000
+ },
1001
+ {
1002
+ type: "array",
1003
+ key: "sub_items",
1004
+ displayer: "Sub Items",
1005
+ value: [
1006
+ {
1007
+ type: "object",
1008
+ key: "sub_item",
1009
+ displayer: "Sub Item",
1010
+ value: [
1011
+ {
1012
+ type: "string",
1013
+ key: "title",
1014
+ displayer: "Title",
1015
+ value: "Contacts Sub Item",
1016
+ },
1017
+ {
1018
+ type: "page",
1019
+ key: "navigate_to",
1020
+ displayer: "Navigate To",
1021
+ value: "",
1022
+ },
1023
+ {
1024
+ type: "array",
1025
+ key: "sub_items",
1026
+ displayer: "Sub Items",
1027
+ value: [
1028
+ {
1029
+ type: "object",
1030
+ key: "sub_item",
1031
+ displayer: "Sub Item",
1032
+ value: [
1033
+ {
1034
+ type: "string",
1035
+ key: "title",
1036
+ displayer: "Title",
1037
+ value: "Contacts Sub Sub Item ",
1038
+ },
1039
+ {
1040
+ type: "page",
1041
+ key: "navigate_to",
1042
+ displayer: "Navigate To",
1043
+ value: "",
1044
+ },
1045
+ ],
1046
+ },
1047
+ ],
1048
+ },
1049
+ ],
1050
+ },
1051
+ ],
1052
+ },
1053
+ ],
1054
+ },
1055
+ ],
1056
+ });
1057
+
1058
+ this.addProp({
1059
+ type: "object",
1060
+ key: "navigationIcons",
1061
+ displayer: "Navigation Icons",
1062
+ value: [
1063
+ {
1064
+ type: "media",
1065
+ key: "dropdownIcon",
1066
+ displayer: "Dropdown Icon",
1067
+ additionalParams: {
1068
+ availableTypes: ["icon", "image"],
1069
+ },
1070
+ value: {
1071
+ type: "icon",
1072
+ name: "MdArrowDropDown",
1073
+ },
1074
+ },
1075
+ {
1076
+ type: "media",
1077
+ key: "rightIcon",
1078
+ displayer: "Right Arrow Icon",
1079
+ additionalParams: {
1080
+ availableTypes: ["icon", "image"],
1081
+ },
1082
+ value: {
1083
+ type: "icon",
1084
+ name: "MdKeyboardArrowRight",
1085
+ },
1086
+ },
1087
+ {
1088
+ type: "media",
1089
+ key: "hamburgerIcon",
1090
+ displayer: "Hamburger Icon",
1091
+ additionalParams: {
1092
+ availableTypes: ["icon", "image"],
1093
+ },
1094
+ value: {
1095
+ type: "icon",
1096
+ name: "MdMenu",
1097
+ },
1098
+ },
1099
+ {
1100
+ type: "media",
1101
+ key: "closeIcon",
1102
+ displayer: "Close Icon",
1103
+ additionalParams: {
1104
+ availableTypes: ["icon", "image"],
1105
+ },
1106
+ value: {
1107
+ type: "icon",
1108
+ name: "RxCross2",
1109
+ },
1110
+ },
1111
+ ],
1112
+ });
1113
+
1114
+ this.addProp({
1115
+ type: "array",
1116
+ key: "icons",
1117
+ displayer: "Icons",
1118
+ value: [
1119
+ {
1120
+ type: "object",
1121
+ key: "item",
1122
+ displayer: "Item",
1123
+ value: [
1124
+ {
1125
+ type: "media",
1126
+ key: "icon",
1127
+ displayer: "Icon",
1128
+ additionalParams: {
1129
+ availableTypes: ["icon"],
1130
+ },
1131
+ value: {
1132
+ type: "icon",
1133
+ name: "FaTelegram",
1134
+ },
1135
+ },
1136
+ {
1137
+ type: "page",
1138
+ key: "page",
1139
+ displayer: "Navigate To",
1140
+ value: "",
1141
+ },
1142
+ ],
1143
+ },
1144
+ {
1145
+ type: "object",
1146
+ key: "item",
1147
+ displayer: "Item",
1148
+ value: [
1149
+ {
1150
+ type: "media",
1151
+ key: "icon",
1152
+ displayer: "Icon",
1153
+ additionalParams: {
1154
+ availableTypes: ["icon"],
1155
+ },
1156
+ value: {
1157
+ type: "icon",
1158
+ name: "FaTwitter",
1159
+ },
1160
+ },
1161
+ {
1162
+ type: "page",
1163
+ key: "page",
1164
+ displayer: "Navigate To",
1165
+ value: "",
1166
+ },
1167
+ ],
1168
+ },
1169
+ {
1170
+ type: "object",
1171
+ key: "item",
1172
+ displayer: "Item",
1173
+ value: [
1174
+ {
1175
+ type: "media",
1176
+ key: "icon",
1177
+ displayer: "Icon",
1178
+ additionalParams: {
1179
+ availableTypes: ["icon"],
1180
+ },
1181
+ value: {
1182
+ type: "icon",
1183
+ name: "FaInstagram",
1184
+ },
1185
+ },
1186
+ {
1187
+ type: "page",
1188
+ key: "page",
1189
+ displayer: "Navigate To",
1190
+ value: "",
1191
+ },
1192
+ ],
1193
+ },
1194
+ {
1195
+ type: "object",
1196
+ key: "item",
1197
+ displayer: "Item",
1198
+ value: [
1199
+ {
1200
+ type: "media",
1201
+ key: "icon",
1202
+ displayer: "Icon",
1203
+ additionalParams: {
1204
+ availableTypes: ["icon"],
1205
+ },
1206
+ value: {
1207
+ type: "icon",
1208
+ name: "FaLinkedin",
1209
+ },
1210
+ },
1211
+ {
1212
+ type: "page",
1213
+ key: "page",
1214
+ displayer: "Navigate To",
1215
+ value: "",
1216
+ },
1217
+ ],
1218
+ },
1219
+ ],
1220
+ });
1221
+ this.addProp({
1222
+ type:"multiSelect",
1223
+ key: "animations",
1224
+ displayer: "Animations",
1225
+ value: ["animation1","animation2"],
1226
+ additionalParams:{
1227
+ selectItems:["animation1", "animation2"]
1228
+ }
1229
+ });
1230
+ this.setComponentState("isScrolled", false);
1231
+ this.setComponentState("hamburgerNavActive", false);
1232
+ this.setComponentState("navActive", false);
1233
+ this.setComponentState("subNavActiveIndex", null);
1234
+ this.setComponentState("subNavActive", null);
1235
+ this.setComponentState("changeBackground", false);
1236
+ this.setComponentState("slider-ref", React.createRef());
1237
+ this.setComponentState("isBigScreen", false);
1238
+ this.setComponentState("navbarOverflowShow", false);
1239
+ }
1240
+
1241
+ static getName(): string {
1242
+ return "Navbar 3";
1243
+ }
1244
+
1245
+ handleOpenMenu = () => {
1246
+ Base.Navigator.changeScrollBehaviour("hidden");
1247
+ const scroll = Base.Navigator.getWrapperContainer()?.scrollY;
1248
+ if (scroll < 50) {
1249
+ this.setComponentState("changeBackground", true);
1250
+ }
1251
+ setTimeout(() => {
1252
+ this.setComponentState("hamburgerNavActive", true);
1253
+ setTimeout(() => {
1254
+ this.setComponentState("navbarOverflowShow", true);
1255
+ }, 300)
1256
+ }, 100);
1257
+ };
1258
+
1259
+ handleCloseMenu = () => {
1260
+ Base.Navigator.changeScrollBehaviour("auto");
1261
+ this.setComponentState("hamburgerNavActive", false);
1262
+ this.setComponentState("navbarOverflowShow", false);
1263
+ setTimeout(() => {
1264
+ this.setComponentState("changeBackground", false);
1265
+ }, 200);
1266
+ };
1267
+
1268
+ navClick(index: number) {
1269
+ const isActive = this.getComponentState("subNavActiveIndex") === index;
1270
+ this.setComponentState("navActive", !isActive);
1271
+ this.setComponentState("subNavActiveIndex", isActive ? null : index);
1272
+ this.setComponentState("subNavActive", null);
1273
+ }
1274
+
1275
+ subNavClick(index: any) {
1276
+ const currentValue = this.getComponentState("subNavActive");
1277
+ if (currentValue === index) {
1278
+ this.setComponentState("subNavActive", null);
1279
+ } else {
1280
+ this.setComponentState("subNavActive", index);
1281
+ }
1282
+ }
1283
+
1284
+ render() {
1285
+ const lane = this.castToObject<Lane>("lane");
1286
+ const position = this.getPropValue("position");
1287
+
1288
+ const menuItems = this.castToObject<Item[]>("menuItems");
1289
+ const icons = this.castToObject<any[]>("icons");
1290
+ const navigationIcons = this.castToObject<{
1291
+ dropdownIcon?: TypeMediaInputValue;
1292
+ rightIcon?: TypeMediaInputValue;
1293
+ hamburgerIcon?: TypeMediaInputValue;
1294
+ closeIcon?: TypeMediaInputValue;
1295
+ }>("navigationIcons");
1296
+
1297
+ const defaultLogo = this.castToObject<Logo>("defaultLogo");
1298
+ const absoluteLogo = this.castToObject<Logo>("absoluteLogo");
1299
+
1300
+ const hamburgerNavActive = this.getComponentState("hamburgerNavActive");
1301
+ const isScrolled = this.getComponentState("isScrolled");
1302
+ const isStickyTransparent = position === "Sticky Transparent";
1303
+ const isAbsolute = position === "Absolute";
1304
+ const transparentBackground =
1305
+ (isStickyTransparent && !isScrolled) || isAbsolute;
1306
+
1307
+ const changeBackground = this.getComponentState("changeBackground");
1308
+
1309
+ const currentLogo =
1310
+ (transparentBackground && !changeBackground)
1311
+ ? absoluteLogo
1312
+ : defaultLogo;
1313
+
1314
+ const language = this.castToObject<Language>("language");
1315
+
1316
+ const laneContainer =
1317
+ this.castToString(lane.contact) ||
1318
+ this.castToString(lane.news) ||
1319
+ language.showLanguage;
1320
+
1321
+ const isBigScreen = this.getComponentState("isBigScreen");
1322
+ const isVisible = (!isBigScreen && hamburgerNavActive);
1323
+
1324
+ const animations = this.getPropValue("animations") && this.getPropValue("animations").map((animation:string) => this.decorateCSS(animation)).join(" ")
1325
+
1326
+ return (
1327
+ <>
1328
+ {laneContainer && (
1329
+ <Base.Container className={this.decorateCSS("laneContainer")}>
1330
+ <Base.MaxContent className={this.decorateCSS("lane")}>
1331
+ {this.castToString(lane.contact) && (
1332
+ <Base.P className={this.decorateCSS("laneContact")}>
1333
+ {lane?.contact}
1334
+ </Base.P>
1335
+ )}
1336
+ {this.castToString(lane.news) && (
1337
+ <Base.P className={this.decorateCSS("laneNews")}>{lane?.news}</Base.P>
1338
+ )}
1339
+
1340
+ {language.showLanguage && (
1341
+ <div className={this.decorateCSS("loacalizationContainer")}>
1342
+ <Base.Language
1343
+ type="dropdown"
1344
+ title={language.label}
1345
+ icon={language.icon}
1346
+ dropdownButtonClassName={`${this.decorateCSS("localization")}`}
1347
+ dropdownLabelClassName={`${this.decorateCSS("localizationLabel")} ${animations}`}
1348
+ iconClassName={this.decorateCSS("languageIcon")}
1349
+ dropdownItemClassName={this.decorateCSS("localizationItem")}
1350
+ dropdownContentClassName={`${this.decorateCSS("localizationContent")} ${animations}`}
1351
+ divider={language.showDivider}
1352
+ />
1353
+ </div>
1354
+ )}
1355
+ </Base.MaxContent>
1356
+ </Base.Container>
1357
+ )}
1358
+
1359
+ <Base.Navigator.Container
1360
+ position={position}
1361
+ className={this.decorateCSS("pcNavbarContainer")}
1362
+ positionContainer={`${this.decorateCSS("pcNavbarPositionContainer")} ${hamburgerNavActive ? this.decorateCSS("hamburgerActive") : ""}`}
1363
+ setIsBigScreen={(value: boolean) =>
1364
+ this.setComponentState("isBigScreen", value)
1365
+ }
1366
+ setIsScrolled={(value: boolean) =>
1367
+ this.setComponentState("isScrolled", value)
1368
+ }
1369
+ hamburgerNavActive={hamburgerNavActive}
1370
+ >
1371
+ <Base.MaxContent
1372
+ className={`${this.decorateCSS("maxContent")} ${
1373
+ transparentBackground
1374
+ ? this.decorateCSS("transparentBackground")
1375
+ : ""
1376
+ }`}
1377
+ >
1378
+ {currentLogo.image && (
1379
+ <div className={this.decorateCSS("logo")}>
1380
+ <ComposerLink path={currentLogo.navigateTo}>
1381
+ <Base.Media
1382
+ value={currentLogo.image}
1383
+ className={this.decorateCSS("logoImage")}
1384
+ />
1385
+ </ComposerLink>
1386
+ </div>
1387
+ )}
1388
+ {menuItems.length > 0 && (
1389
+ <nav className={this.decorateCSS("pcNavbar")}>
1390
+ {menuItems.map(
1391
+ (item: Item, index: any) =>
1392
+ this.castToString(item.title) && (
1393
+ <div
1394
+ key={index}
1395
+ className={this.decorateCSS("menuItemContainer")}
1396
+ >
1397
+ <ComposerLink path={item.navigate_to}>
1398
+ <div className={this.decorateCSS("menuItem")}>
1399
+ <Base.P className={`${this.decorateCSS("menuItemTitle")} ${animations}`}>
1400
+ {item.title}
1401
+ </Base.P>
1402
+ {item.menuType === "Dropdown" && (
1403
+ <Base.Media
1404
+ value={navigationIcons?.dropdownIcon}
1405
+ className={this.decorateCSS("dropdownIcon")}
1406
+ />
1407
+ )}
1408
+ </div>
1409
+ </ComposerLink>
1410
+ {item.menuType === "Dropdown" &&
1411
+ item.sub_items?.length > 0 && (
1412
+ <div className={this.decorateCSS("dropdown")}>
1413
+ {item.sub_items?.map(
1414
+ (subItem: Item, subIndex: number) =>
1415
+ this.castToString(subItem.title) && (
1416
+ <div
1417
+ key={subIndex}
1418
+ className={`${this.decorateCSS("dropdownItemContainer")} ${animations}`}
1419
+ >
1420
+ <div
1421
+ className={this.decorateCSS(
1422
+ "dropdownItem"
1423
+ )}
1424
+ >
1425
+ <ComposerLink
1426
+ path={subItem.navigate_to}
1427
+ >
1428
+ <div
1429
+ className={this.decorateCSS(
1430
+ "dropdownItemContent"
1431
+ )}
1432
+ >
1433
+ <Base.P className={`${this.decorateCSS("dropdownItemTitle")} ${animations}`}>
1434
+ {subItem.title}
1435
+ </Base.P>
1436
+ </div>
1437
+ </ComposerLink>
1438
+ {subItem.sub_items.length > 0 &&
1439
+ subItem.sub_items.some((item: Item) =>
1440
+ this.castToString(item.title)
1441
+ ) && (
1442
+ <Base.Media
1443
+ value={navigationIcons?.rightIcon}
1444
+ className={this.decorateCSS("rightIcon")}
1445
+ />
1446
+ )}
1447
+ </div>
1448
+ {subItem.sub_items.length > 0 &&
1449
+ subItem.sub_items.some((item: Item) =>
1450
+ this.castToString(item.title)
1451
+ ) && (
1452
+ <div
1453
+ className={this.decorateCSS(
1454
+ "subdropdown"
1455
+ )}
1456
+ >
1457
+ {subItem.sub_items.map(
1458
+ (
1459
+ subSubItem: Item,
1460
+ subSubIndex: number
1461
+ ) =>
1462
+ this.castToString(
1463
+ subSubItem.title
1464
+ ) && (
1465
+ <div key={subSubIndex} className={`${this.decorateCSS("subdropdownItem")} ${animations}`}>
1466
+ <ComposerLink
1467
+ path={
1468
+ subSubItem.navigate_to
1469
+ }
1470
+ >
1471
+ <Base.P
1472
+ className={this.decorateCSS(
1473
+ "dropdownItemTitle"
1474
+ )}
1475
+ >
1476
+ {subSubItem.title}
1477
+ </Base.P>
1478
+ </ComposerLink>
1479
+ </div>
1480
+ )
1481
+ )}
1482
+ </div>
1483
+ )}
1484
+ </div>
1485
+ )
1486
+ )}
1487
+ </div>
1488
+ )}
1489
+ </div>
1490
+ )
1491
+ )}
1492
+ </nav>
1493
+ )}
1494
+
1495
+ {icons?.length > 0 && (
1496
+ <div className={this.decorateCSS("icons")}>
1497
+ {icons?.map((item: any, index: number) => {
1498
+ return (
1499
+ item.icon && (
1500
+ <ComposerLink path={item.page}>
1501
+ <div className={this.decorateCSS("icon-element")}>
1502
+ <Base.Media
1503
+ value={item.icon}
1504
+ className={this.decorateCSS("icon")}
1505
+ />
1506
+ </div>
1507
+ </ComposerLink>
1508
+ )
1509
+ );
1510
+ })}
1511
+ </div>
1512
+ )}
1513
+ </Base.MaxContent>
1514
+ </Base.Navigator.Container>
1515
+
1516
+ <Base.Navigator.Container
1517
+ position={position}
1518
+ className={`${this.decorateCSS(
1519
+ "smallDeviceNavbarContainer"
1520
+ )} ${changeBackground ? this.decorateCSS("filledBackground") : ""}`}
1521
+ hamburgerNavActive={hamburgerNavActive}
1522
+ setIsBigScreen={(value: boolean) =>
1523
+ this.setComponentState("isBigScreen", value)
1524
+ }
1525
+ setIsScrolled={(value: boolean) =>
1526
+ this.setComponentState("isScrolled", value)
1527
+ }
1528
+ positionContainer={`${this.decorateCSS("smallDeviceNavbarPositionContainer")} ${hamburgerNavActive ? this.decorateCSS("hamburgerActive") : ""}`}
1529
+ >
1530
+ <Base.MaxContent
1531
+ className={`${this.decorateCSS("maxContent")} ${
1532
+ transparentBackground
1533
+ ? this.decorateCSS("transparentBackground")
1534
+ : ""
1535
+ }`}
1536
+ >
1537
+ {currentLogo.image && (
1538
+ <div className={this.decorateCSS("logo")} onClick={() => this.handleCloseMenu()}>
1539
+ <ComposerLink path={currentLogo.navigateTo}>
1540
+ <Base.Media
1541
+ value={currentLogo.image}
1542
+ className={this.decorateCSS("logoImage")}
1543
+ />
1544
+ </ComposerLink>
1545
+ </div>
1546
+ )}
1547
+ <div className={this.decorateCSS("mobileRight")}>
1548
+ {(language.showLocalizationAlways && language.showLanguage) &&
1549
+ <div className={this.decorateCSS("loacalizationContainer")}>
1550
+ <Base.Language
1551
+ type="dropdown"
1552
+ title={language.label}
1553
+ icon={language.icon && typeof language.icon === "object" && language.icon.type === "icon" ? language.icon.name : "GrLanguage"}
1554
+ dropdownButtonClassName={`${this.decorateCSS(
1555
+ "localization"
1556
+ )}`}
1557
+ dropdownLabelClassName={`${this.decorateCSS(
1558
+ "localizationLabel"
1559
+ )}`}
1560
+ iconClassName={this.decorateCSS("languageIcon")}
1561
+ dropdownItemClassName={this.decorateCSS("localizationItem")}
1562
+ dropdownContentClassName={this.decorateCSS(
1563
+ "localizationContent"
1564
+ )}
1565
+ divider={language.showDivider}
1566
+ />
1567
+ </div>
1568
+ }
1569
+ {hamburgerNavActive ? (
1570
+ <div onClick={() => this.handleCloseMenu()}>
1571
+ <Base.Media
1572
+ value={navigationIcons?.closeIcon}
1573
+ className={this.decorateCSS("closeIcon")}
1574
+ />
1575
+ </div>
1576
+ ) : (
1577
+ <div onClick={() => this.handleOpenMenu()}>
1578
+ <Base.Media
1579
+ value={navigationIcons?.hamburgerIcon}
1580
+ className={this.decorateCSS("hamburgerIcon")}
1581
+ />
1582
+ </div>
1583
+ )}
1584
+ </div>
1585
+
1586
+
1587
+ <div
1588
+ className={`${this.decorateCSS("hamburgerNav")} ${
1589
+ hamburgerNavActive ? this.decorateCSS("active") : ""
1590
+ } ${this.getComponentState("navbarOverflowShow") ? this.decorateCSS("overflowShow") : ""}`}
1591
+ >
1592
+ <Base.Container
1593
+ className={this.decorateCSS("hamburgerNavContainer")}
1594
+ >
1595
+ <Base.MaxContent
1596
+ className={this.decorateCSS("hamburgerNavMaxContent")}
1597
+ >
1598
+ {menuItems.length > 0 && (
1599
+ <nav className={this.decorateCSS("hamburgerMenu")}>
1600
+ {menuItems.map(
1601
+ (item: Item, index: number) =>
1602
+ this.castToString(item.title) && (
1603
+ <div
1604
+ key={index}
1605
+ className={this.decorateCSS("hamburgerMenuItem")}
1606
+ >
1607
+ <div
1608
+ className={this.decorateCSS(
1609
+ "hamburgerMenuItemHeader"
1610
+ )}
1611
+ onClick={() => this.navClick(index)}
1612
+ >
1613
+ <ComposerLink path={item.navigate_to}>
1614
+ <Base.P
1615
+ className={`${this.decorateCSS(
1616
+ "hamburgerMenuItemTitle"
1617
+ )}`}
1618
+ onClick={() => this.handleCloseMenu()}
1619
+ >
1620
+ {item.title}
1621
+ </Base.P>
1622
+ </ComposerLink>
1623
+ {item.menuType === "Dropdown" && (
1624
+ <Base.Media
1625
+ value={navigationIcons?.dropdownIcon}
1626
+ className={`${this.decorateCSS(
1627
+ "dropdownIcon"
1628
+ )} ${
1629
+ this.getComponentState(
1630
+ "subNavActiveIndex"
1631
+ ) === index
1632
+ ? this.decorateCSS("active")
1633
+ : ""
1634
+ }`}
1635
+ />
1636
+ )}
1637
+ </div>
1638
+ {item.menuType === "Dropdown" && (
1639
+ <div
1640
+ className={`${this.decorateCSS(
1641
+ "hamburgerSubmenu"
1642
+ )} ${
1643
+ this.getComponentState(
1644
+ "subNavActiveIndex"
1645
+ ) === index
1646
+ ? this.decorateCSS("active")
1647
+ : ""
1648
+ }`}
1649
+ >
1650
+ {item.sub_items?.map(
1651
+ (subItem: Item, subIndex: number) =>
1652
+ this.castToString(subItem.title) && (
1653
+ <div
1654
+ key={subIndex}
1655
+ className={this.decorateCSS(
1656
+ "hamburgerSubmenuItem"
1657
+ )}
1658
+ >
1659
+ <div
1660
+ className={this.decorateCSS(
1661
+ "hamburgerSubmenuItemHeader"
1662
+ )}
1663
+ onClick={() =>
1664
+ this.subNavClick(
1665
+ `${index}-${subIndex}`
1666
+ )
1667
+ }
1668
+ >
1669
+ <ComposerLink
1670
+ path={subItem.navigate_to}
1671
+ >
1672
+ <Base.P
1673
+ className={this.decorateCSS(
1674
+ "hamburgerDropdownItemTitle"
1675
+ )}
1676
+ onClick={() => this.handleCloseMenu()}
1677
+ >
1678
+ {subItem.title}
1679
+ </Base.P>
1680
+ </ComposerLink>
1681
+ {subItem.sub_items.length > 0 &&
1682
+ subItem.sub_items.some(
1683
+ (item: any) =>
1684
+ this.castToString(item.title)
1685
+ ) && (
1686
+ <Base.Media
1687
+ value={navigationIcons?.rightIcon}
1688
+ className={`${this.decorateCSS(
1689
+ "rightIcon"
1690
+ )} ${
1691
+ this.getComponentState(
1692
+ "subNavActive"
1693
+ ) ===
1694
+ `${index}-${subIndex}`
1695
+ ? this.decorateCSS(
1696
+ "active"
1697
+ )
1698
+ : ""
1699
+ }`}
1700
+ />
1701
+ )}
1702
+ </div>
1703
+ {subItem.sub_items.length > 0 &&
1704
+ subItem.sub_items.some(
1705
+ (item: any) =>
1706
+ this.castToString(item.title)
1707
+ ) && (
1708
+ <div
1709
+ className={`${this.decorateCSS(
1710
+ "hamburgerSubSubmenu"
1711
+ )} ${
1712
+ this.getComponentState(
1713
+ "subNavActive"
1714
+ ) === `${index}-${subIndex}`
1715
+ ? this.decorateCSS("active")
1716
+ : ""
1717
+ }`}
1718
+ >
1719
+ {subItem.sub_items.map(
1720
+ (
1721
+ subSubItem: Item,
1722
+ subSubIndex: number
1723
+ ) =>
1724
+ this.castToString(
1725
+ subSubItem.title
1726
+ ) && (
1727
+ <div
1728
+ key={subSubIndex}
1729
+ className={this.decorateCSS(
1730
+ "hamburgerSubSubmenuItem"
1731
+ )}
1732
+ >
1733
+ <ComposerLink
1734
+ path={
1735
+ subSubItem.navigate_to
1736
+ }
1737
+ >
1738
+ <Base.P
1739
+ className={this.decorateCSS(
1740
+ "hamburgerSubSubmenuItemTitle"
1741
+ )}
1742
+ onClick={() => this.handleCloseMenu()}
1743
+ >
1744
+ {subSubItem.title}
1745
+ </Base.P>
1746
+ </ComposerLink>
1747
+ </div>
1748
+ )
1749
+ )}
1750
+ </div>
1751
+ )}
1752
+ </div>
1753
+ )
1754
+ )}
1755
+ </div>
1756
+ )}
1757
+ </div>
1758
+ )
1759
+ )}
1760
+
1761
+ {(language.showLanguage && !language.showLocalizationAlways) && (
1762
+ <Base.Language
1763
+ type="accordion"
1764
+ title={language.label}
1765
+ headerClassName={`${this.decorateCSS("localization")}`}
1766
+ itemClassName={`${this.decorateCSS("localizationItem")} ${animations}`}
1767
+ titleClassName={`${this.decorateCSS("localizationItemTitle")} ${animations}`}
1768
+ accordionIconClassName={this.decorateCSS("accordionIcon")}
1769
+ />
1770
+ )}
1771
+
1772
+ </nav>
1773
+ )}
1774
+ </Base.MaxContent>
1775
+ </Base.Container>
1776
+ </div>
1777
+ </Base.MaxContent>
1778
+ </Base.Navigator.Container>
1779
+
1780
+ <Base.Overlay
1781
+ clasName = {this.decorateCSS("overlay")}
1782
+ isVisible = {isVisible}
1783
+ onClick={() => this.handleCloseMenu()}
1784
+ />
1785
+ </>
1786
+ );
1787
+ }
1788
+ }
1789
+
1790
+ export default Navbar3;