@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.
- package/EventEmitter.ts +40 -0
- package/InlineEditorProvider.tsx +30 -0
- package/composer-base-components/base/base.module.scss +638 -0
- package/composer-base-components/base/base.tsx +692 -0
- package/composer-base-components/base/utitilities/iconList.ts +65 -0
- package/composer-base-components/base/utitilities/viewports.module.scss +2 -0
- package/composer-base-components/close/close.module.scss +16 -0
- package/composer-base-components/close/close.tsx +14 -0
- package/composer-base-components/embeded-link/embeded-link.tsx +38 -0
- package/composer-base-components/map/map.tsx +267 -0
- package/composer-base-components/media/media.tsx +0 -0
- package/composer-base-components/modal/index.ts +4 -0
- package/composer-base-components/modal/modal.module.scss +19 -0
- package/composer-base-components/modal/modal.service.ts +27 -0
- package/composer-base-components/modal/modal.tsx +22 -0
- package/composer-base-components/slider/slider.tsx +120 -0
- package/composer-base-components/ui/accordion/Accordion.module.scss +46 -0
- package/composer-base-components/ui/accordion/Accordion.tsx +48 -0
- package/composer-base-components/ui/cookie/Cookie.module.scss +473 -0
- package/composer-base-components/ui/cookie/Cookie.tsx +69 -0
- package/composer-base-components/ui/dropdown/Dropdown.module.scss +79 -0
- package/composer-base-components/ui/dropdown/Dropdown.tsx +133 -0
- package/context/DataContext.tsx +79 -0
- package/custom-component-loader.ts +84 -0
- package/custom-hooks/hex-to-rgb.tsx +6 -0
- package/custom-hooks/input-templates.tsx +243 -0
- package/custom-hooks/load-font.tsx +9 -0
- package/custom-hooks/placeholder-filler.tsx +23 -0
- package/custom-hooks/project.ts +9 -0
- package/editor-components/ComponentRegistery.tsx +42 -0
- package/editor-components/EditorComponent.tsx +1103 -0
- package/editor-components/Image_gallery/image_gallery_1/image-gallery1.module.scss +130 -0
- package/editor-components/Image_gallery/image_gallery_1/image-gallery1.tsx +619 -0
- package/editor-components/Image_gallery/image_gallery_10/image-gallery10.module.scss +179 -0
- package/editor-components/Image_gallery/image_gallery_10/image-gallery10.tsx +682 -0
- package/editor-components/Image_gallery/image_gallery_11/image-gallery11.module.scss +394 -0
- package/editor-components/Image_gallery/image_gallery_11/image-gallery11.tsx +595 -0
- package/editor-components/Image_gallery/image_gallery_2/image-gallery2.module.scss +267 -0
- package/editor-components/Image_gallery/image_gallery_2/image-gallery2.tsx +1028 -0
- package/editor-components/Image_gallery/image_gallery_3/image-gallery3.module.scss +158 -0
- package/editor-components/Image_gallery/image_gallery_3/image-gallery3.tsx +320 -0
- package/editor-components/Image_gallery/image_gallery_4/image-gallery4.module.scss +264 -0
- package/editor-components/Image_gallery/image_gallery_4/image-gallery4.tsx +787 -0
- package/editor-components/Image_gallery/image_gallery_5/image-gallery5.module.scss +216 -0
- package/editor-components/Image_gallery/image_gallery_5/image-gallery5.tsx +404 -0
- package/editor-components/Image_gallery/image_gallery_6/image-gallery6.module.scss +359 -0
- package/editor-components/Image_gallery/image_gallery_6/image-gallery6.tsx +824 -0
- package/editor-components/Image_gallery/image_gallery_7/image-gallery7.module.scss +142 -0
- package/editor-components/Image_gallery/image_gallery_7/image-gallery7.tsx +515 -0
- package/editor-components/Image_gallery/image_gallery_8/image-gallery8.module.scss +96 -0
- package/editor-components/Image_gallery/image_gallery_8/image-gallery8.tsx +443 -0
- package/editor-components/Image_gallery/image_gallery_9/image-gallery9.module.scss +196 -0
- package/editor-components/Image_gallery/image_gallery_9/image-gallery9.tsx +627 -0
- package/editor-components/about/about1/about1.module.scss +162 -0
- package/editor-components/about/about1/about1.tsx +343 -0
- package/editor-components/about/about10/about10.module.scss +273 -0
- package/editor-components/about/about10/about10.tsx +297 -0
- package/editor-components/about/about11/about11.module.scss +191 -0
- package/editor-components/about/about11/about11.tsx +267 -0
- package/editor-components/about/about12/about12.module.scss +195 -0
- package/editor-components/about/about12/about12.tsx +204 -0
- package/editor-components/about/about13/about13.module.scss +144 -0
- package/editor-components/about/about13/about13.tsx +118 -0
- package/editor-components/about/about14/about14.module.scss +193 -0
- package/editor-components/about/about14/about14.tsx +183 -0
- package/editor-components/about/about15/about15.module.scss +190 -0
- package/editor-components/about/about15/about15.tsx +194 -0
- package/editor-components/about/about16/about16.module.scss +198 -0
- package/editor-components/about/about16/about16.tsx +280 -0
- package/editor-components/about/about2/about2.module.scss +139 -0
- package/editor-components/about/about2/about2.tsx +121 -0
- package/editor-components/about/about3/about3.module.scss +249 -0
- package/editor-components/about/about3/about3.tsx +270 -0
- package/editor-components/about/about4/about4.module.scss +50 -0
- package/editor-components/about/about4/about4.tsx +88 -0
- package/editor-components/about/about5/about5.module.scss +188 -0
- package/editor-components/about/about5/about5.tsx +187 -0
- package/editor-components/about/about6/about6.module.scss +84 -0
- package/editor-components/about/about6/about6.tsx +141 -0
- package/editor-components/about/about7/about7.module.scss +268 -0
- package/editor-components/about/about7/about7.tsx +272 -0
- package/editor-components/about/about8/about8.module.scss +159 -0
- package/editor-components/about/about8/about8.tsx +240 -0
- package/editor-components/about/about9/about9.module.scss +79 -0
- package/editor-components/about/about9/about9.tsx +142 -0
- package/editor-components/blog/blog1/blog1.module.scss +542 -0
- package/editor-components/blog/blog1/blog1.tsx +540 -0
- package/editor-components/blog/blog2/blog2.module.scss +377 -0
- package/editor-components/blog/blog2/blog2.tsx +317 -0
- package/editor-components/blog/blog3/blog3.module.scss +477 -0
- package/editor-components/blog/blog3/blog3.tsx +709 -0
- package/editor-components/breadcrumb/breadcrumb1/breadcrumb1.module.scss +142 -0
- package/editor-components/breadcrumb/breadcrumb1/breadcrumb1.tsx +236 -0
- package/editor-components/breadcrumb/breadcrumb2/breadcrumb2.module.scss +139 -0
- package/editor-components/breadcrumb/breadcrumb2/breadcrumb2.tsx +224 -0
- package/editor-components/breadcrumb/breadcrumb3/breadcrumb3.module.scss +193 -0
- package/editor-components/breadcrumb/breadcrumb3/breadcrumb3.tsx +218 -0
- package/editor-components/breadcrumb/breadcrumb4/breadcrumb4.module.scss +201 -0
- package/editor-components/breadcrumb/breadcrumb4/breadcrumb4.tsx +297 -0
- package/editor-components/breadcrumb/breadcrumb5/breadcrumb5.module.scss +90 -0
- package/editor-components/breadcrumb/breadcrumb5/breadcrumb5.tsx +161 -0
- package/editor-components/breadcrumb/breadcrumb6/breadcrumb6.module.scss +168 -0
- package/editor-components/breadcrumb/breadcrumb6/breadcrumb6.tsx +235 -0
- package/editor-components/call_to_action/call_to_action1/call_to_action1.module.scss +41 -0
- package/editor-components/call_to_action/call_to_action1/call_to_action1.tsx +84 -0
- package/editor-components/call_to_action/call_to_action10/call_to_action10.module.scss +96 -0
- package/editor-components/call_to_action/call_to_action10/call_to_action10.tsx +233 -0
- package/editor-components/call_to_action/call_to_action11/call_to_action11.module.scss +99 -0
- package/editor-components/call_to_action/call_to_action11/call_to_action11.tsx +73 -0
- package/editor-components/call_to_action/call_to_action12/call_to_action12.module.scss +146 -0
- package/editor-components/call_to_action/call_to_action12/call_to_action12.tsx +147 -0
- package/editor-components/call_to_action/call_to_action13/call_to_action13.module.scss +149 -0
- package/editor-components/call_to_action/call_to_action13/call_to_action13.tsx +127 -0
- package/editor-components/call_to_action/call_to_action14/call_to_action14.module.scss +176 -0
- package/editor-components/call_to_action/call_to_action14/call_to_action14.tsx +99 -0
- package/editor-components/call_to_action/call_to_action15/call_to_action15.module.scss +32 -0
- package/editor-components/call_to_action/call_to_action15/call_to_action15.tsx +87 -0
- package/editor-components/call_to_action/call_to_action16/call_to_action16.module.scss +54 -0
- package/editor-components/call_to_action/call_to_action16/call_to_action16.tsx +95 -0
- package/editor-components/call_to_action/call_to_action17/call_to_action17.module.scss +43 -0
- package/editor-components/call_to_action/call_to_action17/call_to_action17.tsx +80 -0
- package/editor-components/call_to_action/call_to_action18/call_to_action18.module.scss +88 -0
- package/editor-components/call_to_action/call_to_action18/call_to_action18.tsx +104 -0
- package/editor-components/call_to_action/call_to_action2/call_to_action2.module.scss +271 -0
- package/editor-components/call_to_action/call_to_action2/call_to_action2.tsx +221 -0
- package/editor-components/call_to_action/call_to_action20/call_to_action20.module.scss +89 -0
- package/editor-components/call_to_action/call_to_action20/call_to_action20.tsx +96 -0
- package/editor-components/call_to_action/call_to_action21/call_to_action21.module.scss +84 -0
- package/editor-components/call_to_action/call_to_action21/call_to_action21.tsx +111 -0
- package/editor-components/call_to_action/call_to_action22/call_to_action22.module.scss +83 -0
- package/editor-components/call_to_action/call_to_action22/call_to_action22.tsx +118 -0
- package/editor-components/call_to_action/call_to_action3/call_to_action3.module.scss +94 -0
- package/editor-components/call_to_action/call_to_action3/call_to_action3.tsx +121 -0
- package/editor-components/call_to_action/call_to_action4/call_to_action4.module.scss +96 -0
- package/editor-components/call_to_action/call_to_action4/call_to_action4.tsx +253 -0
- package/editor-components/call_to_action/call_to_action5/call_to_action5.module.scss +185 -0
- package/editor-components/call_to_action/call_to_action5/call_to_action5.tsx +168 -0
- package/editor-components/call_to_action/call_to_action6/call_to_action6.module.scss +188 -0
- package/editor-components/call_to_action/call_to_action6/call_to_action6.tsx +230 -0
- package/editor-components/call_to_action/call_to_action7/call_to_action7.module.scss +158 -0
- package/editor-components/call_to_action/call_to_action7/call_to_action7.tsx +193 -0
- package/editor-components/call_to_action/call_to_action8/call_to_action8.module.scss +75 -0
- package/editor-components/call_to_action/call_to_action8/call_to_action8.tsx +113 -0
- package/editor-components/call_to_action/call_to_action9/call_to_action9.module.scss +71 -0
- package/editor-components/call_to_action/call_to_action9/call_to_action9.tsx +258 -0
- package/editor-components/coming-soon/coming-soon1/coming-soon1.module.scss +100 -0
- package/editor-components/coming-soon/coming-soon1/coming-soon1.tsx +200 -0
- package/editor-components/coming-soon/coming-soon2/coming-soon2.module.scss +230 -0
- package/editor-components/coming-soon/coming-soon2/coming-soon2.tsx +355 -0
- package/editor-components/coming-soon/coming-soon3/coming-soon3.module.scss +205 -0
- package/editor-components/coming-soon/coming-soon3/coming-soon3.tsx +250 -0
- package/editor-components/coming-soon/coming-soon4/coming-soon4.module.scss +139 -0
- package/editor-components/coming-soon/coming-soon4/coming-soon4.tsx +228 -0
- package/editor-components/comparison/comparison1/comparison1.module.scss +320 -0
- package/editor-components/comparison/comparison1/comparison1.tsx +315 -0
- package/editor-components/contacts/form1/form1.module.scss +77 -0
- package/editor-components/contacts/form1/form1.tsx +300 -0
- package/editor-components/contacts/form2/form2.module.scss +183 -0
- package/editor-components/contacts/form2/form2.tsx +425 -0
- package/editor-components/contacts/form3/form3.module.scss +496 -0
- package/editor-components/contacts/form3/form3.tsx +782 -0
- package/editor-components/contacts/form4/form4.module.scss +192 -0
- package/editor-components/contacts/form4/form4.tsx +593 -0
- package/editor-components/contacts/form5/form5.module.scss +159 -0
- package/editor-components/contacts/form5/form5.tsx +615 -0
- package/editor-components/contacts/form6/form6.module.scss +177 -0
- package/editor-components/contacts/form6/form6.tsx +580 -0
- package/editor-components/contacts/form7/form7.module.scss +167 -0
- package/editor-components/contacts/form7/form7.tsx +417 -0
- package/editor-components/contacts/form8/form8.module.scss +151 -0
- package/editor-components/contacts/form8/form8.tsx +506 -0
- package/editor-components/contacts/form9/form9.module.scss +314 -0
- package/editor-components/contacts/form9/form9.tsx +923 -0
- package/editor-components/download/download1/download1.module.scss +109 -0
- package/editor-components/download/download1/download1.tsx +119 -0
- package/editor-components/download/download10/download10.module.scss +142 -0
- package/editor-components/download/download10/download10.tsx +254 -0
- package/editor-components/download/download11/download11.module.scss +201 -0
- package/editor-components/download/download11/download11.tsx +253 -0
- package/editor-components/download/download2/download2.module.scss +95 -0
- package/editor-components/download/download2/download2.tsx +249 -0
- package/editor-components/download/download3/download3.module.scss +359 -0
- package/editor-components/download/download3/download3.tsx +185 -0
- package/editor-components/download/download4/download4.module.scss +102 -0
- package/editor-components/download/download4/download4.tsx +119 -0
- package/editor-components/download/download5/download5.module.scss +135 -0
- package/editor-components/download/download5/download5.tsx +135 -0
- package/editor-components/download/download6/download6.module.scss +83 -0
- package/editor-components/download/download6/download6.tsx +122 -0
- package/editor-components/download/download7/download7.module.scss +136 -0
- package/editor-components/download/download7/download7.tsx +135 -0
- package/editor-components/download/download8/download8.module.scss +316 -0
- package/editor-components/download/download8/download8.tsx +248 -0
- package/editor-components/download/download9/download9.module.scss +284 -0
- package/editor-components/download/download9/download9.tsx +154 -0
- package/editor-components/e-commerce/e-commerce1/e-commerce1.module.scss +459 -0
- package/editor-components/e-commerce/e-commerce1/e-commerce1.tsx +809 -0
- package/editor-components/e-commerce/e-commerce2/e-commerce2.module.scss +318 -0
- package/editor-components/e-commerce/e-commerce2/e-commerce2.tsx +3361 -0
- package/editor-components/e-commerce/e-commerce3/e-commerce3.module.scss +94 -0
- package/editor-components/e-commerce/e-commerce3/e-commerce3.tsx +350 -0
- package/editor-components/e-commerce/e-commerce4/e-commerce4.module.scss +289 -0
- package/editor-components/e-commerce/e-commerce4/e-commerce4.tsx +2234 -0
- package/editor-components/e-commerce/e-commerce5/e-commerce5.module.scss +264 -0
- package/editor-components/e-commerce/e-commerce5/e-commerce5.tsx +542 -0
- package/editor-components/e-commerce/e-commerce6/e-commerce6.module.scss +489 -0
- package/editor-components/e-commerce/e-commerce6/e-commerce6.tsx +518 -0
- package/editor-components/e-commerce/e-commerce7/e-commerce7.module.scss +688 -0
- package/editor-components/e-commerce/e-commerce7/e-commerce7.tsx +1442 -0
- package/editor-components/e-commerce/e-commerce8/e-commerce8.module.scss +310 -0
- package/editor-components/e-commerce/e-commerce8/e-commerce8.tsx +957 -0
- package/editor-components/faq/faq1/faq1.module.scss +93 -0
- package/editor-components/faq/faq1/faq1.tsx +195 -0
- package/editor-components/faq/faq10/faq10.module.scss +153 -0
- package/editor-components/faq/faq10/faq10.tsx +452 -0
- package/editor-components/faq/faq2/faq2.module.scss +123 -0
- package/editor-components/faq/faq2/faq2.tsx +374 -0
- package/editor-components/faq/faq3/faq3.module.scss +144 -0
- package/editor-components/faq/faq3/faq3.tsx +407 -0
- package/editor-components/faq/faq4/faq4.module.scss +124 -0
- package/editor-components/faq/faq4/faq4.tsx +303 -0
- package/editor-components/faq/faq5/faq5.module.scss +151 -0
- package/editor-components/faq/faq5/faq5.tsx +614 -0
- package/editor-components/faq/faq6/faq6.module.scss +116 -0
- package/editor-components/faq/faq6/faq6.tsx +241 -0
- package/editor-components/faq/faq7/faq7.module.scss +98 -0
- package/editor-components/faq/faq7/faq7.tsx +298 -0
- package/editor-components/faq/faq8/faq8.module.scss +217 -0
- package/editor-components/faq/faq8/faq8.tsx +796 -0
- package/editor-components/faq/faq9/faq9.module.scss +137 -0
- package/editor-components/faq/faq9/faq9.tsx +466 -0
- package/editor-components/feature/feature1/feature1.module.scss +115 -0
- package/editor-components/feature/feature1/feature1.tsx +148 -0
- package/editor-components/feature/feature10/feature10.module.scss +191 -0
- package/editor-components/feature/feature10/feature10.tsx +468 -0
- package/editor-components/feature/feature11/feature11.module.scss +99 -0
- package/editor-components/feature/feature11/feature11.tsx +337 -0
- package/editor-components/feature/feature12/feature12.module.scss +169 -0
- package/editor-components/feature/feature12/feature12.tsx +325 -0
- package/editor-components/feature/feature13/feature13.module.scss +151 -0
- package/editor-components/feature/feature13/feature13.tsx +680 -0
- package/editor-components/feature/feature14/feature14.module.scss +119 -0
- package/editor-components/feature/feature14/feature14.tsx +284 -0
- package/editor-components/feature/feature15/feature15.module.scss +214 -0
- package/editor-components/feature/feature15/feature15.tsx +344 -0
- package/editor-components/feature/feature16/feature16.module.scss +234 -0
- package/editor-components/feature/feature16/feature16.tsx +527 -0
- package/editor-components/feature/feature17/feature17.module.scss +187 -0
- package/editor-components/feature/feature17/feature17.tsx +527 -0
- package/editor-components/feature/feature18/feature18.module.scss +213 -0
- package/editor-components/feature/feature18/feature18.tsx +405 -0
- package/editor-components/feature/feature19/feature19.module.scss +212 -0
- package/editor-components/feature/feature19/feature19.tsx +239 -0
- package/editor-components/feature/feature2/feature2.module.scss +120 -0
- package/editor-components/feature/feature2/feature2.tsx +246 -0
- package/editor-components/feature/feature20/feature20.module.scss +239 -0
- package/editor-components/feature/feature20/feature20.tsx +238 -0
- package/editor-components/feature/feature21/feature21.module.scss +268 -0
- package/editor-components/feature/feature21/feature21.tsx +352 -0
- package/editor-components/feature/feature22/feature22.module.scss +191 -0
- package/editor-components/feature/feature22/feature22.tsx +266 -0
- package/editor-components/feature/feature24/feature24.module.scss +121 -0
- package/editor-components/feature/feature24/feature24.tsx +381 -0
- package/editor-components/feature/feature25/feature25.module.scss +213 -0
- package/editor-components/feature/feature25/feature25.tsx +398 -0
- package/editor-components/feature/feature26/feature26.module.scss +188 -0
- package/editor-components/feature/feature26/feature26.tsx +139 -0
- package/editor-components/feature/feature27/feature27.module.scss +155 -0
- package/editor-components/feature/feature27/feature27.tsx +164 -0
- package/editor-components/feature/feature28/feature28.module.scss +89 -0
- package/editor-components/feature/feature28/feature28.tsx +123 -0
- package/editor-components/feature/feature29/feature29.module.scss +285 -0
- package/editor-components/feature/feature29/feature29.tsx +482 -0
- package/editor-components/feature/feature3/feature3.module.scss +335 -0
- package/editor-components/feature/feature3/feature3.tsx +418 -0
- package/editor-components/feature/feature30/feature30.module.scss +85 -0
- package/editor-components/feature/feature30/feature30.tsx +316 -0
- package/editor-components/feature/feature31/feature31.module.scss +101 -0
- package/editor-components/feature/feature31/feature31.tsx +315 -0
- package/editor-components/feature/feature32/feature32.module.scss +131 -0
- package/editor-components/feature/feature32/feature32.tsx +226 -0
- package/editor-components/feature/feature33/feature33.module.scss +168 -0
- package/editor-components/feature/feature33/feature33.tsx +285 -0
- package/editor-components/feature/feature34/feature34.module.scss +151 -0
- package/editor-components/feature/feature34/feature34.tsx +207 -0
- package/editor-components/feature/feature35/feature35.module.scss +145 -0
- package/editor-components/feature/feature35/feature35.tsx +422 -0
- package/editor-components/feature/feature36/feature36.module.scss +106 -0
- package/editor-components/feature/feature36/feature36.tsx +194 -0
- package/editor-components/feature/feature37/feature37.module.scss +145 -0
- package/editor-components/feature/feature37/feature37.tsx +249 -0
- package/editor-components/feature/feature38/feature38.module.scss +174 -0
- package/editor-components/feature/feature38/feature38.tsx +402 -0
- package/editor-components/feature/feature39/feature39.module.scss +198 -0
- package/editor-components/feature/feature39/feature39.tsx +367 -0
- package/editor-components/feature/feature4/feature4.module.scss +220 -0
- package/editor-components/feature/feature4/feature4.tsx +543 -0
- package/editor-components/feature/feature40/feature40.module.scss +211 -0
- package/editor-components/feature/feature40/feature40.tsx +424 -0
- package/editor-components/feature/feature41/feature41.module.scss +142 -0
- package/editor-components/feature/feature41/feature41.tsx +255 -0
- package/editor-components/feature/feature43/feature43.module.scss +133 -0
- package/editor-components/feature/feature43/feature43.tsx +305 -0
- package/editor-components/feature/feature44/feature44.module.scss +211 -0
- package/editor-components/feature/feature44/feature44.tsx +331 -0
- package/editor-components/feature/feature45/feature45.module.scss +144 -0
- package/editor-components/feature/feature45/feature45.tsx +482 -0
- package/editor-components/feature/feature46/feature46.module.scss +131 -0
- package/editor-components/feature/feature46/feature46.tsx +352 -0
- package/editor-components/feature/feature47/feature47.module.scss +88 -0
- package/editor-components/feature/feature47/feature47.tsx +356 -0
- package/editor-components/feature/feature48/feature48.module.scss +143 -0
- package/editor-components/feature/feature48/feature48.tsx +302 -0
- package/editor-components/feature/feature49/feature49.module.scss +141 -0
- package/editor-components/feature/feature49/feature49.tsx +294 -0
- package/editor-components/feature/feature5/feature5.module.scss +534 -0
- package/editor-components/feature/feature5/feature5.tsx +509 -0
- package/editor-components/feature/feature6/feature6.module.scss +150 -0
- package/editor-components/feature/feature6/feature6.tsx +268 -0
- package/editor-components/feature/feature7/feature7.module.scss +159 -0
- package/editor-components/feature/feature7/feature7.tsx +263 -0
- package/editor-components/feature/feature8/feature8.module.scss +106 -0
- package/editor-components/feature/feature8/feature8.tsx +474 -0
- package/editor-components/feature/feature9/feature9.module.scss +172 -0
- package/editor-components/feature/feature9/feature9.tsx +377 -0
- package/editor-components/feedback/feedbackmodal1/feedbackmodal1.module.scss +305 -0
- package/editor-components/feedback/feedbackmodal1/feedbackmodal1.tsx +386 -0
- package/editor-components/footer/footer1/footer1.module.scss +445 -0
- package/editor-components/footer/footer1/footer1.tsx +474 -0
- package/editor-components/footer/footer10/footer10.module.scss +391 -0
- package/editor-components/footer/footer10/footer10.tsx +371 -0
- package/editor-components/footer/footer11/footer11.module.scss +143 -0
- package/editor-components/footer/footer11/footer11.tsx +196 -0
- package/editor-components/footer/footer12/footer12.module.scss +293 -0
- package/editor-components/footer/footer12/footer12.tsx +568 -0
- package/editor-components/footer/footer2/footer2.module.scss +154 -0
- package/editor-components/footer/footer2/footer2.tsx +385 -0
- package/editor-components/footer/footer3/footer3.module.scss +420 -0
- package/editor-components/footer/footer3/footer3.tsx +875 -0
- package/editor-components/footer/footer4/footer4.module.scss +477 -0
- package/editor-components/footer/footer4/footer4.tsx +703 -0
- package/editor-components/footer/footer5/footer5.module.scss +283 -0
- package/editor-components/footer/footer5/footer5.tsx +208 -0
- package/editor-components/footer/footer6/footer6.module.scss +155 -0
- package/editor-components/footer/footer6/footer6.tsx +372 -0
- package/editor-components/footer/footer7/footer7.module.scss +197 -0
- package/editor-components/footer/footer7/footer7.tsx +190 -0
- package/editor-components/footer/footer8/footer8.module.scss +456 -0
- package/editor-components/footer/footer8/footer8.tsx +715 -0
- package/editor-components/footer/footer9/footer9.module.scss +386 -0
- package/editor-components/footer/footer9/footer9.tsx +514 -0
- package/editor-components/hero-section/hero-section1/hero-section1.module.scss +578 -0
- package/editor-components/hero-section/hero-section1/hero-section1.tsx +493 -0
- package/editor-components/hero-section/hero-section10/hero-section10.module.scss +492 -0
- package/editor-components/hero-section/hero-section10/hero-section10.tsx +611 -0
- package/editor-components/hero-section/hero-section11/hero-section11.module.scss +295 -0
- package/editor-components/hero-section/hero-section11/hero-section11.tsx +224 -0
- package/editor-components/hero-section/hero-section12/hero-section12.module.scss +504 -0
- package/editor-components/hero-section/hero-section12/hero-section12.tsx +974 -0
- package/editor-components/hero-section/hero-section13/hero-section13.module.scss +171 -0
- package/editor-components/hero-section/hero-section13/hero-section13.tsx +417 -0
- package/editor-components/hero-section/hero-section14/hero-section14.module.scss +210 -0
- package/editor-components/hero-section/hero-section14/hero-section14.tsx +333 -0
- package/editor-components/hero-section/hero-section15/hero-section15.module.scss +330 -0
- package/editor-components/hero-section/hero-section15/hero-section15.tsx +254 -0
- package/editor-components/hero-section/hero-section16/hero-section16.module.scss +392 -0
- package/editor-components/hero-section/hero-section16/hero-section16.tsx +369 -0
- package/editor-components/hero-section/hero-section17/hero-section17.module.scss +240 -0
- package/editor-components/hero-section/hero-section17/hero-section17.tsx +263 -0
- package/editor-components/hero-section/hero-section18/hero-section18.module.scss +403 -0
- package/editor-components/hero-section/hero-section18/hero-section18.tsx +569 -0
- package/editor-components/hero-section/hero-section19/hero-section19.module.scss +333 -0
- package/editor-components/hero-section/hero-section19/hero-section19.tsx +384 -0
- package/editor-components/hero-section/hero-section2/hero-section2.module.scss +329 -0
- package/editor-components/hero-section/hero-section2/hero-section2.tsx +393 -0
- package/editor-components/hero-section/hero-section20/hero-section20.module.scss +475 -0
- package/editor-components/hero-section/hero-section20/hero-section20.tsx +994 -0
- package/editor-components/hero-section/hero-section21/hero-section21.module.scss +264 -0
- package/editor-components/hero-section/hero-section21/hero-section21.tsx +249 -0
- package/editor-components/hero-section/hero-section22/hero-section22.module.scss +394 -0
- package/editor-components/hero-section/hero-section22/hero-section22.tsx +421 -0
- package/editor-components/hero-section/hero-section23/hero-section23.module.scss +573 -0
- package/editor-components/hero-section/hero-section23/hero-section23.tsx +592 -0
- package/editor-components/hero-section/hero-section24/hero-section24.module.scss +531 -0
- package/editor-components/hero-section/hero-section24/hero-section24.tsx +462 -0
- package/editor-components/hero-section/hero-section25/hero-section25.module.scss +538 -0
- package/editor-components/hero-section/hero-section25/hero-section25.tsx +656 -0
- package/editor-components/hero-section/hero-section26/hero-section26.module.scss +242 -0
- package/editor-components/hero-section/hero-section26/hero-section26.tsx +441 -0
- package/editor-components/hero-section/hero-section27/hero-section27.module.scss +684 -0
- package/editor-components/hero-section/hero-section27/hero-section27.tsx +717 -0
- package/editor-components/hero-section/hero-section28/hero-section28.module.scss +368 -0
- package/editor-components/hero-section/hero-section28/hero-section28.tsx +477 -0
- package/editor-components/hero-section/hero-section29/hero-section29.module.scss +298 -0
- package/editor-components/hero-section/hero-section29/hero-section29.tsx +334 -0
- package/editor-components/hero-section/hero-section3/hero-section3.module.scss +810 -0
- package/editor-components/hero-section/hero-section3/hero-section3.tsx +468 -0
- package/editor-components/hero-section/hero-section30/hero-section30.module.scss +234 -0
- package/editor-components/hero-section/hero-section30/hero-section30.tsx +208 -0
- package/editor-components/hero-section/hero-section31/hero-section31.module.scss +468 -0
- package/editor-components/hero-section/hero-section31/hero-section31.tsx +1083 -0
- package/editor-components/hero-section/hero-section32/hero-section32.module.scss +488 -0
- package/editor-components/hero-section/hero-section32/hero-section32.tsx +530 -0
- package/editor-components/hero-section/hero-section33/hero-section33.module.scss +401 -0
- package/editor-components/hero-section/hero-section33/hero-section33.tsx +471 -0
- package/editor-components/hero-section/hero-section34/hero-section34.module.scss +384 -0
- package/editor-components/hero-section/hero-section34/hero-section34.tsx +465 -0
- package/editor-components/hero-section/hero-section35/hero-section35.module.scss +522 -0
- package/editor-components/hero-section/hero-section35/hero-section35.tsx +441 -0
- package/editor-components/hero-section/hero-section38/hero-section38.module.scss +617 -0
- package/editor-components/hero-section/hero-section38/hero-section38.tsx +458 -0
- package/editor-components/hero-section/hero-section4/hero-section4.module.scss +283 -0
- package/editor-components/hero-section/hero-section4/hero-section4.tsx +292 -0
- package/editor-components/hero-section/hero-section5/hero-section5.module.scss +178 -0
- package/editor-components/hero-section/hero-section5/hero-section5.tsx +159 -0
- package/editor-components/hero-section/hero-section6/hero-section6.module.scss +339 -0
- package/editor-components/hero-section/hero-section6/hero-section6.tsx +244 -0
- package/editor-components/hero-section/hero-section7/hero-section7.module.scss +117 -0
- package/editor-components/hero-section/hero-section7/hero-section7.tsx +277 -0
- package/editor-components/hero-section/hero-section8/hero-section8.module.scss +296 -0
- package/editor-components/hero-section/hero-section8/hero-section8.tsx +500 -0
- package/editor-components/hero-section/hero-section9/hero-section9.module.scss +292 -0
- package/editor-components/hero-section/hero-section9/hero-section9.tsx +536 -0
- package/editor-components/intro-section/intro-section1/intro-section1.module.scss +392 -0
- package/editor-components/intro-section/intro-section1/intro-section1.tsx +263 -0
- package/editor-components/intro-section/intro-section10/intro-section10.module.scss +182 -0
- package/editor-components/intro-section/intro-section10/intro-section10.tsx +167 -0
- package/editor-components/intro-section/intro-section11/intro-section11.module.scss +121 -0
- package/editor-components/intro-section/intro-section11/intro-section11.tsx +142 -0
- package/editor-components/intro-section/intro-section2/intro-section2.module.scss +125 -0
- package/editor-components/intro-section/intro-section2/intro-section2.tsx +147 -0
- package/editor-components/intro-section/intro-section3/intro-section3.module.scss +106 -0
- package/editor-components/intro-section/intro-section3/intro-section3.tsx +140 -0
- package/editor-components/intro-section/intro-section4/intro-section4.module.scss +102 -0
- package/editor-components/intro-section/intro-section4/intro-section4.tsx +128 -0
- package/editor-components/intro-section/intro-section5/intro-section5.module.scss +185 -0
- package/editor-components/intro-section/intro-section5/intro-section5.tsx +142 -0
- package/editor-components/intro-section/intro-section6/intro-section6.module.scss +219 -0
- package/editor-components/intro-section/intro-section6/intro-section6.tsx +269 -0
- package/editor-components/intro-section/intro-section7/intro-section7.module.scss +147 -0
- package/editor-components/intro-section/intro-section7/intro-section7.tsx +161 -0
- package/editor-components/intro-section/intro-section8/intro-section8.module.scss +151 -0
- package/editor-components/intro-section/intro-section8/intro-section8.tsx +182 -0
- package/editor-components/intro-section/intro-section9/intro-section9.module.scss +66 -0
- package/editor-components/intro-section/intro-section9/intro-section9.tsx +132 -0
- package/editor-components/legal/privacy-policy.module.scss +19 -0
- package/editor-components/legal/privacy-policy.tsx +126 -0
- package/editor-components/list/list1/list1.module.scss +224 -0
- package/editor-components/list/list1/list1.tsx +386 -0
- package/editor-components/list/list10/list10.module.scss +293 -0
- package/editor-components/list/list10/list10.tsx +240 -0
- package/editor-components/list/list11/list11.module.scss +164 -0
- package/editor-components/list/list11/list11.tsx +277 -0
- package/editor-components/list/list12/list12.module.scss +207 -0
- package/editor-components/list/list12/list12.tsx +241 -0
- package/editor-components/list/list2/list2.module.scss +178 -0
- package/editor-components/list/list2/list2.tsx +416 -0
- package/editor-components/list/list3/list3.module.scss +239 -0
- package/editor-components/list/list3/list3.tsx +337 -0
- package/editor-components/list/list4/list4.module.scss +243 -0
- package/editor-components/list/list4/list4.tsx +221 -0
- package/editor-components/list/list5/list5.module.scss +183 -0
- package/editor-components/list/list5/list5.tsx +323 -0
- package/editor-components/list/list6/list6.module.scss +230 -0
- package/editor-components/list/list6/list6.tsx +263 -0
- package/editor-components/list/list7/list7.module.scss +127 -0
- package/editor-components/list/list7/list7.tsx +178 -0
- package/editor-components/list/list8/list8.module.scss +146 -0
- package/editor-components/list/list8/list8.tsx +256 -0
- package/editor-components/list/list9/list9.module.scss +320 -0
- package/editor-components/list/list9/list9.tsx +265 -0
- package/editor-components/location/location1/location1.module.scss +218 -0
- package/editor-components/location/location1/location1.tsx +387 -0
- package/editor-components/location/location2/location2.module.scss +181 -0
- package/editor-components/location/location2/location2.tsx +507 -0
- package/editor-components/location/location3/location3.module.scss +118 -0
- package/editor-components/location/location3/location3.tsx +347 -0
- package/editor-components/location/location4/location4.module.scss +138 -0
- package/editor-components/location/location4/location4.tsx +221 -0
- package/editor-components/location/location5/location5.module.scss +89 -0
- package/editor-components/location/location5/location5.tsx +258 -0
- package/editor-components/location/location6/location6.module.scss +211 -0
- package/editor-components/location/location6/location6.tsx +476 -0
- package/editor-components/location/location7/location7.module.scss +245 -0
- package/editor-components/location/location7/location7.tsx +347 -0
- package/editor-components/location/themes.tsx +229 -0
- package/editor-components/logo-clouds/logo-comp1/logo-comp1.module.scss +36 -0
- package/editor-components/logo-clouds/logo-comp1/logo-comp1.tsx +119 -0
- package/editor-components/logo-clouds/logo-comp10/logo-comp10.module.scss +83 -0
- package/editor-components/logo-clouds/logo-comp10/logo-comp10.tsx +336 -0
- package/editor-components/logo-clouds/logo-comp2/logo-comp2.module.scss +90 -0
- package/editor-components/logo-clouds/logo-comp2/logo-comp2.tsx +139 -0
- package/editor-components/logo-clouds/logo-comp3/logo-comp3.module.scss +110 -0
- package/editor-components/logo-clouds/logo-comp3/logo-comp3.tsx +144 -0
- package/editor-components/logo-clouds/logo-comp4/logo-comp4.module.scss +96 -0
- package/editor-components/logo-clouds/logo-comp4/logo-comp4.tsx +151 -0
- package/editor-components/logo-clouds/logo-comp5/logo-comp5.module.scss +70 -0
- package/editor-components/logo-clouds/logo-comp5/logo-comp5.tsx +116 -0
- package/editor-components/logo-clouds/logo-comp6/logo-comp6.module.scss +58 -0
- package/editor-components/logo-clouds/logo-comp6/logo-comp6.tsx +245 -0
- package/editor-components/logo-clouds/logo-comp7/logo-comp7.module.scss +114 -0
- package/editor-components/logo-clouds/logo-comp7/logo-comp7.tsx +100 -0
- package/editor-components/logo-clouds/logo-comp8/logo-comp8.module.scss +116 -0
- package/editor-components/logo-clouds/logo-comp8/logo-comp8.tsx +275 -0
- package/editor-components/logo-clouds/logo-comp9/logo-comp9.module.scss +130 -0
- package/editor-components/logo-clouds/logo-comp9/logo-comp9.tsx +206 -0
- package/editor-components/modal/confirmation-modal-2/confirmation-modal-2.module.scss +384 -0
- package/editor-components/modal/confirmation-modal-2/confirmation-modal-2.tsx +355 -0
- package/editor-components/modal/confirmation-modal1/confirmationmodal1.module.scss +113 -0
- package/editor-components/modal/confirmation-modal1/confirmationmodal1.tsx +106 -0
- package/editor-components/modal/formmodal1/formmodal1.module.scss +156 -0
- package/editor-components/modal/formmodal1/formmodal1.tsx +563 -0
- package/editor-components/modal/notice-modal/notice.module.scss +92 -0
- package/editor-components/modal/notice-modal/notice.tsx +97 -0
- package/editor-components/modal/notification-modal1/notificationmodal1.module.scss +166 -0
- package/editor-components/modal/notification-modal1/notificationmodal1.tsx +136 -0
- package/editor-components/modal/notificationmodal2/notificationmodal2.module.scss +134 -0
- package/editor-components/modal/notificationmodal2/notificationmodal2.tsx +170 -0
- package/editor-components/modal/subscription-modal/subscription-modal.module.scss +151 -0
- package/editor-components/modal/subscription-modal/subscription-modal.tsx +141 -0
- package/editor-components/modal/survey-modal/survey-modal.module.scss +277 -0
- package/editor-components/modal/survey-modal/survey-modal.tsx +327 -0
- package/editor-components/modal/terms-of-use/terms-of-use.module.scss +214 -0
- package/editor-components/modal/terms-of-use/terms-of-use.tsx +142 -0
- package/editor-components/navigators/navbar1/navbar1.module.scss +633 -0
- package/editor-components/navigators/navbar1/navbar1.tsx +1644 -0
- package/editor-components/navigators/navbar10/navbar10.module.scss +961 -0
- package/editor-components/navigators/navbar10/navbar10.tsx +3070 -0
- package/editor-components/navigators/navbar2/navbar2.module.scss +559 -0
- package/editor-components/navigators/navbar2/navbar2.tsx +1009 -0
- package/editor-components/navigators/navbar3/navbar3.module.scss +583 -0
- package/editor-components/navigators/navbar3/navbar3.tsx +1790 -0
- package/editor-components/navigators/navbar4/navbar4.module.scss +708 -0
- package/editor-components/navigators/navbar4/navbar4.tsx +1864 -0
- package/editor-components/navigators/navbar5/navbar5.module.scss +415 -0
- package/editor-components/navigators/navbar5/navbar5.tsx +639 -0
- package/editor-components/navigators/navbar6/navbar6.module.scss +586 -0
- package/editor-components/navigators/navbar6/navbar6.tsx +1613 -0
- package/editor-components/navigators/navbar7/navbar7.module.scss +598 -0
- package/editor-components/navigators/navbar7/navbar7.tsx +1638 -0
- package/editor-components/navigators/navbar8/navbar8.module.scss +444 -0
- package/editor-components/navigators/navbar8/navbar8.tsx +637 -0
- package/editor-components/navigators/navbar9/navbar9.module.scss +604 -0
- package/editor-components/navigators/navbar9/navbar9.tsx +1610 -0
- package/editor-components/portfolio/portfolio1/portfolio1.module.scss +333 -0
- package/editor-components/portfolio/portfolio1/portfolio1.tsx +815 -0
- package/editor-components/portfolio/portfolio2/portfolio2.module.scss +164 -0
- package/editor-components/portfolio/portfolio2/portfolio2.tsx +332 -0
- package/editor-components/portfolio/portfolio3/portfolio3.module.scss +438 -0
- package/editor-components/portfolio/portfolio3/portfolio3.tsx +915 -0
- package/editor-components/pricing-table/pricing-table1/pricing-table1.module.scss +204 -0
- package/editor-components/pricing-table/pricing-table1/pricing-table1.tsx +698 -0
- package/editor-components/pricing-table/pricing-table2/pricing-table2.module.scss +142 -0
- package/editor-components/pricing-table/pricing-table2/pricing-table2.tsx +703 -0
- package/editor-components/pricing-table/pricing-table3/pricing-table3.module.scss +210 -0
- package/editor-components/pricing-table/pricing-table3/pricing-table3.tsx +430 -0
- package/editor-components/pricing-table/pricing-table4/pricing-table4.module.scss +170 -0
- package/editor-components/pricing-table/pricing-table4/pricing-table4.tsx +594 -0
- package/editor-components/pricing-table/pricing-table5/pricing-table5.module.scss +316 -0
- package/editor-components/pricing-table/pricing-table5/pricing-table5.tsx +267 -0
- package/editor-components/pricing-table/pricing-table6/pricing-table6.module.scss +409 -0
- package/editor-components/pricing-table/pricing-table6/pricing-table6.tsx +1189 -0
- package/editor-components/pricing-table/pricing-table7/pricing-table7.module.scss +269 -0
- package/editor-components/pricing-table/pricing-table7/pricing-table7.tsx +1161 -0
- package/editor-components/pricing-table/pricing-table8/pricing-table8.module.scss +366 -0
- package/editor-components/pricing-table/pricing-table8/pricing-table8.tsx +574 -0
- package/editor-components/pricing-table/pricing-table9/pricing-table9.module.scss +357 -0
- package/editor-components/pricing-table/pricing-table9/pricing-table9.tsx +857 -0
- package/editor-components/registerables.tsx +681 -0
- package/editor-components/slider/slider1/slider1.module.scss +324 -0
- package/editor-components/slider/slider1/slider1.tsx +254 -0
- package/editor-components/slider/slider10/slider10.module.scss +287 -0
- package/editor-components/slider/slider10/slider10.tsx +446 -0
- package/editor-components/slider/slider11/slider11.module.scss +216 -0
- package/editor-components/slider/slider11/slider11.tsx +366 -0
- package/editor-components/slider/slider12/slider12.module.scss +273 -0
- package/editor-components/slider/slider12/slider12.tsx +535 -0
- package/editor-components/slider/slider2/slider2.module.scss +213 -0
- package/editor-components/slider/slider2/slider2.tsx +331 -0
- package/editor-components/slider/slider3/slider3.module.scss +227 -0
- package/editor-components/slider/slider3/slider3.tsx +280 -0
- package/editor-components/slider/slider4/slider4.module.scss +221 -0
- package/editor-components/slider/slider4/slider4.tsx +334 -0
- package/editor-components/slider/slider5/slider5.module.scss +39 -0
- package/editor-components/slider/slider5/slider5.tsx +106 -0
- package/editor-components/slider/slider6/slider6.module.scss +205 -0
- package/editor-components/slider/slider6/slider6.tsx +337 -0
- package/editor-components/slider/slider7/slider7.module.scss +134 -0
- package/editor-components/slider/slider7/slider7.tsx +270 -0
- package/editor-components/slider/slider8/slider8.module.scss +580 -0
- package/editor-components/slider/slider8/slider8.tsx +350 -0
- package/editor-components/slider/slider9/slider9.module.scss +1160 -0
- package/editor-components/slider/slider9/slider9.tsx +556 -0
- package/editor-components/social/social1/social1.module.scss +229 -0
- package/editor-components/social/social1/social1.tsx +726 -0
- package/editor-components/social/social2/social2.module.scss +299 -0
- package/editor-components/social/social2/social2.tsx +1086 -0
- package/editor-components/social/social3/social3.module.scss +131 -0
- package/editor-components/social/social3/social3.tsx +296 -0
- package/editor-components/social/social4/social4.module.scss +405 -0
- package/editor-components/social/social4/social4.tsx +1940 -0
- package/editor-components/social_widget/social_widget1/social_widget1.module.scss +10 -0
- package/editor-components/social_widget/social_widget1/social_widget1.tsx +31 -0
- package/editor-components/social_widget/social_widget2/social_widget2.module.scss +10 -0
- package/editor-components/social_widget/social_widget2/social_widget2.tsx +35 -0
- package/editor-components/social_widget/social_widget3/social_widget3.module.scss +10 -0
- package/editor-components/social_widget/social_widget3/social_widget3.tsx +32 -0
- package/editor-components/social_widget/social_widget4/social_widget4.module.scss +10 -0
- package/editor-components/social_widget/social_widget4/social_widget4.tsx +32 -0
- package/editor-components/social_widget/social_widget5/social_widget5.module.scss +10 -0
- package/editor-components/social_widget/social_widget5/social_widget5.tsx +32 -0
- package/editor-components/stats/stats1/stats1.module.scss +153 -0
- package/editor-components/stats/stats1/stats1.tsx +279 -0
- package/editor-components/stats/stats10/stats10.module.scss +346 -0
- package/editor-components/stats/stats10/stats10.tsx +364 -0
- package/editor-components/stats/stats11/stats11.module.scss +167 -0
- package/editor-components/stats/stats11/stats11.tsx +242 -0
- package/editor-components/stats/stats12/stats12.module.scss +244 -0
- package/editor-components/stats/stats12/stats12.tsx +174 -0
- package/editor-components/stats/stats13/stats13.module.scss +311 -0
- package/editor-components/stats/stats13/stats13.tsx +432 -0
- package/editor-components/stats/stats14/stats14.module.scss +192 -0
- package/editor-components/stats/stats14/stats14.tsx +222 -0
- package/editor-components/stats/stats15/stats15.module.scss +174 -0
- package/editor-components/stats/stats15/stats15.tsx +242 -0
- package/editor-components/stats/stats2/stats2.module.scss +243 -0
- package/editor-components/stats/stats2/stats2.tsx +333 -0
- package/editor-components/stats/stats3/stats3.module.scss +302 -0
- package/editor-components/stats/stats3/stats3.tsx +212 -0
- package/editor-components/stats/stats4/stats4.module.scss +133 -0
- package/editor-components/stats/stats4/stats4.tsx +467 -0
- package/editor-components/stats/stats5/stats5.module.scss +104 -0
- package/editor-components/stats/stats5/stats5.tsx +257 -0
- package/editor-components/stats/stats6/stats6.module.scss +76 -0
- package/editor-components/stats/stats6/stats6.tsx +241 -0
- package/editor-components/stats/stats7/stats7.module.scss +101 -0
- package/editor-components/stats/stats7/stats7.tsx +184 -0
- package/editor-components/stats/stats8/stats8.module.scss +321 -0
- package/editor-components/stats/stats8/stats8.tsx +358 -0
- package/editor-components/stats/stats9/stats9.module.scss +282 -0
- package/editor-components/stats/stats9/stats9.tsx +330 -0
- package/editor-components/team/team-1/team1.module.scss +247 -0
- package/editor-components/team/team-1/team1.tsx +357 -0
- package/editor-components/team/team-10/team10.module.scss +307 -0
- package/editor-components/team/team-10/team10.tsx +510 -0
- package/editor-components/team/team-11/team11.module.scss +245 -0
- package/editor-components/team/team-11/team11.tsx +435 -0
- package/editor-components/team/team-12/team12.module.scss +186 -0
- package/editor-components/team/team-12/team12.tsx +305 -0
- package/editor-components/team/team-13/team13.module.scss +271 -0
- package/editor-components/team/team-13/team13.tsx +255 -0
- package/editor-components/team/team-14/team14.module.scss +203 -0
- package/editor-components/team/team-14/team14.tsx +202 -0
- package/editor-components/team/team-15/team15.module.scss +275 -0
- package/editor-components/team/team-15/team15.tsx +417 -0
- package/editor-components/team/team-16/team16.module.scss +145 -0
- package/editor-components/team/team-16/team16.tsx +219 -0
- package/editor-components/team/team-2/team2.module.scss +175 -0
- package/editor-components/team/team-2/team2.tsx +397 -0
- package/editor-components/team/team-3/team3.module.scss +251 -0
- package/editor-components/team/team-3/team3.tsx +380 -0
- package/editor-components/team/team-4/team4.module.scss +66 -0
- package/editor-components/team/team-4/team4.tsx +194 -0
- package/editor-components/team/team-5/team5.module.scss +219 -0
- package/editor-components/team/team-5/team5.tsx +492 -0
- package/editor-components/team/team-6/team6.module.scss +157 -0
- package/editor-components/team/team-6/team6.tsx +620 -0
- package/editor-components/team/team-7/team7.module.scss +211 -0
- package/editor-components/team/team-7/team7.tsx +333 -0
- package/editor-components/team/team-8/team8.module.scss +214 -0
- package/editor-components/team/team-8/team8.tsx +349 -0
- package/editor-components/team/team-9/team9.module.scss +307 -0
- package/editor-components/team/team-9/team9.tsx +363 -0
- package/editor-components/testimonials/testimonials1/testimonials1.module.scss +156 -0
- package/editor-components/testimonials/testimonials1/testimonials1.tsx +190 -0
- package/editor-components/testimonials/testimonials10/testimonials10.module.scss +281 -0
- package/editor-components/testimonials/testimonials10/testimonials10.tsx +360 -0
- package/editor-components/testimonials/testimonials11/testimonials11.module.scss +78 -0
- package/editor-components/testimonials/testimonials11/testimonials11.tsx +267 -0
- package/editor-components/testimonials/testimonials12/testimonials12.module.scss +115 -0
- package/editor-components/testimonials/testimonials12/testimonials12.tsx +293 -0
- package/editor-components/testimonials/testimonials13/testimonials13.module.scss +220 -0
- package/editor-components/testimonials/testimonials13/testimonials13.tsx +357 -0
- package/editor-components/testimonials/testimonials14/testimonials14.module.scss +216 -0
- package/editor-components/testimonials/testimonials14/testimonials14.tsx +364 -0
- package/editor-components/testimonials/testimonials15/testimonials15.module.scss +685 -0
- package/editor-components/testimonials/testimonials15/testimonials15.tsx +422 -0
- package/editor-components/testimonials/testimonials16/testimonials16.module.scss +754 -0
- package/editor-components/testimonials/testimonials16/testimonials16.tsx +625 -0
- package/editor-components/testimonials/testimonials2/testimonials2.module.scss +100 -0
- package/editor-components/testimonials/testimonials2/testimonials2.tsx +301 -0
- package/editor-components/testimonials/testimonials3/testimonials3.module.scss +37 -0
- package/editor-components/testimonials/testimonials3/testimonials3.tsx +148 -0
- package/editor-components/testimonials/testimonials4/testimonials4.module.scss +205 -0
- package/editor-components/testimonials/testimonials4/testimonials4.tsx +266 -0
- package/editor-components/testimonials/testimonials5/testimonials5.module.scss +221 -0
- package/editor-components/testimonials/testimonials5/testimonials5.tsx +319 -0
- package/editor-components/testimonials/testimonials6/testimonials6.module.scss +82 -0
- package/editor-components/testimonials/testimonials6/testimonials6.tsx +344 -0
- package/editor-components/testimonials/testimonials7/testimonials7.module.scss +316 -0
- package/editor-components/testimonials/testimonials7/testimonials7.tsx +248 -0
- package/editor-components/testimonials/testimonials8/testimonials8.module.scss +197 -0
- package/editor-components/testimonials/testimonials8/testimonials8.tsx +287 -0
- package/editor-components/testimonials/testimonials9/testimonials9.module.scss +137 -0
- package/editor-components/testimonials/testimonials9/testimonials9.tsx +372 -0
- package/index.ts +103 -0
- package/package.json +40 -0
- package/utils/css-processor.ts +131 -0
- package/utils/currency.ts +89 -0
|
@@ -0,0 +1,1613 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
import { BaseNavigator, TypeMediaInputValue } from "../../EditorComponent";
|
|
3
|
+
import React from "react";
|
|
4
|
+
import styles from "./navbar6.module.scss";
|
|
5
|
+
import ComposerLink from "../../../../custom-hooks/composer-base-components/Link/link";
|
|
6
|
+
import { Base } from "composer-tools/composer-base-components/base/base";
|
|
7
|
+
import { INPUTS } from "composer-tools/custom-hooks/input-templates";
|
|
8
|
+
|
|
9
|
+
interface Logo {
|
|
10
|
+
image: TypeMediaInputValue;
|
|
11
|
+
navigateTo: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
interface Icon {
|
|
15
|
+
icon: TypeMediaInputValue;
|
|
16
|
+
page: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
interface MenuItem {
|
|
20
|
+
title: React.JSX.Element;
|
|
21
|
+
navigate_to: string;
|
|
22
|
+
menuType: string;
|
|
23
|
+
sub_items: MenuItem[];
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
interface Language {
|
|
27
|
+
label: "code" | "name";
|
|
28
|
+
icon: TypeMediaInputValue;
|
|
29
|
+
showLanguage: boolean;
|
|
30
|
+
showLocalizationAlways: boolean;
|
|
31
|
+
showDivider: boolean;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
class Navbar6 extends BaseNavigator {
|
|
35
|
+
constructor(props?: any) {
|
|
36
|
+
super(props, styles);
|
|
37
|
+
|
|
38
|
+
this.addProp(INPUTS.NAVBAR_POSITION("position", "Type"));
|
|
39
|
+
|
|
40
|
+
this.addProp({
|
|
41
|
+
type: "object",
|
|
42
|
+
key: "defaultLogo",
|
|
43
|
+
displayer: "Default Logo",
|
|
44
|
+
value: [
|
|
45
|
+
{
|
|
46
|
+
type: "media",
|
|
47
|
+
key: "image",
|
|
48
|
+
displayer: "Image",
|
|
49
|
+
additionalParams: {
|
|
50
|
+
availableTypes: ["image"],
|
|
51
|
+
},
|
|
52
|
+
value: {
|
|
53
|
+
type: "image",
|
|
54
|
+
url: "https://storage.googleapis.com/download/storage/v1/b/hq-composer-0b0f0/o/67769b510655f8002cafc965?alt=media×tamp=1735826277716",
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
type: "page",
|
|
59
|
+
key: "navigateTo",
|
|
60
|
+
value: "",
|
|
61
|
+
displayer: "Navigate To",
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
this.addProp({
|
|
67
|
+
type: "object",
|
|
68
|
+
key: "absoluteLogo",
|
|
69
|
+
displayer: "Absolute Logo",
|
|
70
|
+
value: [
|
|
71
|
+
{
|
|
72
|
+
type: "media",
|
|
73
|
+
key: "image",
|
|
74
|
+
displayer: "Image",
|
|
75
|
+
additionalParams: {
|
|
76
|
+
availableTypes: ["image"],
|
|
77
|
+
},
|
|
78
|
+
value: {
|
|
79
|
+
type: "image",
|
|
80
|
+
url: "https://storage.googleapis.com/download/storage/v1/b/hq-composer-0b0f0/o/67769b510655f8002cafc964?alt=media×tamp=1735826277716",
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
type: "page",
|
|
85
|
+
key: "navigateTo",
|
|
86
|
+
value: "",
|
|
87
|
+
displayer: "Navigate To",
|
|
88
|
+
},
|
|
89
|
+
],
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
this.addProp({
|
|
93
|
+
type: "array",
|
|
94
|
+
key: "menuItems",
|
|
95
|
+
displayer: "Menu",
|
|
96
|
+
value: [
|
|
97
|
+
{
|
|
98
|
+
type: "object",
|
|
99
|
+
key: "item",
|
|
100
|
+
displayer: "Item",
|
|
101
|
+
value: [
|
|
102
|
+
{
|
|
103
|
+
type: "string",
|
|
104
|
+
key: "title",
|
|
105
|
+
displayer: "Title",
|
|
106
|
+
value: "Catalog",
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
type: "page",
|
|
110
|
+
key: "navigate_to",
|
|
111
|
+
displayer: "Navigate To",
|
|
112
|
+
value: "",
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
type: "select",
|
|
116
|
+
key: "menuType",
|
|
117
|
+
displayer: "Type",
|
|
118
|
+
value: "Dropdown",
|
|
119
|
+
additionalParams: { selectItems: ["Dropdown", "Normal"] },
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
type: "array",
|
|
123
|
+
key: "sub_items",
|
|
124
|
+
displayer: "Sub Items",
|
|
125
|
+
value: [
|
|
126
|
+
{
|
|
127
|
+
type: "object",
|
|
128
|
+
key: "sub_item",
|
|
129
|
+
displayer: "Sub Item",
|
|
130
|
+
value: [
|
|
131
|
+
{
|
|
132
|
+
type: "string",
|
|
133
|
+
key: "title",
|
|
134
|
+
displayer: "Title",
|
|
135
|
+
value: "Fashion Home",
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
type: "page",
|
|
139
|
+
key: "navigate_to",
|
|
140
|
+
displayer: "Navigate To",
|
|
141
|
+
value: "",
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
type: "array",
|
|
145
|
+
key: "sub_items",
|
|
146
|
+
displayer: "Sub Items",
|
|
147
|
+
value: [
|
|
148
|
+
{
|
|
149
|
+
type: "object",
|
|
150
|
+
key: "sub_item",
|
|
151
|
+
displayer: "Sub Item",
|
|
152
|
+
value: [
|
|
153
|
+
{
|
|
154
|
+
type: "string",
|
|
155
|
+
key: "title",
|
|
156
|
+
displayer: "Title",
|
|
157
|
+
value: "",
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type: "page",
|
|
161
|
+
key: "navigate_to",
|
|
162
|
+
displayer: "Navigate To",
|
|
163
|
+
value: "",
|
|
164
|
+
},
|
|
165
|
+
],
|
|
166
|
+
},
|
|
167
|
+
],
|
|
168
|
+
},
|
|
169
|
+
],
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
type: "object",
|
|
173
|
+
key: "sub_item",
|
|
174
|
+
displayer: "Sub Item",
|
|
175
|
+
value: [
|
|
176
|
+
{
|
|
177
|
+
type: "string",
|
|
178
|
+
key: "title",
|
|
179
|
+
displayer: "Title",
|
|
180
|
+
value: "Winery Home",
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
type: "page",
|
|
184
|
+
key: "navigate_to",
|
|
185
|
+
displayer: "Navigate To",
|
|
186
|
+
value: "",
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
type: "array",
|
|
190
|
+
key: "sub_items",
|
|
191
|
+
displayer: "Sub Items",
|
|
192
|
+
value: [
|
|
193
|
+
{
|
|
194
|
+
type: "object",
|
|
195
|
+
key: "sub_item",
|
|
196
|
+
displayer: "Sub Item",
|
|
197
|
+
value: [
|
|
198
|
+
{
|
|
199
|
+
type: "string",
|
|
200
|
+
key: "title",
|
|
201
|
+
displayer: "Title",
|
|
202
|
+
value: "",
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
type: "page",
|
|
206
|
+
key: "navigate_to",
|
|
207
|
+
displayer: "Navigate To",
|
|
208
|
+
value: "",
|
|
209
|
+
},
|
|
210
|
+
],
|
|
211
|
+
},
|
|
212
|
+
],
|
|
213
|
+
},
|
|
214
|
+
],
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
type: "object",
|
|
218
|
+
key: "sub_item",
|
|
219
|
+
displayer: "Sub Item",
|
|
220
|
+
value: [
|
|
221
|
+
{
|
|
222
|
+
type: "string",
|
|
223
|
+
key: "title",
|
|
224
|
+
displayer: "Title",
|
|
225
|
+
value: "New Arrivals",
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
type: "page",
|
|
229
|
+
key: "navigate_to",
|
|
230
|
+
displayer: "Navigate To",
|
|
231
|
+
value: "",
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
type: "array",
|
|
235
|
+
key: "sub_items",
|
|
236
|
+
displayer: "Sub Items",
|
|
237
|
+
value: [
|
|
238
|
+
{
|
|
239
|
+
type: "object",
|
|
240
|
+
key: "sub_item",
|
|
241
|
+
displayer: "Sub Item",
|
|
242
|
+
value: [
|
|
243
|
+
{
|
|
244
|
+
type: "string",
|
|
245
|
+
key: "title",
|
|
246
|
+
displayer: "Title",
|
|
247
|
+
value: "",
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
type: "page",
|
|
251
|
+
key: "navigate_to",
|
|
252
|
+
displayer: "Navigate To",
|
|
253
|
+
value: "",
|
|
254
|
+
},
|
|
255
|
+
],
|
|
256
|
+
},
|
|
257
|
+
],
|
|
258
|
+
},
|
|
259
|
+
],
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
type: "object",
|
|
263
|
+
key: "sub_item",
|
|
264
|
+
displayer: "Sub Item",
|
|
265
|
+
value: [
|
|
266
|
+
{
|
|
267
|
+
type: "string",
|
|
268
|
+
key: "title",
|
|
269
|
+
displayer: "Title",
|
|
270
|
+
value: "Men & Women",
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
type: "page",
|
|
274
|
+
key: "navigate_to",
|
|
275
|
+
displayer: "Navigate To",
|
|
276
|
+
value: "",
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
type: "array",
|
|
280
|
+
key: "sub_items",
|
|
281
|
+
displayer: "Sub Items",
|
|
282
|
+
value: [
|
|
283
|
+
{
|
|
284
|
+
type: "object",
|
|
285
|
+
key: "sub_item",
|
|
286
|
+
displayer: "Sub Item",
|
|
287
|
+
value: [
|
|
288
|
+
{
|
|
289
|
+
type: "string",
|
|
290
|
+
key: "title",
|
|
291
|
+
displayer: "Title",
|
|
292
|
+
value: "",
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
type: "page",
|
|
296
|
+
key: "navigate_to",
|
|
297
|
+
displayer: "Navigate To",
|
|
298
|
+
value: "",
|
|
299
|
+
},
|
|
300
|
+
],
|
|
301
|
+
},
|
|
302
|
+
],
|
|
303
|
+
},
|
|
304
|
+
],
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
type: "object",
|
|
308
|
+
key: "sub_item",
|
|
309
|
+
displayer: "Sub Item",
|
|
310
|
+
value: [
|
|
311
|
+
{
|
|
312
|
+
type: "string",
|
|
313
|
+
key: "title",
|
|
314
|
+
displayer: "Title",
|
|
315
|
+
value: "Trend Collection",
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
type: "page",
|
|
319
|
+
key: "navigate_to",
|
|
320
|
+
displayer: "Navigate To",
|
|
321
|
+
value: "",
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
type: "array",
|
|
325
|
+
key: "sub_items",
|
|
326
|
+
displayer: "Sub Items",
|
|
327
|
+
value: [
|
|
328
|
+
{
|
|
329
|
+
type: "object",
|
|
330
|
+
key: "sub_item",
|
|
331
|
+
displayer: "Sub Item",
|
|
332
|
+
value: [
|
|
333
|
+
{
|
|
334
|
+
type: "string",
|
|
335
|
+
key: "title",
|
|
336
|
+
displayer: "Title",
|
|
337
|
+
value: "",
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
type: "page",
|
|
341
|
+
key: "navigate_to",
|
|
342
|
+
displayer: "Navigate To",
|
|
343
|
+
value: "",
|
|
344
|
+
},
|
|
345
|
+
],
|
|
346
|
+
},
|
|
347
|
+
],
|
|
348
|
+
},
|
|
349
|
+
],
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
type: "object",
|
|
353
|
+
key: "sub_item",
|
|
354
|
+
displayer: "Sub Item",
|
|
355
|
+
value: [
|
|
356
|
+
{
|
|
357
|
+
type: "string",
|
|
358
|
+
key: "title",
|
|
359
|
+
displayer: "Title",
|
|
360
|
+
value: "Creative",
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
type: "page",
|
|
364
|
+
key: "navigate_to",
|
|
365
|
+
displayer: "Navigate To",
|
|
366
|
+
value: "",
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
type: "array",
|
|
370
|
+
key: "sub_items",
|
|
371
|
+
displayer: "Sub Items",
|
|
372
|
+
value: [
|
|
373
|
+
{
|
|
374
|
+
type: "object",
|
|
375
|
+
key: "sub_item",
|
|
376
|
+
displayer: "Sub Item",
|
|
377
|
+
value: [
|
|
378
|
+
{
|
|
379
|
+
type: "string",
|
|
380
|
+
key: "title",
|
|
381
|
+
displayer: "Title",
|
|
382
|
+
value: "",
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
type: "page",
|
|
386
|
+
key: "navigate_to",
|
|
387
|
+
displayer: "Navigate To",
|
|
388
|
+
value: "",
|
|
389
|
+
},
|
|
390
|
+
],
|
|
391
|
+
},
|
|
392
|
+
],
|
|
393
|
+
},
|
|
394
|
+
],
|
|
395
|
+
},
|
|
396
|
+
],
|
|
397
|
+
},
|
|
398
|
+
],
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
type: "object",
|
|
402
|
+
key: "item",
|
|
403
|
+
displayer: "Item",
|
|
404
|
+
value: [
|
|
405
|
+
{
|
|
406
|
+
type: "string",
|
|
407
|
+
key: "title",
|
|
408
|
+
displayer: "Title",
|
|
409
|
+
value: "About Us",
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
type: "page",
|
|
413
|
+
key: "navigate_to",
|
|
414
|
+
displayer: "Navigate To",
|
|
415
|
+
value: "",
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
type: "select",
|
|
419
|
+
key: "menuType",
|
|
420
|
+
displayer: "Type",
|
|
421
|
+
value: "Normal",
|
|
422
|
+
additionalParams: { selectItems: ["Dropdown", "Normal"] },
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
type: "array",
|
|
426
|
+
key: "sub_items",
|
|
427
|
+
displayer: "Sub Items",
|
|
428
|
+
value: [
|
|
429
|
+
{
|
|
430
|
+
type: "object",
|
|
431
|
+
key: "sub_item",
|
|
432
|
+
displayer: "Sub Item",
|
|
433
|
+
value: [
|
|
434
|
+
{
|
|
435
|
+
type: "string",
|
|
436
|
+
key: "title",
|
|
437
|
+
displayer: "Title",
|
|
438
|
+
value: "SUB ITEM1",
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
type: "page",
|
|
442
|
+
key: "navigate_to",
|
|
443
|
+
displayer: "Navigate To",
|
|
444
|
+
value: "",
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
type: "array",
|
|
448
|
+
key: "sub_items",
|
|
449
|
+
displayer: "Sub Items",
|
|
450
|
+
value: [
|
|
451
|
+
{
|
|
452
|
+
type: "object",
|
|
453
|
+
key: "sub_item",
|
|
454
|
+
displayer: "Sub Item",
|
|
455
|
+
value: [
|
|
456
|
+
{
|
|
457
|
+
type: "string",
|
|
458
|
+
key: "title",
|
|
459
|
+
displayer: "Title",
|
|
460
|
+
value: "",
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
type: "page",
|
|
464
|
+
key: "navigate_to",
|
|
465
|
+
displayer: "Navigate To",
|
|
466
|
+
value: "",
|
|
467
|
+
},
|
|
468
|
+
],
|
|
469
|
+
},
|
|
470
|
+
],
|
|
471
|
+
},
|
|
472
|
+
],
|
|
473
|
+
},
|
|
474
|
+
],
|
|
475
|
+
},
|
|
476
|
+
],
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
type: "object",
|
|
480
|
+
key: "item",
|
|
481
|
+
displayer: "Item",
|
|
482
|
+
value: [
|
|
483
|
+
{
|
|
484
|
+
type: "string",
|
|
485
|
+
key: "title",
|
|
486
|
+
displayer: "Title",
|
|
487
|
+
value: "Blog",
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
type: "page",
|
|
491
|
+
key: "navigate_to",
|
|
492
|
+
displayer: "Navigate To",
|
|
493
|
+
value: "",
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
type: "select",
|
|
497
|
+
key: "menuType",
|
|
498
|
+
displayer: "Type",
|
|
499
|
+
value: "Normal",
|
|
500
|
+
additionalParams: { selectItems: ["Dropdown", "Normal"] },
|
|
501
|
+
},
|
|
502
|
+
{
|
|
503
|
+
type: "array",
|
|
504
|
+
key: "sub_items",
|
|
505
|
+
displayer: "Sub Items",
|
|
506
|
+
value: [
|
|
507
|
+
{
|
|
508
|
+
type: "object",
|
|
509
|
+
key: "sub_item",
|
|
510
|
+
displayer: "Sub Item",
|
|
511
|
+
value: [
|
|
512
|
+
{
|
|
513
|
+
type: "string",
|
|
514
|
+
key: "title",
|
|
515
|
+
displayer: "Title",
|
|
516
|
+
value: "ABOUT US",
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
type: "page",
|
|
520
|
+
key: "navigate_to",
|
|
521
|
+
displayer: "Navigate To",
|
|
522
|
+
value: "",
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
type: "array",
|
|
526
|
+
key: "sub_items",
|
|
527
|
+
displayer: "Sub Items",
|
|
528
|
+
value: [
|
|
529
|
+
{
|
|
530
|
+
type: "object",
|
|
531
|
+
key: "sub_item",
|
|
532
|
+
displayer: "Sub Item",
|
|
533
|
+
value: [
|
|
534
|
+
{
|
|
535
|
+
type: "string",
|
|
536
|
+
key: "title",
|
|
537
|
+
displayer: "Title",
|
|
538
|
+
value: "",
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
type: "page",
|
|
542
|
+
key: "navigate_to",
|
|
543
|
+
displayer: "Navigate To",
|
|
544
|
+
value: "",
|
|
545
|
+
},
|
|
546
|
+
],
|
|
547
|
+
},
|
|
548
|
+
],
|
|
549
|
+
},
|
|
550
|
+
],
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
type: "object",
|
|
554
|
+
key: "sub_item",
|
|
555
|
+
displayer: "Sub Item",
|
|
556
|
+
value: [
|
|
557
|
+
{
|
|
558
|
+
type: "string",
|
|
559
|
+
key: "title",
|
|
560
|
+
displayer: "Title",
|
|
561
|
+
value: "LOOKBOOK",
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
type: "page",
|
|
565
|
+
key: "navigate_to",
|
|
566
|
+
displayer: "Navigate To",
|
|
567
|
+
value: "",
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
type: "array",
|
|
571
|
+
key: "sub_items",
|
|
572
|
+
displayer: "Sub Items",
|
|
573
|
+
value: [
|
|
574
|
+
{
|
|
575
|
+
type: "object",
|
|
576
|
+
key: "sub_item",
|
|
577
|
+
displayer: "Sub Item",
|
|
578
|
+
value: [
|
|
579
|
+
{
|
|
580
|
+
type: "string",
|
|
581
|
+
key: "title",
|
|
582
|
+
displayer: "Title",
|
|
583
|
+
value: "",
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
type: "page",
|
|
587
|
+
key: "navigate_to",
|
|
588
|
+
displayer: "Navigate To",
|
|
589
|
+
value: "",
|
|
590
|
+
},
|
|
591
|
+
],
|
|
592
|
+
},
|
|
593
|
+
],
|
|
594
|
+
},
|
|
595
|
+
],
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
type: "object",
|
|
599
|
+
key: "sub_item",
|
|
600
|
+
displayer: "Sub Item",
|
|
601
|
+
value: [
|
|
602
|
+
{
|
|
603
|
+
type: "string",
|
|
604
|
+
key: "title",
|
|
605
|
+
displayer: "Title",
|
|
606
|
+
value: "TYPOGRAPHY",
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
type: "page",
|
|
610
|
+
key: "navigate_to",
|
|
611
|
+
displayer: "Navigate To",
|
|
612
|
+
value: "",
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
type: "array",
|
|
616
|
+
key: "sub_items",
|
|
617
|
+
displayer: "Sub Items",
|
|
618
|
+
value: [
|
|
619
|
+
{
|
|
620
|
+
type: "object",
|
|
621
|
+
key: "sub_item",
|
|
622
|
+
displayer: "Sub Item",
|
|
623
|
+
value: [
|
|
624
|
+
{
|
|
625
|
+
type: "string",
|
|
626
|
+
key: "title",
|
|
627
|
+
displayer: "Title",
|
|
628
|
+
value: "",
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
type: "page",
|
|
632
|
+
key: "navigate_to",
|
|
633
|
+
displayer: "Navigate To",
|
|
634
|
+
value: "",
|
|
635
|
+
},
|
|
636
|
+
],
|
|
637
|
+
},
|
|
638
|
+
],
|
|
639
|
+
},
|
|
640
|
+
],
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
type: "object",
|
|
644
|
+
key: "sub_item",
|
|
645
|
+
displayer: "Sub Item",
|
|
646
|
+
value: [
|
|
647
|
+
{
|
|
648
|
+
type: "string",
|
|
649
|
+
key: "title",
|
|
650
|
+
displayer: "Title",
|
|
651
|
+
value: "SHORTCODES",
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
type: "page",
|
|
655
|
+
key: "navigate_to",
|
|
656
|
+
displayer: "Navigate To",
|
|
657
|
+
value: "",
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
type: "array",
|
|
661
|
+
key: "sub_items",
|
|
662
|
+
displayer: "Sub Items",
|
|
663
|
+
value: [
|
|
664
|
+
{
|
|
665
|
+
type: "object",
|
|
666
|
+
key: "sub_item",
|
|
667
|
+
displayer: "Sub Item",
|
|
668
|
+
value: [
|
|
669
|
+
{
|
|
670
|
+
type: "string",
|
|
671
|
+
key: "title",
|
|
672
|
+
displayer: "Title",
|
|
673
|
+
value: "",
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
type: "page",
|
|
677
|
+
key: "navigate_to",
|
|
678
|
+
displayer: "Navigate To",
|
|
679
|
+
value: "",
|
|
680
|
+
},
|
|
681
|
+
],
|
|
682
|
+
},
|
|
683
|
+
],
|
|
684
|
+
},
|
|
685
|
+
],
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
type: "object",
|
|
689
|
+
key: "sub_item",
|
|
690
|
+
displayer: "Sub Item",
|
|
691
|
+
value: [
|
|
692
|
+
{
|
|
693
|
+
type: "string",
|
|
694
|
+
key: "title",
|
|
695
|
+
displayer: "Title",
|
|
696
|
+
value: "COMING SOON",
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
type: "page",
|
|
700
|
+
key: "navigate_to",
|
|
701
|
+
displayer: "Navigate To",
|
|
702
|
+
value: "",
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
type: "array",
|
|
706
|
+
key: "sub_items",
|
|
707
|
+
displayer: "Sub Items",
|
|
708
|
+
value: [
|
|
709
|
+
{
|
|
710
|
+
type: "object",
|
|
711
|
+
key: "sub_item",
|
|
712
|
+
displayer: "Sub Item",
|
|
713
|
+
value: [
|
|
714
|
+
{
|
|
715
|
+
type: "string",
|
|
716
|
+
key: "title",
|
|
717
|
+
displayer: "Title",
|
|
718
|
+
value: "",
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
type: "page",
|
|
722
|
+
key: "navigate_to",
|
|
723
|
+
displayer: "Navigate To",
|
|
724
|
+
value: "",
|
|
725
|
+
},
|
|
726
|
+
],
|
|
727
|
+
},
|
|
728
|
+
],
|
|
729
|
+
},
|
|
730
|
+
],
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
type: "object",
|
|
734
|
+
key: "sub_item",
|
|
735
|
+
displayer: "Sub Item",
|
|
736
|
+
value: [
|
|
737
|
+
{
|
|
738
|
+
type: "string",
|
|
739
|
+
key: "title",
|
|
740
|
+
displayer: "Title",
|
|
741
|
+
value: "PAGE 404",
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
type: "page",
|
|
745
|
+
key: "navigate_to",
|
|
746
|
+
displayer: "Navigate To",
|
|
747
|
+
value: "",
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
type: "array",
|
|
751
|
+
key: "sub_items",
|
|
752
|
+
displayer: "Sub Items",
|
|
753
|
+
value: [
|
|
754
|
+
{
|
|
755
|
+
type: "object",
|
|
756
|
+
key: "sub_item",
|
|
757
|
+
displayer: "Sub Item",
|
|
758
|
+
value: [
|
|
759
|
+
{
|
|
760
|
+
type: "string",
|
|
761
|
+
key: "title",
|
|
762
|
+
displayer: "Title",
|
|
763
|
+
value: "",
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
type: "page",
|
|
767
|
+
key: "navigate_to",
|
|
768
|
+
displayer: "Navigate To",
|
|
769
|
+
value: "",
|
|
770
|
+
},
|
|
771
|
+
],
|
|
772
|
+
},
|
|
773
|
+
],
|
|
774
|
+
},
|
|
775
|
+
],
|
|
776
|
+
},
|
|
777
|
+
],
|
|
778
|
+
},
|
|
779
|
+
],
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
type: "object",
|
|
783
|
+
key: "item",
|
|
784
|
+
displayer: "Item",
|
|
785
|
+
value: [
|
|
786
|
+
{
|
|
787
|
+
type: "string",
|
|
788
|
+
key: "title",
|
|
789
|
+
displayer: "Title",
|
|
790
|
+
value: "Contacts",
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
type: "page",
|
|
794
|
+
key: "navigate_to",
|
|
795
|
+
displayer: "Navigate To",
|
|
796
|
+
value: "",
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
type: "select",
|
|
800
|
+
key: "menuType",
|
|
801
|
+
displayer: "Type",
|
|
802
|
+
value: "Mormal",
|
|
803
|
+
additionalParams: { selectItems: ["Dropdown", "Normal"] },
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
type: "array",
|
|
807
|
+
key: "sub_items",
|
|
808
|
+
displayer: "Sub Items",
|
|
809
|
+
value: [
|
|
810
|
+
{
|
|
811
|
+
type: "object",
|
|
812
|
+
key: "sub_item",
|
|
813
|
+
displayer: "Sub Item",
|
|
814
|
+
value: [
|
|
815
|
+
{
|
|
816
|
+
type: "string",
|
|
817
|
+
key: "title",
|
|
818
|
+
displayer: "Title",
|
|
819
|
+
value: "BLOG POSTS",
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
type: "page",
|
|
823
|
+
key: "navigate_to",
|
|
824
|
+
displayer: "Navigate To",
|
|
825
|
+
value: "",
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
type: "array",
|
|
829
|
+
key: "sub_items",
|
|
830
|
+
displayer: "Sub Items",
|
|
831
|
+
value: [
|
|
832
|
+
{
|
|
833
|
+
type: "object",
|
|
834
|
+
key: "sub_item",
|
|
835
|
+
displayer: "Sub Item",
|
|
836
|
+
value: [
|
|
837
|
+
{
|
|
838
|
+
type: "string",
|
|
839
|
+
key: "title",
|
|
840
|
+
displayer: "Title",
|
|
841
|
+
value: "",
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
type: "page",
|
|
845
|
+
key: "navigate_to",
|
|
846
|
+
displayer: "Navigate To",
|
|
847
|
+
value: "",
|
|
848
|
+
},
|
|
849
|
+
],
|
|
850
|
+
},
|
|
851
|
+
],
|
|
852
|
+
},
|
|
853
|
+
],
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
type: "object",
|
|
857
|
+
key: "sub_item",
|
|
858
|
+
displayer: "Sub Item",
|
|
859
|
+
value: [
|
|
860
|
+
{
|
|
861
|
+
type: "string",
|
|
862
|
+
key: "title",
|
|
863
|
+
displayer: "Title",
|
|
864
|
+
value: "MASONARY",
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
type: "page",
|
|
868
|
+
key: "navigate_to",
|
|
869
|
+
displayer: "Navigate To",
|
|
870
|
+
value: "",
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
type: "select",
|
|
874
|
+
key: "menuType",
|
|
875
|
+
displayer: "Type",
|
|
876
|
+
value: "Normal",
|
|
877
|
+
additionalParams: { selectItems: ["Dropdown", "Normal"] },
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
type: "array",
|
|
881
|
+
key: "sub_items",
|
|
882
|
+
displayer: "Sub Items",
|
|
883
|
+
value: [
|
|
884
|
+
{
|
|
885
|
+
type: "object",
|
|
886
|
+
key: "sub_item",
|
|
887
|
+
displayer: "Sub Item",
|
|
888
|
+
value: [
|
|
889
|
+
{
|
|
890
|
+
type: "string",
|
|
891
|
+
key: "title",
|
|
892
|
+
displayer: "Title",
|
|
893
|
+
value: "",
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
type: "page",
|
|
897
|
+
key: "navigate_to",
|
|
898
|
+
displayer: "Navigate To",
|
|
899
|
+
value: "",
|
|
900
|
+
},
|
|
901
|
+
],
|
|
902
|
+
},
|
|
903
|
+
],
|
|
904
|
+
},
|
|
905
|
+
],
|
|
906
|
+
},
|
|
907
|
+
],
|
|
908
|
+
},
|
|
909
|
+
],
|
|
910
|
+
},
|
|
911
|
+
],
|
|
912
|
+
});
|
|
913
|
+
|
|
914
|
+
this.addProp({
|
|
915
|
+
type: "array",
|
|
916
|
+
key: "icons",
|
|
917
|
+
displayer: "Icons",
|
|
918
|
+
value: [
|
|
919
|
+
{
|
|
920
|
+
type: "object",
|
|
921
|
+
key: "item",
|
|
922
|
+
displayer: "Item",
|
|
923
|
+
value: [
|
|
924
|
+
{
|
|
925
|
+
type: "media",
|
|
926
|
+
key: "icon",
|
|
927
|
+
displayer: "Icon",
|
|
928
|
+
additionalParams: {
|
|
929
|
+
availableTypes: ["icon"],
|
|
930
|
+
},
|
|
931
|
+
value: {
|
|
932
|
+
type: "icon",
|
|
933
|
+
name: "BiLogoFacebookCircle",
|
|
934
|
+
},
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
type: "page",
|
|
938
|
+
key: "page",
|
|
939
|
+
displayer: "Navigate To",
|
|
940
|
+
value: "",
|
|
941
|
+
},
|
|
942
|
+
],
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
type: "object",
|
|
946
|
+
key: "item",
|
|
947
|
+
displayer: "Item",
|
|
948
|
+
value: [
|
|
949
|
+
{
|
|
950
|
+
type: "media",
|
|
951
|
+
key: "icon",
|
|
952
|
+
displayer: "Icon",
|
|
953
|
+
additionalParams: {
|
|
954
|
+
availableTypes: ["icon"],
|
|
955
|
+
},
|
|
956
|
+
value: {
|
|
957
|
+
type: "icon",
|
|
958
|
+
name: "FaTwitter",
|
|
959
|
+
},
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
type: "page",
|
|
963
|
+
key: "page",
|
|
964
|
+
displayer: "Navigate To",
|
|
965
|
+
value: "",
|
|
966
|
+
},
|
|
967
|
+
],
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
type: "object",
|
|
971
|
+
key: "item",
|
|
972
|
+
displayer: "Item",
|
|
973
|
+
value: [
|
|
974
|
+
{
|
|
975
|
+
type: "media",
|
|
976
|
+
key: "icon",
|
|
977
|
+
displayer: "Icon",
|
|
978
|
+
additionalParams: {
|
|
979
|
+
availableTypes: ["icon"],
|
|
980
|
+
},
|
|
981
|
+
value: {
|
|
982
|
+
type: "icon",
|
|
983
|
+
name: "FaInstagram",
|
|
984
|
+
},
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
type: "page",
|
|
988
|
+
key: "page",
|
|
989
|
+
displayer: "Navigate To",
|
|
990
|
+
value: "",
|
|
991
|
+
},
|
|
992
|
+
],
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
type: "object",
|
|
996
|
+
key: "item",
|
|
997
|
+
displayer: "Item",
|
|
998
|
+
value: [
|
|
999
|
+
{
|
|
1000
|
+
type: "media",
|
|
1001
|
+
key: "icon",
|
|
1002
|
+
displayer: "Icon",
|
|
1003
|
+
additionalParams: {
|
|
1004
|
+
availableTypes: ["icon"],
|
|
1005
|
+
},
|
|
1006
|
+
value: {
|
|
1007
|
+
type: "icon",
|
|
1008
|
+
name: "FaLinkedin",
|
|
1009
|
+
},
|
|
1010
|
+
},
|
|
1011
|
+
{
|
|
1012
|
+
type: "page",
|
|
1013
|
+
key: "page",
|
|
1014
|
+
displayer: "Navigate To",
|
|
1015
|
+
value: "",
|
|
1016
|
+
},
|
|
1017
|
+
],
|
|
1018
|
+
},
|
|
1019
|
+
],
|
|
1020
|
+
});
|
|
1021
|
+
|
|
1022
|
+
this.addProp({
|
|
1023
|
+
type: "object",
|
|
1024
|
+
key: "language",
|
|
1025
|
+
displayer: "Language Settings",
|
|
1026
|
+
value: [
|
|
1027
|
+
{
|
|
1028
|
+
type: "select",
|
|
1029
|
+
key: "label",
|
|
1030
|
+
displayer: "Label",
|
|
1031
|
+
value: "code",
|
|
1032
|
+
additionalParams: {
|
|
1033
|
+
selectItems: ["code", "name"],
|
|
1034
|
+
},
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
type: "media",
|
|
1038
|
+
key: "icon",
|
|
1039
|
+
displayer: "Icon",
|
|
1040
|
+
additionalParams: {
|
|
1041
|
+
availableTypes: ["icon"],
|
|
1042
|
+
},
|
|
1043
|
+
value: {
|
|
1044
|
+
type: "icon",
|
|
1045
|
+
name: "GrLanguage",
|
|
1046
|
+
},
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
type: "boolean",
|
|
1050
|
+
key: "showLocalizationAlways",
|
|
1051
|
+
displayer: "Pin to Navbar",
|
|
1052
|
+
value: true,
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
type: "boolean",
|
|
1056
|
+
key: "showLanguage",
|
|
1057
|
+
displayer: "Show Language",
|
|
1058
|
+
value: true,
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
type: "boolean",
|
|
1062
|
+
key: "showDivider",
|
|
1063
|
+
displayer: "Divider",
|
|
1064
|
+
value: false,
|
|
1065
|
+
},
|
|
1066
|
+
],
|
|
1067
|
+
});
|
|
1068
|
+
|
|
1069
|
+
this.addProp({
|
|
1070
|
+
type: "object",
|
|
1071
|
+
key: "navigationIcons",
|
|
1072
|
+
displayer: "Navigation Icons",
|
|
1073
|
+
value: [
|
|
1074
|
+
{
|
|
1075
|
+
type: "media",
|
|
1076
|
+
key: "dropdownIcon",
|
|
1077
|
+
displayer: "Dropdown Icon",
|
|
1078
|
+
additionalParams: {
|
|
1079
|
+
availableTypes: ["icon", "image"],
|
|
1080
|
+
},
|
|
1081
|
+
value: {
|
|
1082
|
+
type: "icon",
|
|
1083
|
+
name: "MdArrowDropDown",
|
|
1084
|
+
},
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
type: "media",
|
|
1088
|
+
key: "rightIcon",
|
|
1089
|
+
displayer: "Right Arrow Icon",
|
|
1090
|
+
additionalParams: {
|
|
1091
|
+
availableTypes: ["icon", "image"],
|
|
1092
|
+
},
|
|
1093
|
+
value: {
|
|
1094
|
+
type: "icon",
|
|
1095
|
+
name: "MdKeyboardArrowRight",
|
|
1096
|
+
},
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
type: "media",
|
|
1100
|
+
key: "hamburgerIcon",
|
|
1101
|
+
displayer: "Hamburger Icon",
|
|
1102
|
+
additionalParams: {
|
|
1103
|
+
availableTypes: ["icon", "image"],
|
|
1104
|
+
},
|
|
1105
|
+
value: {
|
|
1106
|
+
type: "icon",
|
|
1107
|
+
name: "FaBars",
|
|
1108
|
+
},
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
type: "media",
|
|
1112
|
+
key: "closeIcon",
|
|
1113
|
+
displayer: "Close Icon",
|
|
1114
|
+
additionalParams: {
|
|
1115
|
+
availableTypes: ["icon", "image"],
|
|
1116
|
+
},
|
|
1117
|
+
value: {
|
|
1118
|
+
type: "icon",
|
|
1119
|
+
name: "IoMdClose",
|
|
1120
|
+
},
|
|
1121
|
+
},
|
|
1122
|
+
],
|
|
1123
|
+
});
|
|
1124
|
+
|
|
1125
|
+
this.addProp({
|
|
1126
|
+
type: "boolean",
|
|
1127
|
+
key: "divider",
|
|
1128
|
+
displayer: "Divider",
|
|
1129
|
+
value: true,
|
|
1130
|
+
});
|
|
1131
|
+
this.addProp({
|
|
1132
|
+
type:"multiSelect",
|
|
1133
|
+
key: "animations",
|
|
1134
|
+
displayer: "Animations",
|
|
1135
|
+
value: ["animation1","animation2"],
|
|
1136
|
+
additionalParams:{
|
|
1137
|
+
selectItems:["animation1", "animation2"]
|
|
1138
|
+
}
|
|
1139
|
+
})
|
|
1140
|
+
|
|
1141
|
+
this.setComponentState("isScrolled", false);
|
|
1142
|
+
this.setComponentState("hamburgerNavActive", false);
|
|
1143
|
+
this.setComponentState("navActive", false);
|
|
1144
|
+
this.setComponentState("subNavActiveIndex", null);
|
|
1145
|
+
this.setComponentState("subNavActive", null);
|
|
1146
|
+
this.setComponentState("changeBackground", false);
|
|
1147
|
+
this.setComponentState("navbarOverflowShow", false);
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
static getName(): string {
|
|
1151
|
+
return "Navbar 6";
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
|
|
1155
|
+
handleOpenMenu = () => {
|
|
1156
|
+
Base.Navigator.changeScrollBehaviour("hidden");
|
|
1157
|
+
const wrapperContainer = Base.Navigator.getWrapperContainer();
|
|
1158
|
+
this.setComponentState("changeBackground", wrapperContainer?.scrollY === 0);
|
|
1159
|
+
setTimeout(() => {
|
|
1160
|
+
this.setComponentState("hamburgerNavActive", true);
|
|
1161
|
+
setTimeout(() => {
|
|
1162
|
+
this.setComponentState("navbarOverflowShow", true);
|
|
1163
|
+
}, 300)
|
|
1164
|
+
}, 100);
|
|
1165
|
+
};
|
|
1166
|
+
|
|
1167
|
+
handleCloseMenu = () => {
|
|
1168
|
+
Base.Navigator.changeScrollBehaviour("auto");
|
|
1169
|
+
this.setComponentState("hamburgerNavActive", false);
|
|
1170
|
+
this.setComponentState("navbarOverflowShow", false);
|
|
1171
|
+
setTimeout(() => {
|
|
1172
|
+
this.setComponentState("changeBackground", false);
|
|
1173
|
+
}, 200);
|
|
1174
|
+
};
|
|
1175
|
+
|
|
1176
|
+
navClick(index: number) {
|
|
1177
|
+
const isActive = this.getComponentState("subNavActiveIndex") === index;
|
|
1178
|
+
this.setComponentState("navActive", !isActive);
|
|
1179
|
+
this.setComponentState("subNavActiveIndex", isActive ? null : index);
|
|
1180
|
+
this.setComponentState("subNavActive", null);
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
subNavClick(index: any) {
|
|
1184
|
+
const currentValue = this.getComponentState("subNavActive");
|
|
1185
|
+
if (currentValue === index) {
|
|
1186
|
+
this.setComponentState("subNavActive", null);
|
|
1187
|
+
} else {
|
|
1188
|
+
this.setComponentState("subNavActive", index);
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
render() {
|
|
1193
|
+
const defaultLogo = this.castToObject<Logo>("defaultLogo");
|
|
1194
|
+
const absoluteLogo = this.castToObject<Logo>("absoluteLogo");
|
|
1195
|
+
const position = this.getPropValue("position");
|
|
1196
|
+
const isScrolled = this.getComponentState("isScrolled");
|
|
1197
|
+
const isStickyTransparent = position === "Sticky Transparent";
|
|
1198
|
+
const isAbsolute = position === "Absolute";
|
|
1199
|
+
const transparentBackground =
|
|
1200
|
+
(isStickyTransparent && !isScrolled) || isAbsolute;
|
|
1201
|
+
const hamburgerNavActive = this.getComponentState("hamburgerNavActive");
|
|
1202
|
+
const changeBackground = this.getComponentState("changeBackground");
|
|
1203
|
+
const currentLogo =
|
|
1204
|
+
transparentBackground && !changeBackground ? absoluteLogo : defaultLogo;
|
|
1205
|
+
const icons = this.castToObject<Icon[]>("icons");
|
|
1206
|
+
const menuItems = this.castToObject<MenuItem[]>("menuItems");
|
|
1207
|
+
const divider = this.getPropValue("divider");
|
|
1208
|
+
const language = this.castToObject<Language>("language");
|
|
1209
|
+
const isBigScreen = this.getComponentState("isBigScreen");
|
|
1210
|
+
const isVisible = hamburgerNavActive && !isBigScreen;
|
|
1211
|
+
const animations = this.getPropValue("animations") && this.getPropValue("animations").map((animation:string) => this.decorateCSS(animation)).join(" ")
|
|
1212
|
+
const navigationIcons = this.castToObject<{
|
|
1213
|
+
dropdownIcon?: TypeMediaInputValue;
|
|
1214
|
+
rightIcon?: TypeMediaInputValue;
|
|
1215
|
+
hamburgerIcon?: TypeMediaInputValue;
|
|
1216
|
+
closeIcon?: TypeMediaInputValue;
|
|
1217
|
+
}>("navigationIcons");
|
|
1218
|
+
return (
|
|
1219
|
+
<>
|
|
1220
|
+
<Base.Navigator.Container
|
|
1221
|
+
position={position}
|
|
1222
|
+
positionContainer={`${this.decorateCSS("navbarContainer")} ${
|
|
1223
|
+
changeBackground ? this.decorateCSS("filledBackground") : ""
|
|
1224
|
+
} ${hamburgerNavActive ? this.decorateCSS("hamburgerActive") : ""}`}
|
|
1225
|
+
hamburgerNavActive={hamburgerNavActive}
|
|
1226
|
+
setIsScrolled={(value: boolean)=>{
|
|
1227
|
+
this.setComponentState("isScrolled", value);
|
|
1228
|
+
}}
|
|
1229
|
+
setIsBigScreen={(value: boolean)=>{
|
|
1230
|
+
this.setComponentState("isBigScreen", value);
|
|
1231
|
+
}}
|
|
1232
|
+
className={this.decorateCSS("container")}
|
|
1233
|
+
>
|
|
1234
|
+
<Base.MaxContent
|
|
1235
|
+
className={`${this.decorateCSS("maxContent")} ${
|
|
1236
|
+
transparentBackground
|
|
1237
|
+
? this.decorateCSS("transparentBackground")
|
|
1238
|
+
: ""
|
|
1239
|
+
}`}
|
|
1240
|
+
>
|
|
1241
|
+
<div className={this.decorateCSS("pcNavbarContainer")}>
|
|
1242
|
+
{menuItems.length > 0 && (
|
|
1243
|
+
<nav className={this.decorateCSS("pcNavbar")}>
|
|
1244
|
+
{menuItems.map(
|
|
1245
|
+
(item: any, index: any) =>
|
|
1246
|
+
this.castToString(item.title) && (
|
|
1247
|
+
<div
|
|
1248
|
+
key={index}
|
|
1249
|
+
className={this.decorateCSS("menuItemContainer")}
|
|
1250
|
+
>
|
|
1251
|
+
<ComposerLink path={item.navigate_to}>
|
|
1252
|
+
<div className={this.decorateCSS("menuItem")}>
|
|
1253
|
+
<Base.P className={`${this.decorateCSS("menuItemTitle")} ${transparentBackground? this.decorateCSS("whiteColor"): ""} ${animations}`}>
|
|
1254
|
+
{item.title}
|
|
1255
|
+
</Base.P>
|
|
1256
|
+
{item.menuType === "Dropdown" && (
|
|
1257
|
+
<Base.Media
|
|
1258
|
+
value={navigationIcons?.dropdownIcon}
|
|
1259
|
+
className={`${this.decorateCSS(
|
|
1260
|
+
"dropdownIcon"
|
|
1261
|
+
)} ${
|
|
1262
|
+
transparentBackground
|
|
1263
|
+
? this.decorateCSS("whiteColor")
|
|
1264
|
+
: ""
|
|
1265
|
+
}`}
|
|
1266
|
+
/>
|
|
1267
|
+
)}
|
|
1268
|
+
</div>
|
|
1269
|
+
</ComposerLink>
|
|
1270
|
+
{item.menuType === "Dropdown" && (
|
|
1271
|
+
<div className={this.decorateCSS("dropdown")}>
|
|
1272
|
+
{item.sub_items?.map(
|
|
1273
|
+
(subItem: any, subIndex: number) => (
|
|
1274
|
+
<div
|
|
1275
|
+
key={subIndex}
|
|
1276
|
+
className={`${this.decorateCSS("dropdownItemContainer")} ${animations}`}
|
|
1277
|
+
>
|
|
1278
|
+
<div
|
|
1279
|
+
className={this.decorateCSS(
|
|
1280
|
+
"dropdownItem"
|
|
1281
|
+
)}
|
|
1282
|
+
>
|
|
1283
|
+
<ComposerLink path={subItem.navigate_to}>
|
|
1284
|
+
<div
|
|
1285
|
+
className={this.decorateCSS(
|
|
1286
|
+
"dropdownItemContent"
|
|
1287
|
+
)}
|
|
1288
|
+
>
|
|
1289
|
+
<Base.P className={`${this.decorateCSS("dropdownItemTitle")} ${animations}`}>
|
|
1290
|
+
{subItem.title}
|
|
1291
|
+
</Base.P>
|
|
1292
|
+
</div>
|
|
1293
|
+
</ComposerLink>
|
|
1294
|
+
{subItem.sub_items.length > 0 &&
|
|
1295
|
+
subItem.sub_items.some((item: any) =>
|
|
1296
|
+
this.castToString(item.title)
|
|
1297
|
+
) && (
|
|
1298
|
+
<Base.Media
|
|
1299
|
+
value={navigationIcons?.rightIcon}
|
|
1300
|
+
className={this.decorateCSS("rightIcon")}
|
|
1301
|
+
/>
|
|
1302
|
+
)}
|
|
1303
|
+
</div>
|
|
1304
|
+
{subItem.sub_items.length > 0 &&
|
|
1305
|
+
subItem.sub_items.some((item: any) =>
|
|
1306
|
+
this.castToString(item.title)
|
|
1307
|
+
) && (
|
|
1308
|
+
<div
|
|
1309
|
+
className={this.decorateCSS(
|
|
1310
|
+
"subdropdown"
|
|
1311
|
+
)}
|
|
1312
|
+
>
|
|
1313
|
+
{subItem.sub_items.map(
|
|
1314
|
+
(
|
|
1315
|
+
subSubItem: MenuItem,
|
|
1316
|
+
subSubIndex: number
|
|
1317
|
+
) => (
|
|
1318
|
+
<div
|
|
1319
|
+
key={subSubIndex}
|
|
1320
|
+
className={`${this.decorateCSS("subdropdownItem")} ${animations}`}
|
|
1321
|
+
>
|
|
1322
|
+
<ComposerLink
|
|
1323
|
+
path={subSubItem.navigate_to}
|
|
1324
|
+
>
|
|
1325
|
+
<Base.P
|
|
1326
|
+
className={this.decorateCSS(
|
|
1327
|
+
"dropdownItemTitle"
|
|
1328
|
+
)}
|
|
1329
|
+
>
|
|
1330
|
+
{subSubItem.title}
|
|
1331
|
+
</Base.P>
|
|
1332
|
+
</ComposerLink>
|
|
1333
|
+
</div>
|
|
1334
|
+
)
|
|
1335
|
+
)}
|
|
1336
|
+
</div>
|
|
1337
|
+
)}
|
|
1338
|
+
</div>
|
|
1339
|
+
)
|
|
1340
|
+
)}
|
|
1341
|
+
</div>
|
|
1342
|
+
)}
|
|
1343
|
+
</div>
|
|
1344
|
+
)
|
|
1345
|
+
)}
|
|
1346
|
+
</nav>
|
|
1347
|
+
)}
|
|
1348
|
+
|
|
1349
|
+
{currentLogo.image && (
|
|
1350
|
+
<div className={this.decorateCSS("logo")}>
|
|
1351
|
+
<ComposerLink path={currentLogo.navigateTo}>
|
|
1352
|
+
<div onClick={()=> this.handleCloseMenu()}>
|
|
1353
|
+
<Base.Media
|
|
1354
|
+
value={currentLogo.image}
|
|
1355
|
+
className={this.decorateCSS("logoImage")}
|
|
1356
|
+
/>
|
|
1357
|
+
</div>
|
|
1358
|
+
</ComposerLink>
|
|
1359
|
+
</div>
|
|
1360
|
+
)}
|
|
1361
|
+
|
|
1362
|
+
{menuItems.length > 0 && language.showLanguage && (
|
|
1363
|
+
<div className={this.decorateCSS("iconsContainer")}>
|
|
1364
|
+
{icons?.length > 0 && (
|
|
1365
|
+
<div className={this.decorateCSS("icons")}>
|
|
1366
|
+
{icons.map((icon: Icon, index: number) => (
|
|
1367
|
+
<ComposerLink path={icon.page}>
|
|
1368
|
+
<Base.Media
|
|
1369
|
+
value={icon.icon}
|
|
1370
|
+
className={this.decorateCSS("icon")}
|
|
1371
|
+
/>
|
|
1372
|
+
</ComposerLink>
|
|
1373
|
+
))}
|
|
1374
|
+
</div>
|
|
1375
|
+
)}
|
|
1376
|
+
{divider && icons.length > 0 && (
|
|
1377
|
+
<div className={this.decorateCSS("divider")}></div>
|
|
1378
|
+
)}
|
|
1379
|
+
{language.showLanguage && (
|
|
1380
|
+
<Base.Language
|
|
1381
|
+
type="dropdown"
|
|
1382
|
+
title={language.label}
|
|
1383
|
+
icon={language.icon}
|
|
1384
|
+
dropdownButtonClassName={`${this.decorateCSS("localization")}`}
|
|
1385
|
+
dropdownLabelClassName={`${this.decorateCSS("localizationLabel")} ${animations}`}
|
|
1386
|
+
iconClassName={this.decorateCSS("languageIcon")}
|
|
1387
|
+
dropdownItemClassName={this.decorateCSS("localizationItem")}
|
|
1388
|
+
dropdownContentClassName={`${this.decorateCSS("localizationContent")} ${animations}`}
|
|
1389
|
+
divider={language.showDivider}
|
|
1390
|
+
/>
|
|
1391
|
+
)}
|
|
1392
|
+
</div>
|
|
1393
|
+
)}
|
|
1394
|
+
</div>
|
|
1395
|
+
<div className={this.decorateCSS("mobileRight")}>
|
|
1396
|
+
{(language.showLanguage &&language.showLocalizationAlways) && (
|
|
1397
|
+
<Base.Language
|
|
1398
|
+
type="dropdown"
|
|
1399
|
+
title={language.label}
|
|
1400
|
+
icon={(language.icon?.type === "icon" ? language.icon.name : "GrLanguage") || "GrLanguage"}
|
|
1401
|
+
dropdownButtonClassName={`${this.decorateCSS(
|
|
1402
|
+
"localization"
|
|
1403
|
+
)}`}
|
|
1404
|
+
dropdownLabelClassName={`${this.decorateCSS(
|
|
1405
|
+
"localizationLabel"
|
|
1406
|
+
)}`}
|
|
1407
|
+
iconClassName={this.decorateCSS("languageIcon")}
|
|
1408
|
+
dropdownItemClassName={this.decorateCSS(
|
|
1409
|
+
"localizationItem"
|
|
1410
|
+
)}
|
|
1411
|
+
dropdownContentClassName={this.decorateCSS(
|
|
1412
|
+
"localizationContent"
|
|
1413
|
+
)}
|
|
1414
|
+
divider={language.showDivider}
|
|
1415
|
+
/>
|
|
1416
|
+
)}
|
|
1417
|
+
{hamburgerNavActive ? (
|
|
1418
|
+
<div onClick={() => this.handleCloseMenu()}>
|
|
1419
|
+
<Base.Media
|
|
1420
|
+
value={navigationIcons?.closeIcon}
|
|
1421
|
+
className={this.decorateCSS("closeIcon")}
|
|
1422
|
+
/>
|
|
1423
|
+
</div>
|
|
1424
|
+
) : (
|
|
1425
|
+
<div onClick={() => this.handleOpenMenu()}>
|
|
1426
|
+
<Base.Media
|
|
1427
|
+
value={navigationIcons?.hamburgerIcon}
|
|
1428
|
+
className={this.decorateCSS("hamburgerIcon")}
|
|
1429
|
+
/>
|
|
1430
|
+
</div>
|
|
1431
|
+
)}
|
|
1432
|
+
</div>
|
|
1433
|
+
<div
|
|
1434
|
+
className={`${this.decorateCSS("mobileMenu")} ${
|
|
1435
|
+
hamburgerNavActive ? this.decorateCSS("open") : ""
|
|
1436
|
+
} ${this.getComponentState("navbarOverflowShow") ? this.decorateCSS("overflowShow") : ""}`}
|
|
1437
|
+
onClick={(e) => e.stopPropagation()}
|
|
1438
|
+
>
|
|
1439
|
+
<nav className={this.decorateCSS("hamburgerMenu")}>
|
|
1440
|
+
{menuItems.map((item: any, index: number) => (
|
|
1441
|
+
<div
|
|
1442
|
+
key={index}
|
|
1443
|
+
className={this.decorateCSS("hamburgerMenuItem")}
|
|
1444
|
+
>
|
|
1445
|
+
<div
|
|
1446
|
+
className={this.decorateCSS("hamburgerMenuItemHeader")}
|
|
1447
|
+
onClick={() => this.navClick(index)}
|
|
1448
|
+
>
|
|
1449
|
+
<ComposerLink path={item.navigate_to}>
|
|
1450
|
+
<Base.P
|
|
1451
|
+
className={this.decorateCSS(
|
|
1452
|
+
"hamburgerMenuItemTitle"
|
|
1453
|
+
)}
|
|
1454
|
+
onClick={()=> this.handleCloseMenu()}
|
|
1455
|
+
>
|
|
1456
|
+
{item.title}
|
|
1457
|
+
</Base.P>
|
|
1458
|
+
</ComposerLink>
|
|
1459
|
+
{item.menuType === "Dropdown" && (
|
|
1460
|
+
<Base.Media
|
|
1461
|
+
value={navigationIcons?.rightIcon}
|
|
1462
|
+
className={`${this.decorateCSS("dropdownIcon")} ${
|
|
1463
|
+
this.getComponentState("subNavActiveIndex") ===
|
|
1464
|
+
index
|
|
1465
|
+
? this.decorateCSS("active")
|
|
1466
|
+
: ""
|
|
1467
|
+
}`}
|
|
1468
|
+
/>
|
|
1469
|
+
)}
|
|
1470
|
+
</div>
|
|
1471
|
+
{item.menuType === "Dropdown" && (
|
|
1472
|
+
<div
|
|
1473
|
+
className={`${this.decorateCSS("hamburgerSubmenu")} ${
|
|
1474
|
+
this.getComponentState("subNavActiveIndex") ===
|
|
1475
|
+
index
|
|
1476
|
+
? this.decorateCSS("active")
|
|
1477
|
+
: ""
|
|
1478
|
+
}`}
|
|
1479
|
+
>
|
|
1480
|
+
{item.sub_items?.map(
|
|
1481
|
+
(subItem: any, subIndex: number) => (
|
|
1482
|
+
<div
|
|
1483
|
+
key={subIndex}
|
|
1484
|
+
className={this.decorateCSS(
|
|
1485
|
+
"hamburgerSubmenuItem"
|
|
1486
|
+
)}
|
|
1487
|
+
>
|
|
1488
|
+
<div
|
|
1489
|
+
className={this.decorateCSS(
|
|
1490
|
+
"hamburgerSubmenuItemHeader"
|
|
1491
|
+
)}
|
|
1492
|
+
onClick={() =>
|
|
1493
|
+
this.subNavClick(`${index}-${subIndex}`)
|
|
1494
|
+
}
|
|
1495
|
+
>
|
|
1496
|
+
<ComposerLink path={subItem.navigate_to}>
|
|
1497
|
+
<Base.P
|
|
1498
|
+
className={this.decorateCSS(
|
|
1499
|
+
"hamburgerMenuItemTitle"
|
|
1500
|
+
)}
|
|
1501
|
+
onClick={()=> this.handleCloseMenu()}
|
|
1502
|
+
>
|
|
1503
|
+
{subItem.title}
|
|
1504
|
+
</Base.P>
|
|
1505
|
+
</ComposerLink>
|
|
1506
|
+
{subItem.sub_items.length > 0 &&
|
|
1507
|
+
subItem.sub_items.some((item: any) =>
|
|
1508
|
+
this.castToString(item.title)
|
|
1509
|
+
) && (
|
|
1510
|
+
<Base.Media
|
|
1511
|
+
value={navigationIcons?.rightIcon}
|
|
1512
|
+
className={`${this.decorateCSS(
|
|
1513
|
+
"dropdownIcon"
|
|
1514
|
+
)} ${
|
|
1515
|
+
this.getComponentState(
|
|
1516
|
+
"subNavActive"
|
|
1517
|
+
) === `${index}-${subIndex}`
|
|
1518
|
+
? this.decorateCSS("active")
|
|
1519
|
+
: ""
|
|
1520
|
+
}`}
|
|
1521
|
+
/>
|
|
1522
|
+
)}
|
|
1523
|
+
</div>
|
|
1524
|
+
{subItem.sub_items.length > 0 &&
|
|
1525
|
+
subItem.sub_items.some((item: any) =>
|
|
1526
|
+
this.castToString(item.title)
|
|
1527
|
+
) && (
|
|
1528
|
+
<div
|
|
1529
|
+
className={`${this.decorateCSS(
|
|
1530
|
+
"hamburgerSubSubmenu"
|
|
1531
|
+
)} ${
|
|
1532
|
+
this.getComponentState(
|
|
1533
|
+
"subNavActive"
|
|
1534
|
+
) === `${index}-${subIndex}`
|
|
1535
|
+
? this.decorateCSS("active")
|
|
1536
|
+
: ""
|
|
1537
|
+
}`}
|
|
1538
|
+
>
|
|
1539
|
+
{subItem.sub_items.map(
|
|
1540
|
+
(
|
|
1541
|
+
subSubItem: any,
|
|
1542
|
+
subSubIndex: number
|
|
1543
|
+
) => (
|
|
1544
|
+
<div
|
|
1545
|
+
key={subSubIndex}
|
|
1546
|
+
className={this.decorateCSS(
|
|
1547
|
+
"hamburgerSubSubmenuItem"
|
|
1548
|
+
)}
|
|
1549
|
+
>
|
|
1550
|
+
<ComposerLink
|
|
1551
|
+
path={subSubItem.navigate_to}
|
|
1552
|
+
>
|
|
1553
|
+
<Base.P
|
|
1554
|
+
className={this.decorateCSS(
|
|
1555
|
+
"hamburgerSubSubmenuItemTitle"
|
|
1556
|
+
)}
|
|
1557
|
+
onClick={()=> this.handleCloseMenu()}
|
|
1558
|
+
>
|
|
1559
|
+
{subSubItem.title}
|
|
1560
|
+
</Base.P>
|
|
1561
|
+
</ComposerLink>
|
|
1562
|
+
</div>
|
|
1563
|
+
)
|
|
1564
|
+
)}
|
|
1565
|
+
</div>
|
|
1566
|
+
)}
|
|
1567
|
+
</div>
|
|
1568
|
+
)
|
|
1569
|
+
)}
|
|
1570
|
+
</div>
|
|
1571
|
+
)}
|
|
1572
|
+
</div>
|
|
1573
|
+
))}
|
|
1574
|
+
{(language.showLanguage && !language.showLocalizationAlways) &&
|
|
1575
|
+
<Base.Language
|
|
1576
|
+
type="accordion"
|
|
1577
|
+
title="name"
|
|
1578
|
+
headerClassName={this.decorateCSS("languageAccordion")}
|
|
1579
|
+
itemClassName={this.decorateCSS("languageAccordionItem")}
|
|
1580
|
+
titleClassName={`${this.decorateCSS("languageAccordionTitle")} ${animations}`}
|
|
1581
|
+
/>
|
|
1582
|
+
}
|
|
1583
|
+
</nav>
|
|
1584
|
+
|
|
1585
|
+
{icons.length > 0 && (
|
|
1586
|
+
<div className={this.decorateCSS("iconsContainer")}>
|
|
1587
|
+
{icons.map((icon: Icon, index: number) => (
|
|
1588
|
+
<ComposerLink path={icon.page}>
|
|
1589
|
+
<div className={this.decorateCSS("icons")} onClick={()=> this.handleCloseMenu()}>
|
|
1590
|
+
<Base.Media
|
|
1591
|
+
value={icon.icon}
|
|
1592
|
+
className={this.decorateCSS("icon")}
|
|
1593
|
+
/>
|
|
1594
|
+
</div>
|
|
1595
|
+
</ComposerLink>
|
|
1596
|
+
))}
|
|
1597
|
+
</div>
|
|
1598
|
+
)}
|
|
1599
|
+
</div>
|
|
1600
|
+
|
|
1601
|
+
</Base.MaxContent>
|
|
1602
|
+
</Base.Navigator.Container>
|
|
1603
|
+
<Base.Overlay
|
|
1604
|
+
className={this.decorateCSS("overlay")}
|
|
1605
|
+
onClick={() => this.handleCloseMenu()}
|
|
1606
|
+
isVisible={isVisible}
|
|
1607
|
+
/>
|
|
1608
|
+
</>
|
|
1609
|
+
);
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
export default Navbar6;
|